register_coin
Register your Aptos account to receive custom coins by specifying the coin type identifier. Returns transaction details to enable secure transfers.
Instructions
Register your account to receive a specific coin type. This is required before you can receive transfers of custom coins on Aptos. Returns the registration transaction details.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
coin_type | Yes | The coin type identifier to register for (e.g., '0x123::coin::T') | |
max_gas_amount | No | Maximum gas amount for the transaction (optional) |
Input Schema (JSON Schema)
{
"properties": {
"coin_type": {
"description": "The coin type identifier to register for (e.g., '0x123::coin::T')",
"type": "string"
},
"max_gas_amount": {
"default": 1000,
"description": "Maximum gas amount for the transaction (optional)",
"type": "number"
}
},
"required": [
"coin_type"
],
"type": "object"
}