getSlowTransferApprovalRequired
Determine if guardian approval is required for a token transfer by specifying user, recipient, token ID, and amount. Streamline Ethereum-based transaction validation.
Instructions
Check if a transfer needs guardian approval
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | The amount to transfer | |
id | Yes | The token ID | |
to | Yes | The recipient address | |
user | Yes | The user address |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"description": "The amount to transfer",
"type": "string"
},
"id": {
"description": "The token ID",
"type": "string"
},
"to": {
"$ref": "#/properties/user",
"description": "The recipient address"
},
"user": {
"description": "The user address",
"type": "string"
}
},
"required": [
"user",
"to",
"id",
"amount"
],
"type": "object"
}