βοΈtransferTokens
Last updated
npm install @nest25/casper-lib
OR
yarn add @nest25/casper-lib// import Nest25 Casper library
const { Casper } = require('@nest25/casper-lib');
// create a new Casper instance
const casper = new Casper();
const privateKey = 'your-private-key';
const RPC_API = 'https://rpc.testnet.casperlabs.io/rpc';
async function main() {
const to = '013a156a50fc6284ba436aedeaf96b55ac1a0c57ee9f8a46bf1c6518afe9b2f56c';
const amount = 25 * 10 ** 9;
// send CSPR tokens
const txHash = await casper.transferTokens(RPC_API, privateKey, to, amount);
console.log({ txHash });
}
// call main function
main();{
txHash: '6a72b901b92bbb6490da1d49ecc912d06c3358f17184f6213d04434dc8f451a4'
}