set_current_wallet
Set the active wallet address for executing transactions on the Rootstock blockchain via the MCP server.
Instructions
Set the current active wallet for transactions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Wallet address to set as current |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Wallet address to set as current",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}