diff --git a/packages/common/package.json b/packages/common/package.json index 056869e..630287a 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@oraichain/common", - "version": "1.1.4", + "version": "1.1.5", "main": "build/index.js", "license": "MIT", "scripts": { diff --git a/packages/common/src/chain-infos/types.ts b/packages/common/src/chain-infos/types.ts index 0c71cd2..5367585 100644 --- a/packages/common/src/chain-infos/types.ts +++ b/packages/common/src/chain-infos/types.ts @@ -6,7 +6,7 @@ export type BridgeAppCurrency = FeeCurrency & { readonly bridgeTo?: string[]; readonly coinGeckoId?: string; readonly bridgeNetworkIdentifier?: string; - readonly coinDecimals: 6 | 8 | 14 | 18; // 6 for cosmos, 8 for bitcoin, 18 for evm + readonly coinDecimals: 6 | 8 | 9 | 14 | 18; // 6 for cosmos, 8 for bitcoin, 18 for evm readonly contractAddress?: string; readonly prefixToken?: string; }; @@ -38,6 +38,8 @@ export interface CustomChainInfo readonly txUrl: string; readonly accountUrl?: string; }; + readonly chainLogoPng?: string; + readonly chainLogoSvg?: string; } export interface ChainInfos {