Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unpause harmony #1701

Merged
merged 2 commits into from
Dec 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export const BridgeTransactionButton = ({
PAUSED_TO_CHAIN_IDS.includes(toChainId)
) {
buttonProperties = {
label: `Bridge unavailable due to network issues`,
label: `Bridge unavailable`,
onClick: null,
}
} else if (!fromToken) {
Expand Down
4 changes: 2 additions & 2 deletions packages/synapse-interface/constants/chains/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ export const CHAIN_IDS = getids() // used to be ids
export const CHAINS_BY_ID = getChainsByID()
export const ORDERED_CHAINS_BY_ID = CHAINS_ARR.map((chain) => String(chain.id))

export const PAUSED_FROM_CHAIN_IDS = [all.HARMONY.id]
export const PAUSED_TO_CHAIN_IDS = [all.DOGE.id, all.HARMONY.id]
export const PAUSED_FROM_CHAIN_IDS = []
export const PAUSED_TO_CHAIN_IDS = [all.DOGE.id]

export const ChainId = {
ETH: 1,
Expand Down
Loading