predictTransferId
Predict a unique transfer ID for cryptocurrency transactions by specifying sender, recipient, token ID, and amount, ensuring accurate tracking and automation.
Instructions
Predict a transfer ID for a potential transfer
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | The transfer amount | |
from | Yes | The sender address | |
id | Yes | The token ID | |
to | Yes | The recipient address |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"description": "The transfer amount",
"type": "string"
},
"from": {
"description": "The sender address",
"type": "string"
},
"id": {
"description": "The token ID",
"type": "string"
},
"to": {
"$ref": "#/properties/from",
"description": "The recipient address"
}
},
"required": [
"from",
"to",
"id",
"amount"
],
"type": "object"
}