Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Thunnini committed Oct 16, 2024
2 parents 438e05b + 6c63e03 commit 646838b
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
publish:
name: Publish to npm and create release
runs-on: ubuntu-20.04
runs-on: ubuntu-20.04-l
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
check-firefox-archive:
name: Test that docker can produce the same result for firefox
needs: [publish]
runs-on: ubuntu-20.04
runs-on: ubuntu-20.04-l
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
Expand Down
53 changes: 53 additions & 0 deletions apps/extension/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2552,6 +2552,59 @@ export const EmbedChainInfos: (ChainInfo | ModularChainInfo)[] = [
"0x04718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d",
},
},
{
chainId: "mantra-1",
chainName: "MANTRA",
chainSymbolImageUrl:
"https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/mantra/chain.png",
rpc: "https://rpc-mantra.keplr.app",
rest: "https://lcd-mantra.keplr.app",
bip44: {
coinType: 118,
},
bech32Config: {
bech32PrefixAccAddr: "mantra",
bech32PrefixAccPub: "mantrapub",
bech32PrefixValAddr: "mantravaloper",
bech32PrefixValPub: "mantravaloperpub",
bech32PrefixConsAddr: "mantravalcons",
bech32PrefixConsPub: "mantravalconspub",
},
currencies: [
{
coinDenom: "OM",
coinMinimalDenom: "uom",
coinDecimals: 6,
coinGeckoId: "mantra-dao",
coinImageUrl:
"https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/mantra/om.png",
},
],
feeCurrencies: [
{
coinDenom: "OM",
coinMinimalDenom: "uom",
coinDecimals: 6,
coinGeckoId: "mantra-dao",
coinImageUrl:
"https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/mantra/om.png",
gasPriceStep: {
low: 0.01,
average: 0.025,
high: 0.03,
},
},
],
stakeCurrency: {
coinDenom: "OM",
coinMinimalDenom: "uom",
coinDecimals: 6,
coinGeckoId: "mantra-dao",
coinImageUrl:
"https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/mantra/om.png",
},
features: ["cosmwasm"],
},
];

// The origins that are able to pass any permission that external webpages can have.
Expand Down

0 comments on commit 646838b

Please sign in to comment.