intentDepositToSlow
Deposit tokens or ETH into a SLOW contract with a timelock delay by specifying chain, token, recipient, amount, and delay in seconds.
Instructions
Deposit tokens or ETH into SLOW contract with a timelock
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | The amount to deposit in human readable format (e.g. for 0.01 ETH use 0.01) | |
chainId | Yes | The chainId to execute the intent on. | |
delay | Yes | The timelock delay in seconds | |
to | Yes | The recipient address | |
token | Yes | The token address to deposit (use 0x0000000000000000000000000000000000000000 for ETH) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"description": "The amount to deposit in human readable format (e.g. for 0.01 ETH use 0.01)",
"type": "string"
},
"chainId": {
"description": "The chainId to execute the intent on.",
"type": "number"
},
"delay": {
"description": "The timelock delay in seconds",
"type": "number"
},
"to": {
"$ref": "#/properties/token",
"description": "The recipient address"
},
"token": {
"description": "The token address to deposit (use 0x0000000000000000000000000000000000000000 for ETH)",
"type": "string"
}
},
"required": [
"chainId",
"token",
"to",
"amount",
"delay"
],
"type": "object"
}