EVM Transfers
Following are examples of the body of a Create Transaction request for various EVM token transfers. The general details of creating the request appear here.
To learn more about programmatically transferring EVM assets with Fordefi, check out our public API Examples repository on Github.
{
"signer_type": "api_signer",
"vault_id": "9095b1aa-2178-4d96-88a5-b709055843e2",
"note": "",
"type": "evm_transaction",
"details": {
"type": "evm_transfer",
"gas": {
"type": "priority",
"priority_level": "medium"
},
"to": "0x1788124E29Feb72eECAe5C08B5aC16932A607063",
"asset_identifier": {
"type": "evm",
"details": {
"type": "native",
"chain": "evm_ethereum_mainnet"
}
},
"value": {
"type": "value",
"value": "10000000000000"
}
}
}
For ERC-1155, sending max is currently not supported. An explicit value to transfer must be provided.