Extracted admin endpoints from chain_vault.py (2,178 lines) into
wallet_admin.py (768 lines). chain_vault.py is now 1,469 lines.
What moved to wallet_admin.py (29 routes):
- API keys: /api-keys, /api-keys/revoke
- Alerts: /alerts, /alerts/delete
- Webhooks: /webhooks, /webhooks/{id}, /webhooks/{id}/test,
/webhooks/{id}/retry, /webhooks/deliveries
- Audit trail: /audit-trail
- Bulk ops: /bulk/filter, /bulk/delete, /bulk/export, /export
- 2FA: /admin/2fa/{setup,verify-setup,disable,status}
- Config: /config
- Proof of Generation: /proof/{commit,provenance,verify,roots,stats}
What stayed in chain_vault.py (32 routes):
- Chain metadata: /chains, /stats, /healthz, /health-score
- RPC config: /rpc-chains
- Wallet gen: /generate, /generate/batch, /generate/all,
/import, /from-mnemonic, /derive-address, /hd-wallet
- Vault CRUD: /vault, /vault/{id}, /vault/{id}/full, DELETE
- Wallet ops: /tree, /cluster, /rotate, /rotate-sweep, /rotations,
/distribute, /sweep, /escrow, /escrow/release, /paper-wallet, /tx
- Validation: /validate/{chain}/{address}, /validate/all
- Balances: /balances, /balances/snapshot
- PDF: /paper-wallet/{id}/pdf, /wallet/{id}/birth-certificate
Helpers extracted to _persistent_store.py:
- _PersistentStore class (webhooks/alerts/payments SQLite store)
P3-7 fix: removed dead _webhooks global references in test/retry
endpoints — now uses _PersistentStore.all('webhooks')
Added to wallet_admin.py:
- _require_totp() helper (also kept in chain_vault.py for the
/vault/{id}/full endpoint that needs it)
- WebhookCreateRequest, BulkFilterRequest, BulkDeleteRequest models
(these were inlined in original chain_vault.py body — now in
the request schemas section)
P3-10 — WP plugin supported_chains() rewritten
Plugin used to advertise chains the backend doesn't support
('bitcoin' vs backend 'btc', 'ethereum' vs 'eth', etc.). Rewrote
to use correct backend keys + added a 'backend' field for clarity.
Now matches ADDRESS_GENERATION.md truth table.
main.py: updated import + include_router for wallet_admin.router.
Test results: 80 passed, 5 skipped (no regressions).
Refs: AUDIT.md P2-16, P3-7, P3-10, P3-17
131 lines
4 KiB
Python
131 lines
4 KiB
Python
"""WalletPress Plugin SDK — Protocol plugins for the AI Wallet Agent.
|
|
|
|
Extend the agent with any blockchain protocol. Plugins register MCP-style
|
|
tools that the agent can call. Patterns:
|
|
- DEX: swap_tokens, add_liquidity, remove_liquidity
|
|
- Lending: deposit, withdraw, borrow, repay
|
|
- NFT: mint, buy, sell, list
|
|
- Bridge: bridge_tokens, get_bridge_quotes
|
|
- Prediction Markets: bet, resolve, claim
|
|
|
|
Usage:
|
|
from plugins.sdk import WalletPressPlugin, register_plugin
|
|
|
|
class MyPlugin(WalletPressPlugin):
|
|
name = "myplugin"
|
|
description = "My custom protocol"
|
|
|
|
def tools(self) -> list[dict]:
|
|
return [{"name": "my_tool", "description": "...", "parameters": {...}}]
|
|
|
|
async def execute(self, tool: str, params: dict) -> dict:
|
|
return {"result": "ok"}
|
|
|
|
register_plugin(MyPlugin())
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
|
|
logger = logging.getLogger("wp.plugins")
|
|
|
|
|
|
class WalletPressPlugin:
|
|
"""Base class for WalletPress protocol plugins.
|
|
|
|
Each plugin provides MCP-style tools that the agent can call.
|
|
Plugins are auto-discovered and registered at startup.
|
|
"""
|
|
|
|
name: str = ""
|
|
description: str = ""
|
|
version: str = "1.0.0"
|
|
# Chain families this plugin works with
|
|
supported_chains: list[str] = ["evm", "solana"]
|
|
|
|
def tools(self) -> list[dict]:
|
|
"""Return the tools this plugin provides.
|
|
|
|
Each tool is a dict with:
|
|
name: str — tool name (snake_case)
|
|
description: str — what the tool does
|
|
parameters: dict — JSON Schema for parameters
|
|
required: list[str] — required parameter names
|
|
"""
|
|
return []
|
|
|
|
async def execute(self, tool: str, params: dict) -> dict:
|
|
"""Execute a tool with the given parameters.
|
|
|
|
Args:
|
|
tool: Tool name (must match a tool from tools())
|
|
params: Parameters matching the tool's schema
|
|
|
|
Returns:
|
|
dict with results
|
|
"""
|
|
raise NotImplementedError(f"Plugin {self.name} has no execute handler")
|
|
|
|
def on_load(self):
|
|
"""Called when the plugin is loaded. Use for setup."""
|
|
pass
|
|
|
|
def on_unload(self):
|
|
"""Called when the plugin is unloaded. Use for cleanup."""
|
|
pass
|
|
|
|
|
|
# ── Plugin Registry ──────────────────────────────────────────────────────────
|
|
|
|
_plugins: dict[str, WalletPressPlugin] = {}
|
|
|
|
|
|
def register_plugin(plugin: WalletPressPlugin):
|
|
"""Register a plugin with the agent."""
|
|
if not plugin.name:
|
|
raise ValueError("Plugin must have a name")
|
|
_plugins[plugin.name] = plugin
|
|
plugin.on_load()
|
|
logger.info(f"Plugin loaded: {plugin.name} v{plugin.version}")
|
|
|
|
|
|
def get_plugin(name: str) -> WalletPressPlugin | None:
|
|
"""Get a plugin by name."""
|
|
return _plugins.get(name)
|
|
|
|
|
|
def list_plugins() -> list[dict]:
|
|
"""List all registered plugins with their tools."""
|
|
result = []
|
|
for name, plugin in _plugins.items():
|
|
result.append({
|
|
"name": name,
|
|
"description": plugin.description,
|
|
"version": plugin.version,
|
|
"supported_chains": plugin.supported_chains,
|
|
"tools": [t["name"] for t in plugin.tools()],
|
|
})
|
|
return result
|
|
|
|
|
|
def get_all_tools() -> list[dict]:
|
|
"""Get ALL tools from ALL registered plugins."""
|
|
tools = []
|
|
for plugin in _plugins.values():
|
|
tools.extend(plugin.tools())
|
|
return tools
|
|
|
|
|
|
async def execute_plugin_tool(plugin_name: str, tool: str, params: dict) -> dict:
|
|
"""Execute a tool on a specific plugin."""
|
|
plugin = _plugins.get(plugin_name)
|
|
if not plugin:
|
|
return {"error": f"Plugin '{plugin_name}' not found"}
|
|
try:
|
|
return await plugin.execute(tool, params)
|
|
except NotImplementedError:
|
|
return {"error": f"Tool '{tool}' not implemented by plugin '{plugin_name}'"}
|
|
except Exception as e:
|
|
logger.error(f"Plugin {plugin_name} tool {tool} failed: {e}")
|
|
return {"error": f"Plugin error: {e}"}
|