Javascript SDK of WoopChain protocol
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sdk/examples/testGanache.js

161 lines
5.6 KiB

const { Harmony } = require('@harmony/core');
const ganache = require('ganache-cli');
var port = 18545;
const url = `http://localhost:${port}`;
const mne =
'food response winner warfare indicate visual hundred toilet jealous okay relief tornado';
console.log('--- hint: please write these down');
console.log('-------------------------------------');
console.log(`${mne}`);
console.log('-------------------------------------');
// we use ChainType=0 to indicate we are using `harmony node`
// if we set it to 1, we use `eth` as our settings.
// here 1 is used, which means we use ethereum-node.
const harmony = new Harmony(url, 1);
const acc = harmony.wallet.addByMnemonic(mne, 0);
console.log('--- hint: we use this private key to as default account to test');
console.log('-------------------------------------');
console.log(`${acc.privateKey}`);
console.log('-------------------------------------');
const server = ganache.server({
accounts: [{ secretKey: acc.privateKey, balance: '0x21e19e0c9bab2400000' }],
default_balance_ether: 10000,
});
// now it is async time
async function main() {
const latestBalance = await harmony.blockchain.getBalance({
address: acc.address,
blockNumber: 'latest',
});
console.log('--- testing: hmy_getBalance');
console.log('-------------------------------------');
console.log({ balance: harmony.utils.hexToNumber(latestBalance) });
console.log('-------------------------------------');
const nonce = await harmony.blockchain.getTransactionCount({
address: acc.address,
blockNumber: 'latest',
});
console.log('--- testing: hmy_getTransactionCount');
console.log('-------------------------------------');
console.log({ nonce: Number.parseInt(harmony.utils.hexToNumber(nonce), 10) });
console.log('-------------------------------------');
const balanceOfAccount = await acc.getBalance();
console.log('--- testing: Account.getBalance');
console.log('-------------------------------------');
console.log(balanceOfAccount);
console.log('-------------------------------------');
const sendTo = '0xccaed3f53bd0a55db215cc58182969e59d2242fe';
const txn = harmony.transactions.newTx({
to: sendTo,
value: 1,
gasLimit: new harmony.utils.Unit('21000').asWei().toWei(),
gasPrice: new harmony.utils.Unit('100000000000').asWei().toWei(),
});
// now we sign and send a transaction
const signed = await acc.signTransaction(txn, true);
console.log('--- testing: Account.signTransaction');
console.log('-------------------------------------');
console.log({ signedTransactionPayload: signed.txPayload });
console.log('-------------------------------------');
const [sentTxn, TranID] = await signed.sendTransaction();
console.log('--- testing: Transaction.sendTransaction');
console.log('-------------------------------------');
console.log({ TranID });
console.log('-------------------------------------');
const confirmed = await sentTxn.confirm(TranID, 20, 1000);
console.log('--- testing: Transaction.confirm');
console.log('-------------------------------------');
console.log({ confirmed: confirmed.isConfirmed() });
console.log('-------------------------------------');
const latestBlock = await harmony.blockchain.getBlockByNumber({
blockNumber: 'latest',
});
console.log('--- testing: hmy_getBlockByNumber');
console.log('-------------------------------------');
console.log({ latestBlockHash: latestBlock.hash });
console.log('-------------------------------------');
const sameLatestBlock = await harmony.blockchain.getBlockByHash({
blockHash: latestBlock.hash,
});
console.log('--- testing: hmy_getBlockByHash');
console.log('-------------------------------------');
console.log({ sameLatestBlockNumber: sameLatestBlock.number });
console.log('-------------------------------------');
const blockTransactionCount = await harmony.blockchain.getBlockTransactionCountByHash(
{
blockHash: latestBlock.hash,
},
);
console.log('--- testing: hmy_getBlockTransactionCountByHash');
console.log('-------------------------------------');
console.log(blockTransactionCount);
console.log('-------------------------------------');
const sameBlockTransactionCount = await harmony.blockchain.getBlockTransactionCountByNumber(
{
blockNumber: latestBlock.number,
},
);
console.log('--- testing: hmy_getBlockTransactionCountByNumber');
console.log('-------------------------------------');
console.log(sameBlockTransactionCount);
console.log('-------------------------------------');
const transaction = await harmony.blockchain.getTransactionByBlockHashAndIndex(
{
blockHash: latestBlock.hash,
index: '0x0',
},
);
console.log('--- testing: hmy_getTransactionByBlockHashAndIndex');
console.log('-------------------------------------');
console.log(transaction);
console.log('-------------------------------------');
const sameTransaction = await harmony.blockchain.getTransactionByBlockNumberAndIndex(
{
blockNumber: latestBlock.number,
index: '0x0',
},
);
console.log('--- testing: hmy_getTransactionByBlockNumberAndIndex');
console.log('-------------------------------------');
console.log({ gas: sameTransaction.gas });
console.log('-------------------------------------');
const sameTransaction2 = await harmony.blockchain.getTransactionByHash({
txnHash: transaction.hash,
});
console.log('--- testing: hmy_getTransactionByHash');
console.log('-------------------------------------');
console.log({ gas: sameTransaction2.gas });
console.log('-------------------------------------');
}
server.listen(port, function(err, blockchain) {
main();
});