fix: Updating asset-transfer-transaction.amount and .closeAmount to allow bigint values since they can be 64-bit numbers
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.
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
tonumber | bigint
.