Wallet
Read balances and submit signed transactions on EVM chains.
v1.4.0finance—by norien · updated 11h ago
$ norien tool install wallet@1.4.0Category
finance
Runtime
—
Permissions
0
Environment
0
declared variables
Details
- Slug
- wallet
- Version
- 1.4.0
- Runtime
- —
- Entrypoint
- —
- Authentication
- custom
- License
- —
- Published
- 11h ago
Requirements
Environment variables
No environment variables
This tool needs no configuration.
Input schema
{
"type": "object",
"required": [
"action",
"chain_id"
],
"properties": {
"action": {
"enum": [
"balance",
"transfer",
"approve"
],
"type": "string"
},
"amount": {
"type": "string",
"description": "Amount in the smallest unit."
},
"address": {
"type": "string"
},
"chain_id": {
"type": "number",
"description": "EVM chain id."
}
}
}Output schema
{
"type": "object",
"properties": {
"balance": {
"type": "string"
},
"tx_hash": {
"type": "string"
},
"confirmed": {
"type": "boolean"
}
}
}