const IBC_TOKEN, GRC20_TOKEN, NATIVE_COIN
1const (
2 // IBC_TOKEN is a zkgm-issued ibc/ voucher. Supply is minted on recv and
3 // burned on send-side UNESCROW or maker burn-address ack; custody moves via
4 // transferVoucher between holders and the proxy escrow.
5 IBC_TOKEN = iota
6 // GRC20_TOKEN is a locally registered grc20 (not a zkgm voucher). Custody
7 // moves via Teller TransferFrom/Transfer; this realm cannot burn its supply.
8 GRC20_TOKEN
9 // NATIVE_COIN is a banker coin attached with tx -send. Escrow consumes the
10 // attached funds budget; unescrow releases from the proxy banker balance.
11 NATIVE_COIN
12)