TON Transfers
Following are examples of the body of a Create Transaction request for a native TON currency transfer and jetton transfer. The general details of creating the request appear here.
On TON, the price of gas units is determined by the chain config. The fee that is deducted from the maximum amount is currently 0.015 Toncoin.
{
"vault_id": "432b199b-1f71-42bf-ba0b-33d512afa9de",
"note": "string",
"signer_type": "api_signer",
"sign_mode": "auto",
"type": "ton_transaction",
"details": {
"type": "ton_transfer",
"fail_on_prediction_failure": true,
"push_mode": "auto",
"to": {
"type": "hex",
"address": "UQAouB_61QHD91MifxjhbQmBNwulJ9_AA0cUEydZIAcfq52c"
},
"value": {
"type": "value",
"value": "1000000000000000000"
},
"asset_identifier": {
"type": "ton",
"details": {
"type": "native",
"chain": "ton_mainnet"
}
},
"skip_prediction": false
}
}