Skip to content

Commit

Permalink
fix: coin denom
Browse files Browse the repository at this point in the history
  • Loading branch information
icfor committed Feb 27, 2024
1 parent 07adb81 commit 7a90de8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/features/staking/lib/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const resolveCoin = (coin: Coin) => {

return {
amount: num.div(new BigNumber(10).pow(6)).toString(),
denom: "UXION",
denom: "XION",
};
}

Expand Down
5 changes: 3 additions & 2 deletions src/features/staking/lib/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ import { testnetChainInfo } from "@burnt-labs/constants";

export const { chainId } = testnetChainInfo;

export const dashboardUrl =
process.env.NODE_ENV === "production" ? undefined : "http://localhost:3000";
// export const dashboardUrl =
// process.env.NODE_ENV === "production" ? undefined : "http://localhost:3000";
export const dashboardUrl = undefined;

// export const rpcEndpoint =
// typeof window === "undefined"
Expand Down

0 comments on commit 7a90de8

Please sign in to comment.