Balance And Transaction History
Asset Balances
const balances: Record<number, bigint> = core.getBalances();
// Output:
// {
// 65537: 2000000000000000000n,
// 65538: 32000000000000000000n,
// .
// .
// .
// }Transaction History
const fromBlock = 10820000;
const toBlock = 10720000;
const history = veilnyx.getTransactionHistory(fromBlock, toBlock);Last updated