diff --git a/packages/oraidex-common/package.json b/packages/oraidex-common/package.json index f4f28f28..1906a000 100644 --- a/packages/oraidex-common/package.json +++ b/packages/oraidex-common/package.json @@ -1,6 +1,6 @@ { "name": "@oraichain/oraidex-common", - "version": "1.1.19", + "version": "1.1.20", "main": "build/index.js", "files": [ "build/" diff --git a/packages/oraidex-common/src/config/chainInfosWithIcon.ts b/packages/oraidex-common/src/config/chainInfosWithIcon.ts index 61c6ba67..33744158 100644 --- a/packages/oraidex-common/src/config/chainInfosWithIcon.ts +++ b/packages/oraidex-common/src/config/chainInfosWithIcon.ts @@ -20,6 +20,8 @@ const NobleIcon = "https://raw.githubusercontent.com/cosmos/chain-registry/maste const BtcIcon = "https://s2.coinmarketcap.com/static/img/coins/64x64/1.png"; const OCHIcon = "https://assets.coingecko.com/coins/images/34236/standard/orchai_logo_white_copy_4x-8_%281%29.png?1704307670"; +const PepeIcon = "https://assets.coingecko.com/coins/images/29850/standard/pepe-token.jpeg?1696528776"; +const HamsterIcon = "https://assets.coingecko.com/coins/images/39102/standard/hamster-removebg-preview.png?1720514486"; import { flatten } from "lodash"; import { chainInfos as customChainInfos, CustomChainInfo } from "../network"; @@ -124,6 +126,16 @@ export const tokensIcon: TokenIcon[] = [ coinGeckoId: "och", Icon: OCHIcon, IconLight: OCHIcon + }, + { + coinGeckoId: "pepe", + Icon: PepeIcon, + IconLight: PepeIcon + }, + { + coinGeckoId: "hamster-kombat", + Icon: HamsterIcon, + IconLight: HamsterIcon } ]; diff --git a/packages/oraidex-common/src/network.ts b/packages/oraidex-common/src/network.ts index 529dc9c0..97fc0849 100644 --- a/packages/oraidex-common/src/network.ts +++ b/packages/oraidex-common/src/network.ts @@ -533,7 +533,7 @@ export const oraichainNetwork: CustomChainInfo = { coinMinimalDenom: HMSTR_ORAICHAIN_DENOM, coinDecimals: 9, coinGeckoId: "hamster-kombat", - coinImageUrl: "https://s2.coinmarketcap.com/static/img/coins/64x64/32195.png" + coinImageUrl: "https://assets.coingecko.com/coins/images/39102/standard/hamster-removebg-preview.png?1720514486" } ] };