Skip to content

Commit

Permalink
feat: add $hsmtr info
Browse files Browse the repository at this point in the history
  • Loading branch information
trung2891 committed Sep 26, 2024
1 parent cdf4838 commit f02ed6c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/oraidex-common/src/constant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ export const TON_ORAICHAIN_DENOM = "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3q
export const PEPE_ORAICHAIN_EXT_DENOM =
"factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/extPEPE";
export const CAT_ORAICHAIN_EXT_DENOM = "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/extCAT";
export const HSMTR_ORAICHAIN_DENOM = "factory/orai17hyr3eg92fv34fdnkend48scu32hn26gqxw3hnwkfy904lk9r09qqzty42/XuanDang";

// config for oraichain token
export const AIRI_CONTRACT = "orai10ldgzued6zjp0mkqwsv2mux3ml50l97c74x8sg";
Expand Down
13 changes: 11 additions & 2 deletions packages/oraidex-common/src/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ import {
CAT_ORAICHAIN_EXT_DENOM as CAT_ORAICHAIN_DENOM,
PEPE_ETH_CONTRACT,
PEPE_BSC_CONTRACT,
CAT_BSC_CONTRACT
CAT_BSC_CONTRACT,
HSMTR_ORAICHAIN_DENOM
} from "./constant";
import { listOsmosisToken } from "./alpha-network";

Expand Down Expand Up @@ -120,7 +121,8 @@ export type CoinGeckoId =
| "celestia"
| "the-open-network"
| "pepe"
| "simon-s-cat";
| "simon-s-cat"
| "hamster-kombat";

export type NetworkType = "cosmos" | "evm";
export interface NetworkConfig {
Expand Down Expand Up @@ -525,6 +527,13 @@ export const oraichainNetwork: CustomChainInfo = {
coinDecimals: 9,
coinGeckoId: "the-open-network",
coinImageUrl: "https://assets.coingecko.com/coins/images/17980/standard/ton_symbol.png?1696517498"
},
{
coinDenom: "HMSTR",
coinMinimalDenom: HSMTR_ORAICHAIN_DENOM,
coinDecimals: 9,
coinGeckoId: "hamster-kombat",
coinImageUrl: "https://s2.coinmarketcap.com/static/img/coins/64x64/32195.png"
}
]
};
Expand Down

0 comments on commit f02ed6c

Please sign in to comment.