Arc pays gas in USDC rather than a separate volatile coin, so a fee can be quoted as a number of cents instead of a number of gwei. This page reads the network directly and does that conversion. It also checks the one thing that quietly breaks contracts ported from other chains: native USDC counts in 18 decimals, the ERC-20 view counts in 6, and they share a balance.
Read straight from the public RPC in your browser. Nothing is stored and there is no server in between.
Gas amounts below are the usual figures for each shape of transaction, not a quote for yours — they are shown so you can see exactly what is being multiplied. The dollar column updates with the live fee.
| Transaction | Cost | Gas |
|---|---|---|
| Loading… | ||
On Arc one USDC balance is visible through two interfaces: the native one with
18 decimals, and an ERC-20 one at
0x3600…0000
with 6. The ERC-20 view truncates anything below a whole cent of a cent, so
balanceOf can return zero on an account that is not empty. An
"insufficient balance" guard copied from another chain will misread that. Paste an address
and see both numbers side by side.
balanceOf, 6 decimals—Wallets without custom gas-token support still sign and send fine; they may simply label the balance "ETH" while the underlying asset is USDC.