#Big Integer Supply
17 messages · Page 1 of 1 (latest)
from: wallet,
manager: wallet,
assetName: data_for_txns[i].asset_name,
unitName: data_for_txns[i].unit_name,
total:
parseInt(data_for_txns[i].total_supply *
10 ** parseInt(data_for_txns[i].decimals),
decimals: parseInt(data_for_txns[i].decimals),```
What dashboard? On console?
You want to do all your math with bigints, don't mix in number/int
For constants like 10 use 10n
Instead of parseInt use BigInt
@bleak mulch what did you do to attract all these scammers? 😂
also see #🚨│report-scams
Am I checking out the scammers or the big integers?
just look at the size of those integers
Dem Integers bring all the scammers to the yard
You basically need to speak bigints with Algorand stuff and then convert to strings for UI
const hugeString = BigInt("9007199254740991");
// 9007199254740991n```
I assume that's answered, right?