sendTransaction
Sends a blockchain transaction using specified addresses and data. Requires owner SCA account, signer address, and recipient address to execute securely.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
callData | No | The data of the transaction. | |
ownerScaAccountAddress | Yes | The owner SCA account address. | |
signerAddress | Yes | The signer address to send the transaction from. | |
toAddress | Yes | The address to send the transaction to. | |
value | No | The value of the transaction in ETH. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"callData": {
"description": "The data of the transaction.",
"type": "string"
},
"ownerScaAccountAddress": {
"description": "The owner SCA account address.",
"type": "string"
},
"signerAddress": {
"description": "The signer address to send the transaction from.",
"type": "string"
},
"toAddress": {
"description": "The address to send the transaction to.",
"type": "string"
},
"value": {
"description": "The value of the transaction in ETH.",
"type": "string"
}
},
"required": [
"ownerScaAccountAddress",
"signerAddress",
"toAddress"
],
"type": "object"
}