-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #102 from pnetwork-association/fix/only-pegouts
Fix/only pegouts
- Loading branch information
Showing
4 changed files
with
22 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'ptokens-dapp-v2': patch | ||
--- | ||
|
||
fix: enable only pegouts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ import { MAX_IMPACT, PBTC_ON_ETH_MAINNET_V1_MIGRATION, PUOS_ON_ULTRA_MAINNET } f | |
import { sendEvent } from '../../../ga4' | ||
import { useAssets } from '../../../hooks/use-assets' | ||
import { useSwap } from '../../../hooks/use-swap' | ||
import defaultAssets, { disabledAssets, dismissedAssets } from '../../../settings/swap-assets' | ||
import defaultAssets, { dismissedAssets } from '../../../settings/swap-assets' | ||
import Button from '../../atoms/button/Button' | ||
import Icon from '../../atoms/icon/Icon' | ||
import Switch from '../../atoms/switch/Switch' | ||
|
@@ -457,42 +457,19 @@ const Swap = ({ | |
direct control (i.e. not a CEX deposit address). | ||
</InfoEta> | ||
) : null} | ||
{/* {from && | ||
to && | ||
(from.blockchain == 'EOS' || to.blockchain == 'EOS') && | ||
!(dismissedAssets.includes(from.id) || dismissedAssets.includes(to.id)) ? ( | ||
<WarningEta> | ||
EOS chain will soon be upgraded to pNetwork v4 and has been disabled on v2. Swaps will soon be resumed | ||
on v4. | ||
</WarningEta> | ||
) : null} */} | ||
{/* {from && to && (disabledAssets.includes(to.id) || to.blockchain == 'EOS')? ( | ||
<WarningEta>{`${to.name} on ${to.blockchain} has been dismissed and pegins are disabled. Pegout the native token ASAP for a smooth redeem process.`}</WarningEta> | ||
) : null} | ||
{from && to && (disabledAssets.includes(from.id) || from.blockchain == 'EOS') ? ( | ||
<WarningEta>{`${from.name} on ${from.blockchain} has been dismissed. Proceed ASAP for a smooth redeem process.`}</WarningEta> | ||
) : null} */} | ||
{/* {from && to && (dismissedAssets.includes(to.id) || dismissedAssets.includes(from.id) || | ||
disabledAssets.includes(to.id) | ||
) ? ( | ||
<WarningEta> | ||
{ | ||
'Token no longer supported. This token is no longer active on pNetwork and the redemption window via the official dApp has closed. For further assistance, please contact [email protected].' | ||
} | ||
</WarningEta> | ||
) : null} */} | ||
{from && | ||
to && | ||
(dismissedAssets.includes(to.id) || | ||
dismissedAssets.includes(from.id) || | ||
(disabledAssets.includes(to.id) && disabledAssets.includes(from.id)) || | ||
(from.blockchain == 'EOS' && disabledAssets.includes(to.id)) || | ||
(to.blockchain == 'EOS' && disabledAssets.includes(from.id))) ? ( | ||
<WarningEta>{`Token no longer supported. Please pegout towards native ${to.nativeSymbol}`}</WarningEta> | ||
) : from && to && (disabledAssets.includes(from.id) || from.blockchain == 'EOS') ? ( | ||
<WarningEta>{`${from.name} on ${from.blockchain} has been dismissed. Proceed ASAP for a smooth redeem process.`}</WarningEta> | ||
) : from && to && (disabledAssets.includes(to.id) || to.blockchain == 'EOS') ? ( | ||
<WarningEta>{`${to.name} on ${to.blockchain} has been dismissed and pegins are disabled. Pegout the native token ASAP for a smooth redeem process.`}</WarningEta> | ||
{from && to && !dismissedAssets.includes(from.id) && !dismissedAssets.includes(to.id) ? ( | ||
from.isNative ? ( | ||
<WarningEta> | ||
{`${from.name} on ${from.blockchain} has been dismissed. Please pegout ASAP if you have pTokens.`} | ||
</WarningEta> | ||
) : to.isNative ? ( | ||
<WarningEta>{`Proceed ASAP for a smooth redeem process.`}</WarningEta> | ||
) : ( | ||
<WarningEta> | ||
{`${from.name} on ${from.blockchain} and ${to.name} on ${to.blockchain} have been dismissed. | ||
Please pegout to ${from.nativeSymbol} if you have pTokens ASAP.`} | ||
</WarningEta> | ||
) | ||
) : null} | ||
{to && | ||
(to.id === 'PUSDC_ON_ALGORAND_MAINNET' || | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters