EVM
A standard interface for EVM methods
Player Account
string account = PlayerPrefs.GetString("Account");
print(account);Block number
string chain = "cronos";
string network = "mainnet"; // mainnet or testnet
int blockNumber = await EVM.BlockNumber(chain, network);
print(blockNumber); Some codeBalance Of
string chain = "cronos";
string network = "mainnet"; // mainnet or testnet
string account = "WALLET_ADDRESS";
string balance = await EVM.BalanceOf(chain, network, account, rpc);
print(balance);Verify
Nonce
Convert WEI to CRO and CRO to WEI
Last updated
Was this helpful?