Skip to content

Commit

Permalink
fix: token name
Browse files Browse the repository at this point in the history
  • Loading branch information
asolovov committed Mar 15, 2024
1 parent c32bc66 commit 637392d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ export const getChains = ({
name: getEthereumNetworkName(ethereumNetwork.chainId),
nativeCurrency: {
decimals: 18,
name: "Ether",
symbol: "ETH",
name: "SkpGPT",
symbol: "SkpGPT",
},
networkId: 0,
poeContractAddress: ethereum.poeContractAddress,
Expand All @@ -133,8 +133,8 @@ export const getChains = ({
name: polygonZkEVMNetworkName,
nativeCurrency: {
decimals: 18,
name: "Ether",
symbol: "ETH",
name: "SkpGPT",
symbol: "SkpGPT",
},
networkId: polygonZkEVM.networkId,
provider: polygonZkEVMProvider,
Expand All @@ -148,8 +148,8 @@ export const getEtherToken = (chain: Chain): Token => {
chainId: chain.chainId,
decimals: 18,
logoURI: ETH_TOKEN_LOGO_URI,
name: "Ether",
symbol: "ETH",
name: "SkpGPT",
symbol: "SkpGPT",
};
};

Expand Down

0 comments on commit 637392d

Please sign in to comment.