Skip to content

Commit

Permalink
Merge pull request #445 from axelarnetwork/new-chains
Browse files Browse the repository at this point in the history
feat: add teritori mainnet
  • Loading branch information
canhtrinh authored Nov 6, 2023
2 parents 40bd0f6 + 9945ec0 commit 4e93c3b
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
File renamed without changes
2 changes: 2 additions & 0 deletions src/config/web3/cosmos/mainnet/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import { sei } from "./sei";
import { sommelier } from "./sommelier";
import { stargaze } from "./stargaze";
import { stride } from "./stride";
import { teritori } from "./teritori";
import { terra } from "./terra";
import { terraClassic } from "./terra_classic";
import { umee } from "./umee";
Expand Down Expand Up @@ -71,4 +72,5 @@ export const mainnetChains: CosmosChain[] = [
migaloo,
celestia,
haqq,
teritori,
];
47 changes: 47 additions & 0 deletions src/config/web3/cosmos/mainnet/teritori.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import { Bech32Address } from "@keplr-wallet/cosmos";

import { COSMOS_PROXY_RPC_MAINNET } from "~/config/constants";

import { CosmosChain } from "../interface";

export const teritori: CosmosChain = {
rpc: `${COSMOS_PROXY_RPC_MAINNET}/chain/teritori`,
rest: "https://rest.cosmos.haqq.network",
chainId: "teritori-1",
chainName: "Teritori",
chainIdentifier: "teritori",
bech32Config: Bech32Address.defaultBech32Config("tori"),
bip44: {
coinType: 118,
},
currencies: [
{
coinDenom: "TORI",
coinMinimalDenom: "utori",
coinDecimals: 6,
coinGeckoId: "teritori",
},
],
feeCurrencies: [
{
coinDenom: "TORI",
coinMinimalDenom: "utori",
coinDecimals: 6,
coinGeckoId: "teritori",
gasPriceStep: {
low: 0,
average: 0.025,
high: 0.04,
},
},
],
stakeCurrency: {
coinDenom: "TORI",
coinMinimalDenom: "utori",
coinDecimals: 6,
coinGeckoId: "teritori",
},
features: ["ibc-transfer", "cosmwasm", "ibc-go"],
chainToAxelarChannelId: "channel-61",
explorer: "", // TODO: add explorer
};

1 comment on commit 4e93c3b

@vercel
Copy link

@vercel vercel bot commented on 4e93c3b Nov 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.