algorandfoundation / algokit-utils-ts

MIT License
19 stars 8 forks source link

Added `createAsset` and support 64-bit integers from indexer #259

Closed robdmoore closed 8 months ago

robdmoore commented 8 months ago

BREAKING CHANGE: Indexer's from algokit.getAlgoIndexerClient(...) now have IntDecoding.MIXED rather than IntDecoding.DEFAULT so that numbers > 53-bit will be accurately represented, you can override this with a new parameter to that function.

Also, a number of fields in types/indexer that can have 64-bit values have been changed from number to number | bigint.