UNPKG

@cityofzion/neon-api

Version:

Neon-API module: High level API for neon-js

41 lines 1.62 kB
import { sc, u } from "@cityofzion/neon-core"; const CHUNK_SIZE = 3; export async function getTokenInfos(contracts, client) { const script = contracts .map((scriptHash) => scriptHash instanceof sc.Nep17Contract ? scriptHash : new sc.Nep17Contract(scriptHash)) .map((contract) => [ contract.symbol(), contract.decimals(), contract.totalSupply(), ]) .reduce((sb, contractCalls) => { contractCalls.forEach((cc) => sb.emitContractCall(cc)); return sb; }, new sc.ScriptBuilder()) .build(); const response = await client.invokeScript(u.HexString.fromHex(script)); if (response.state === "FAULT") { throw new Error(response.exception ? `Invoke exception: ${response.exception}}` : "No exception message returned."); } const expectedStackLength = contracts.length * CHUNK_SIZE; if (response.stack.length !== expectedStackLength) { throw new Error(`Received unexpected results. Expected ${expectedStackLength} but got ${response.stack.length} instead.`); } const results = []; for (let i = 0; i < response.stack.length; i += CHUNK_SIZE) { results.push(response.stack.slice(i, i + CHUNK_SIZE)); } return results.map((result) => { const decimals = parseInt(result[1].value); return { symbol: u.HexString.fromBase64(result[0].value).toAscii(), decimals, totalSupply: u.BigInteger.fromNumber(result[2].value).toDecimal(decimals), }; }); } //# sourceMappingURL=getTokenInfos.js.map