intentCoinchanAirdrop
Distribute Coinchan tokens to multiple addresses efficiently using predefined chain ID, coin ID, recipient lists, and specified amounts.
Instructions
Airdrop a Coinchan token to multiple addresses
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amounts | Yes | Array of token amounts | |
chainId | Yes | ||
coinId | Yes | ||
recipients | Yes | Array of recipient addresses | |
totalSum | Yes | Total sum to transfer from sender |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amounts": {
"description": "Array of token amounts",
"items": {
"format": "int64",
"type": "integer"
},
"type": "array"
},
"chainId": {
"type": "number"
},
"coinId": {
"format": "int64",
"type": "integer"
},
"recipients": {
"description": "Array of recipient addresses",
"items": {
"type": "string"
},
"type": "array"
},
"totalSum": {
"description": "Total sum to transfer from sender",
"format": "int64",
"type": "integer"
}
},
"required": [
"chainId",
"coinId",
"recipients",
"amounts",
"totalSum"
],
"type": "object"
}