@cavos/cli 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -712,7 +712,7 @@ async function getBalance(provider, tokenAddress, walletAddress) {
|
|
|
712
712
|
contractAddress: tokenAddress,
|
|
713
713
|
entrypoint: "balanceOf",
|
|
714
714
|
calldata: [walletAddress]
|
|
715
|
-
});
|
|
715
|
+
}, "latest");
|
|
716
716
|
const low = BigInt(result[0]);
|
|
717
717
|
const high = BigInt(result[1]);
|
|
718
718
|
return low + (high << 128n);
|