We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When you add the chain with Osmosis:
{ "rpc": "https://26657.genesisl1.org", "rest": "https://api.genesisl1.org", "chainId": "genesis_29-2", "chainName": "GenesisL1", "bip44": { "coinType": 118 }, "bech32Config": { "bech32PrefixAccAddr": "genesis", "bech32PrefixAccPub": "genesispub", "bech32PrefixValAddr": "genesisvaloper", "bech32PrefixValPub": "genesisvaloperpub", "bech32PrefixConsAddr": "genesisvalcons", "bech32PrefixConsPub": "genesisvalconspub" }, "currencies": [ { "coinDenom": "L1", "coinMinimalDenom": "el1", "coinDecimals": 18, "coinGeckoId": "pool:el1", "coinImageUrl": "https://frontier.osmosis.zone/tokens/l1.svg" } ], "features": [ "ibc-transfer", "ibc-go" ], "stakeCurrency": { "coinDenom": "L1", "coinMinimalDenom": "el1", "coinDecimals": 18, "coinGeckoId": "pool:el1", "coinImageUrl": "https://frontier.osmosis.zone/tokens/l1.svg" }, "feeCurrencies": [ { "coinDenom": "L1", "coinMinimalDenom": "el1", "coinDecimals": 18, "coinGeckoId": "pool:el1", "coinImageUrl": "https://frontier.osmosis.zone/tokens/l1.svg", "gasPriceStep": { "low": 999999999, "average": 1000000000, "high": 1000000001 } } ], "beta": true }
when you add with ping.pub
{ "chainId": "genesis_29-2", "chainName": "genesisl1", "rpc": "https://26657.genesisl1.org:443", "rest": "https://api.genesisl1.org", "bip44": { "coinType": 118 }, "coinType": 118,
"bech32Config": { "bech32PrefixAccAddr": "genesis", "bech32PrefixAccPub": "genesispub", "bech32PrefixValAddr": "genesisvaloper", "bech32PrefixValPub": "genesisvaloperpub", "bech32PrefixConsAddr": "genesisvalcons", "bech32PrefixConsPub": "genesisvalconspub" }, "currencies": [ { "coinDenom": "L1", "coinMinimalDenom": "el1", "coinDecimals": 18, "coinGeckoId": "unknown" } ], "feeCurrencies": [ { "coinDenom": "L1", "coinMinimalDenom": "el1", "coinDecimals": 18, "coinGeckoId": "unknown", "gasPriceStep": { "low": 0.01, "average": 0.025, "high": 0.03 } } ], "gasPriceStep": { "low": 0.01, "average": 0.025, "high": 0.03 }, "stakeCurrency": { "coinDenom": "L1", "coinMinimalDenom": "el1", "coinDecimals": 18, "coinGeckoId": "unknown" }, "features": []
}
you can see the difference:
osmosis: "gasPriceStep": { "low": 999999999, "average": 1000000000, "high": 1000000001 }
ping.pub "gasPriceStep": { "low": 0.01, "average": 0.025, "high": 0.03 }
Osmosis is working, ping.pub no
The text was updated successfully, but these errors were encountered:
I remember that it could be configed in the chain.json
Sorry, something went wrong.
on chain.registry it seems correct like Osmosis
"fee_tokens": [ { "denom": "el1", "low_gas_price": 999999999, "average_gas_price": 1000000000, "high_gas_price": 1000000001 }
https://github.com/cosmos/chain-registry/blob/master/genesisl1/chain.json
No branches or pull requests
When you add the chain with Osmosis:
{
"rpc": "https://26657.genesisl1.org",
"rest": "https://api.genesisl1.org",
"chainId": "genesis_29-2",
"chainName": "GenesisL1",
"bip44": {
"coinType": 118
},
"bech32Config": {
"bech32PrefixAccAddr": "genesis",
"bech32PrefixAccPub": "genesispub",
"bech32PrefixValAddr": "genesisvaloper",
"bech32PrefixValPub": "genesisvaloperpub",
"bech32PrefixConsAddr": "genesisvalcons",
"bech32PrefixConsPub": "genesisvalconspub"
},
"currencies": [
{
"coinDenom": "L1",
"coinMinimalDenom": "el1",
"coinDecimals": 18,
"coinGeckoId": "pool:el1",
"coinImageUrl": "https://frontier.osmosis.zone/tokens/l1.svg"
}
],
"features": [
"ibc-transfer",
"ibc-go"
],
"stakeCurrency": {
"coinDenom": "L1",
"coinMinimalDenom": "el1",
"coinDecimals": 18,
"coinGeckoId": "pool:el1",
"coinImageUrl": "https://frontier.osmosis.zone/tokens/l1.svg"
},
"feeCurrencies": [
{
"coinDenom": "L1",
"coinMinimalDenom": "el1",
"coinDecimals": 18,
"coinGeckoId": "pool:el1",
"coinImageUrl": "https://frontier.osmosis.zone/tokens/l1.svg",
"gasPriceStep": {
"low": 999999999,
"average": 1000000000,
"high": 1000000001
}
}
],
"beta": true
}
when you add with ping.pub
{
"chainId": "genesis_29-2",
"chainName": "genesisl1",
"rpc": "https://26657.genesisl1.org:443",
"rest": "https://api.genesisl1.org",
"bip44": {
"coinType": 118
},
"coinType": 118,
}
you can see the difference:
osmosis:
"gasPriceStep": {
"low": 999999999,
"average": 1000000000,
"high": 1000000001
}
ping.pub
"gasPriceStep": {
"low": 0.01,
"average": 0.025,
"high": 0.03
}
Osmosis is working, ping.pub no
The text was updated successfully, but these errors were encountered: