Transfer
Transfer one or more tokens to a specific address.
Arguments:
name | Description | Example |
---|---|---|
token | Address of the token | token=0x6b175474e8909... |
recipient | Address of the recipient | recipient=0x6b175474e8909... |
amount | Raw amount to transfer | amount=100000000000 |
Example
Body:
[
{
"action": "transfer",
"args": {
"token": "0xd26114cd6EE289AccF82350c8d8487fedB8A0C07",
"recipient": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
"amount": "1000000000000000000000000"
}
}
]
Curl:
curl -X 'POST' \
'https://api.enso.finance/api/v1/shortcuts/bundle?chainId=1&fromAddress=0xd8da6bf26964af9d7eed9e03e53415d37aa96045' \
-H 'accept: */*' \
-H 'Content-Type: application/json' \
-d '[
{
"protocol": "enso",
"action": "transfer",
"args": {
"token": "0xd26114cd6EE289AccF82350c8d8487fedB8A0C07",
"recipient": "0x80eba3855878739f4710233a8a19d89bdd2ffb8e",
"amount": "1000000000000000000000000"
}
}
]'