@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 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);