swap
Facilitates secure transactions by enabling swaps between owner SCA account and signer addresses on the Alchemy MCP Server. Simplifies asset exchange processes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ownerScaAccountAddress | Yes | The owner SCA account address. | |
signerAddress | Yes | The signer address to send the transaction from. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ownerScaAccountAddress": {
"description": "The owner SCA account address.",
"type": "string"
},
"signerAddress": {
"description": "The signer address to send the transaction from.",
"type": "string"
}
},
"required": [
"ownerScaAccountAddress",
"signerAddress"
],
"type": "object"
}