Skip to content

Commit

Permalink
fix TTKO decimals
Browse files Browse the repository at this point in the history
  • Loading branch information
2manslkh committed Jul 18, 2023
1 parent 0678113 commit 2a96440
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/website/components/AddTokenButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ async function AddToken(network: AddTokenButtonProps["network"], token: AddToken

const tokenAddress = tokenMap[network][token];
const tokenSymbol = token;
const tokenDecimals = 18;
const tokenDecimals = token === "TTKO" ? 8 : 18;
// const tokenImage = 'http://placekitten.com/200/300';

if ((window as any).ethereum.chainId != chainMap[network]) {
Expand Down

0 comments on commit 2a96440

Please sign in to comment.