Skip to content

Commit

Permalink
Merge pull request #25 from Stellarthoughts/hi
Browse files Browse the repository at this point in the history
add: config
  • Loading branch information
MikeMS-sys authored Jul 16, 2024
2 parents c86343b + 5ddfed1 commit e0d8240
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push-docker-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ jobs:
with:
platforms: linux/amd64,linux/arm64
push: true
tags: gatewayfm/zkevm-bridge-ui-generic:0.0.15
tags: gatewayfm/zkevm-bridge-ui-generic:0.0.16
6 changes: 3 additions & 3 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,11 @@ export const getChains = ({
explorerUrl: polygonZkEVM.explorerUrl,
Icon: PolygonZkEVMChainIcon,
key: "polygon-zkevm",
name: "Moonveil Testnet",
name: "Hi Testnet",
nativeCurrency: {
decimals: 18,
name: "Moonrise",
symbol: "MORE",
name: "tHP",
symbol: "tHP",
},
networkId: polygonZkEVM.networkId,
provider: polygonZkEVMProvider,
Expand Down
2 changes: 1 addition & 1 deletion src/views/home/components/bridge-form/bridge-form.view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ export const BridgeForm: FC<BridgeFormProps> = ({ account, formData, onResetForm
let symbol = token.symbol;

if (chainId !== "ethereum" && token.symbol === "ETH") {
symbol = "MORE";
symbol = "tHP";
}


Expand Down
2 changes: 1 addition & 1 deletion src/views/shared/token-balance/token-balance.view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const TokenBalance: FC<TokenBalanceProps> = ({ chainId, spinnerSize, toke


if (chainId !== "ethereum" && token.symbol === "ETH") {
symbol = "MORE";
symbol = "tHP";
}

if (!token.balance) {
Expand Down

0 comments on commit e0d8240

Please sign in to comment.