Skip to content

Commit

Permalink
fix: bump version to 1.2.1-beta8 and update chainId type to NetworkCh…
Browse files Browse the repository at this point in the history
…ainId
  • Loading branch information
vuonghuuhung committed Dec 3, 2024
1 parent 064acbc commit 4d1a589
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oraichain/common",
"version": "1.2.1-beta7",
"version": "1.2.1-beta8",
"main": "build/index.js",
"license": "MIT",
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion packages/common/src/token-items/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { FeeCurrency } from "@keplr-wallet/types";
import { NetworkChainId } from "src/constants";

export type TokenItemType = {
name: string;
Expand All @@ -9,7 +10,7 @@ export type TokenItemType = {
evmDenoms?: string[];
bridgeNetworkIdentifier?: string;
bridgeTo?: string[];
chainId: string;
chainId: NetworkChainId;
coinType?: number;
rpc: string;
decimals: number;
Expand Down

0 comments on commit 4d1a589

Please sign in to comment.