TRX Transfer
**HTTP Api:**HTTP
wallet/createtransactionDescription: Create a transfer transaction, if to address is not existed, then create the account on the blockchaindemo: curl -X POST http://127.0.0.1:8090/wallet/createtransaction -d '{ "to_address": "41e9d79cc47518930bc322d9bf7cddd260a0260a8d", "owner_address": "41D1E7A6BC354106CB410E65FF8B181C600FF14292", "amount": 1000}'Parameter to_address: To address, default hexStringParameter owner_address: Owner address, default hexStringParameter amount: Transfer amountParameter permission_id: Optional, for multi-signature useReturn: Transaction object
**Tronweb Example:**JavaScript
const privateKey = "..."; var fromAddress = "TM2TmqauSEiRf16CyFgzHV2BVxBejY9iyR"; //address _fromvar toAddress = "TVDGpn4hCSzJ5nkHPLetk8KQBtwaTppnkr"; //address _tovar amount = 10000000; //amount//Creates an unsigned TRX transfer transactiontradeobj = await tronWeb.transactionBuilder.sendTrx( toAddress, amount, fromAddress);const signedtxn = await tronWeb.trx.sign( tradeobj, privateKey);const receipt = await tronWeb.trx.sendRawTransaction( signedtxn);console.log('- Output:', receipt, '\n');
**Wallet-cli Example :**wallet-cli command
#Usage : SendCoin [OwnerAddress] ToAddress AmountSendCoin TWbcHNCYzqAGbrQteKnseKJdxfzBHyTfuh 100
Please follow the instructions below to complete this transaction:
Tip: "Please confirm and enter your permission id, if input y or Y means default 0, other non-numeric characters will cancel transaction.", Enter "y" or "Y" to confirm the transaction;
Tip: "lease choose your key for sign. ...... Please choose between 1 and 2", select the serial number of the sign account;
Tip: "Please input your password.", Enter your local password;
Tip: "Send 100 Sun to TWbcHNCYzqAGbrQteKnseKJdxfzBHyTfuh successful !!", which indicates that the TRX transfer was successful.
Last updated
Was this helpful?