KiraCore / sekai

backend - blockchain application
Other
18 stars 17 forks source link

Deafult denom doesn't guarantee the fee token to be whitelisted #645

Open MrLutik opened 6 months ago

MrLutik commented 6 months ago

After network initialization with a default denom token I was expecting to be able to pay fees with it.

IN:

sekaid query tokens token-black-whites --output=json --home=/sekai | jq

OUT:

{
  "data": {
    "whitelisted": [
      "ukex"
    ],
    "blacklisted": [
      "frozen"
    ]
  }
}

So to whitelist the token I need UKEX.

The network was initialized with following commands:

sekaid init VALNODE --bech32-prefix test --chain-id testnet-1 --default-denom utest --home /sekai
sekaid keys add genesis --home /sekai --keyring-backend test
sekaid add-genesis-account genesis 300000000000000utest --home /sekai --keyring-backend test
sekaid gentx-claim --address genesis --moniker GENESIS --home /sekai --keyring-backend test

PROBLEM: If you initialized the network with a default token and never added any ukex you won't be able to perform any operations/txs.

kiragpg commented 5 months ago

This issue was resolved on latest release as well, can you check and close the ticket after confirmation @MrLutik