deriveAddress
Generate a blockchain address for a specific chain using a public key. Ideal for managing multi-chain interactions on the Adamik MCP Server.
Instructions
Derive a blockchain address for a given chain from a public key
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | ||
pubkey | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"type": "string"
},
"pubkey": {
"type": "string"
}
},
"required": [
"chainId",
"pubkey"
],
"type": "object"
}