diff --git a/apps/wallet-mobile/.storybook/storybook.requires.js b/apps/wallet-mobile/.storybook/storybook.requires.js
index ce14bcbce3..4922251289 100644
--- a/apps/wallet-mobile/.storybook/storybook.requires.js
+++ b/apps/wallet-mobile/.storybook/storybook.requires.js
@@ -134,7 +134,6 @@ const getStories = () => {
"./src/features/Exchange/common/ShowBuyBanner/BuyBannerBig.stories.tsx": require("../src/features/Exchange/common/ShowBuyBanner/BuyBannerBig.stories.tsx"),
"./src/features/Exchange/common/ShowBuyBanner/BuyBannerSmall.stories.tsx": require("../src/features/Exchange/common/ShowBuyBanner/BuyBannerSmall.stories.tsx"),
"./src/features/Exchange/common/ShowBuyBanner/PreprodFaucetBanner.stories.tsx": require("../src/features/Exchange/common/ShowBuyBanner/PreprodFaucetBanner.stories.tsx"),
- "./src/features/Exchange/common/ShowBuyBanner/SanchonetFaucetBanner.stories.tsx": require("../src/features/Exchange/common/ShowBuyBanner/SanchonetFaucetBanner.stories.tsx"),
"./src/features/Exchange/common/ShowBuyBanner/ShowBuyBanner.stories.tsx": require("../src/features/Exchange/common/ShowBuyBanner/ShowBuyBanner.stories.tsx"),
"./src/features/Exchange/useCases/CreateExchangeOrderScreen/CreateExchangeOrderScreen.stories.tsx": require("../src/features/Exchange/useCases/CreateExchangeOrderScreen/CreateExchangeOrderScreen.stories.tsx"),
"./src/features/Exchange/useCases/CreateExchangeOrderScreen/EditAmount/EditAmount.stories.tsx": require("../src/features/Exchange/useCases/CreateExchangeOrderScreen/EditAmount/EditAmount.stories.tsx"),
@@ -244,7 +243,6 @@ const getStories = () => {
"./src/features/Swap/useCases/ConfirmTxScreen/ShowSubmittedTxScreen/ShowSubmittedTxScreen.stories.tsx": require("../src/features/Swap/useCases/ConfirmTxScreen/ShowSubmittedTxScreen/ShowSubmittedTxScreen.stories.tsx"),
"./src/features/Swap/useCases/ReviewSwap/TransactionSummary.stories.tsx": require("../src/features/Swap/useCases/ReviewSwap/TransactionSummary.stories.tsx"),
"./src/features/Swap/useCases/ShowPreprodNoticeScreen/ShowPreprodNoticeScreen.stories.tsx": require("../src/features/Swap/useCases/ShowPreprodNoticeScreen/ShowPreprodNoticeScreen.stories.tsx"),
- "./src/features/Swap/useCases/ShowSanchoNoticeScreen/ShowSanchoNoticeScreen.stories.tsx": require("../src/features/Swap/useCases/ShowSanchoNoticeScreen/ShowSanchoNoticeScreen.stories.tsx"),
"./src/features/Swap/useCases/StartOrderSwapScreen/CreateOrder/Actions/AmountActions/AmountActions.stories.tsx": require("../src/features/Swap/useCases/StartOrderSwapScreen/CreateOrder/Actions/AmountActions/AmountActions.stories.tsx"),
"./src/features/Swap/useCases/StartOrderSwapScreen/CreateOrder/Actions/AmountActions/ResetQuantities.stories.tsx": require("../src/features/Swap/useCases/StartOrderSwapScreen/CreateOrder/Actions/AmountActions/ResetQuantities.stories.tsx"),
"./src/features/Swap/useCases/StartOrderSwapScreen/CreateOrder/Actions/AmountActions/SwitchTokens.stories.tsx": require("../src/features/Swap/useCases/StartOrderSwapScreen/CreateOrder/Actions/AmountActions/SwitchTokens.stories.tsx"),
diff --git a/apps/wallet-mobile/src/features/Exchange/common/ProviderItem/ProviderItem.tsx b/apps/wallet-mobile/src/features/Exchange/common/ProviderItem/ProviderItem.tsx
index 601ff50b3f..526c9afef1 100644
--- a/apps/wallet-mobile/src/features/Exchange/common/ProviderItem/ProviderItem.tsx
+++ b/apps/wallet-mobile/src/features/Exchange/common/ProviderItem/ProviderItem.tsx
@@ -24,11 +24,10 @@ export const ProviderItem = ({onPress, fee, rightAdornment, leftAdornment, disab
const {orderType} = useExchange()
const isPreprod = network === Chain.Network.Preprod
- const isSancho = network === Chain.Network.Sancho
const isMainnet = network === Chain.Network.Mainnet
const isBuy = orderType === 'buy'
- if ((isPreprod || isSancho) && isBuy) return null
+ if (isPreprod && isBuy) return null
return (
<>
diff --git a/apps/wallet-mobile/src/features/Exchange/common/ShowBuyBanner/SanchonetFaucetBanner.stories.tsx b/apps/wallet-mobile/src/features/Exchange/common/ShowBuyBanner/SanchonetFaucetBanner.stories.tsx
deleted file mode 100644
index 33790e96d1..0000000000
--- a/apps/wallet-mobile/src/features/Exchange/common/ShowBuyBanner/SanchonetFaucetBanner.stories.tsx
+++ /dev/null
@@ -1,7 +0,0 @@
-import {storiesOf} from '@storybook/react-native'
-import React from 'react'
-
-import {SanchonetFaucetBanner} from './SanchonetFaucetBanner'
-
-storiesOf('Exchange SanchonetFaucetBanner', module) //
- .add('initial', () => )
diff --git a/apps/wallet-mobile/src/features/Exchange/common/ShowBuyBanner/SanchonetFaucetBanner.tsx b/apps/wallet-mobile/src/features/Exchange/common/ShowBuyBanner/SanchonetFaucetBanner.tsx
deleted file mode 100644
index 1180aae206..0000000000
--- a/apps/wallet-mobile/src/features/Exchange/common/ShowBuyBanner/SanchonetFaucetBanner.tsx
+++ /dev/null
@@ -1,102 +0,0 @@
-import {useTheme} from '@yoroi/theme'
-import * as React from 'react'
-import {Linking, StyleSheet, Text, View} from 'react-native'
-import LinearGradient from 'react-native-linear-gradient'
-
-import {Button} from '../../../../components/Button/Button'
-import {Space} from '../../../../components/Space/Space'
-import {Spacer} from '../../../../components/Spacer/Spacer'
-import {useStrings} from '../useStrings'
-import {PreprodFaucetBannerLogo} from './PreprodFaucetBannerLogo'
-
-export const SanchonetFaucetBanner = () => {
- const strings = useStrings()
- const {styles, colors} = useStyles()
-
- const handleOnPress = () => {
- Linking.openURL('https://sancho.network/faucet/')
- }
-
- return (
-
-
- {strings.sanchoFaucetBannerTitle}
-
-
-
-
-
-
-
-
- {strings.sanchoFaucetBannerText}
-
-
-
-
-
-
-
-
-
-
-
- )
-}
-
-const useStyles = () => {
- const {color, atoms} = useTheme()
- const styles = StyleSheet.create({
- gradient: {
- ...atoms.flex_1,
- opacity: 1,
- borderRadius: 8,
- ...atoms.flex_col,
- },
- viewTitle: {
- ...atoms.flex_row,
- ...atoms.justify_between,
- ...atoms.flex_1,
- ...atoms.px_lg,
- ...atoms.pt_md,
- },
- title: {
- ...atoms.body_1_lg_medium,
- color: color.gray_max,
- ...atoms.flex_wrap,
- ...atoms.flex_shrink,
- },
- content: {
- position: 'relative',
- ...atoms.flex_1,
- ...atoms.px_lg,
- ...atoms.pb_lg,
- },
- contentInner: {
- ...atoms.flex_1,
- },
- logo: {
- position: 'absolute',
- bottom: 0,
- right: 0,
- },
- text: {
- ...atoms.body_2_md_regular,
- color: color.gray_max,
- maxWidth: 270,
- },
- spaceButton: {
- maxWidth: 180,
- },
- })
- const colors = {
- gradientColor: color.bg_gradient_1,
- gray: color.gray_max,
- }
- return {styles, colors} as const
-}
diff --git a/apps/wallet-mobile/src/features/Exchange/common/ShowBuyBanner/ShowBuyBanner.tsx b/apps/wallet-mobile/src/features/Exchange/common/ShowBuyBanner/ShowBuyBanner.tsx
index 8df63e337a..aea314433e 100644
--- a/apps/wallet-mobile/src/features/Exchange/common/ShowBuyBanner/ShowBuyBanner.tsx
+++ b/apps/wallet-mobile/src/features/Exchange/common/ShowBuyBanner/ShowBuyBanner.tsx
@@ -12,7 +12,6 @@ import {useShowBuyBannerSmall} from '../useShowBuyBannerSmall'
import {BuyBannerBig} from './BuyBannerBig'
import {BuyBannerSmall} from './BuyBannerSmall'
import {PreprodFaucetBanner} from './PreprodFaucetBanner'
-import {SanchonetFaucetBanner} from './SanchonetFaucetBanner'
export const ShowBuyBanner = () => {
const {wallet} = useSelectedWallet()
@@ -33,9 +32,6 @@ export const ShowBuyBanner = () => {
case hasZeroPt && hasZeroTx && network === Chain.Network.Preprod:
banner =
break
- case hasZeroPt && hasZeroTx && network === Chain.Network.Sancho:
- banner =
- break
case hasZeroPt && hasZeroTx:
banner =
break
diff --git a/apps/wallet-mobile/src/features/Exchange/common/useStrings.tsx b/apps/wallet-mobile/src/features/Exchange/common/useStrings.tsx
index 22b3b65c94..61d7ec1403 100644
--- a/apps/wallet-mobile/src/features/Exchange/common/useStrings.tsx
+++ b/apps/wallet-mobile/src/features/Exchange/common/useStrings.tsx
@@ -39,15 +39,9 @@ export const useStrings = () => {
preprodFaucetBannerTitle: intl.formatMessage(messages.preprodFaucetBannerTitle),
preprodFaucetBannerText: intl.formatMessage(messages.preprodFaucetBannerText),
preprodFaucetBannerButtonText: intl.formatMessage(messages.preprodFaucetBannerButtonText),
- sanchoFaucetBannerTitle: intl.formatMessage(messages.sanchoFaucetBannerTitle),
- sanchoFaucetBannerText: intl.formatMessage(messages.sanchoFaucetBannerText),
- sanchoFaucetBannerButtonText: intl.formatMessage(messages.sanchoFaucetBannerButtonText),
createOrderPreprodFaucetButtonText: intl.formatMessage(messages.createOrderPreprodFaucetButtonText),
createOrderPreprodNoticeTitle: intl.formatMessage(messages.createOrderPreprodNoticeTitle),
createOrderPreprodNoticeText: intl.formatMessage(messages.createOrderPreprodNoticeText),
- createOrderSanchonetFaucetButtonText: intl.formatMessage(messages.createOrderSanchonetFaucetButtonText),
- createOrderSanchonetNoticeTitle: intl.formatMessage(messages.createOrderSanchonetNoticeTitle),
- createOrderSanchonetNoticeText: intl.formatMessage(messages.createOrderSanchonetNoticeText),
playground: intl.formatMessage(messages.playground),
close: intl.formatMessage(globalMessages.close),
error: intl.formatMessage(globalMessages.error),
@@ -188,18 +182,6 @@ const messages = Object.freeze(
id: 'rampOnOff.createRampOnOff.preprodfaucetbanner.button.text',
defaultMessage: '!!!Go to tada faucet',
},
- sanchoFaucetBannerTitle: {
- id: 'rampOnOff.createRampOnOff.sanchofaucetbanner.title',
- defaultMessage: '!!!Learn Cardano with test ADA ⭐️',
- },
- sanchoFaucetBannerText: {
- id: 'rampOnOff.createRampOnOff.sanchofaucetbanner.text',
- defaultMessage: `!!!Get started with Cardano's test currency, TADA. It's your key to testing a new world of possibilities.`,
- },
- sanchoFaucetBannerButtonText: {
- id: 'rampOnOff.createRampOnOff.sanchofaucetbanner.button.text',
- defaultMessage: '!!!Go to tada faucet',
- },
createOrderPreprodFaucetButtonText: {
id: 'rampOnOff.createRampOnOff.createorder.preprodfaucet.button.text',
defaultMessage: '!!!Add test ada',
@@ -212,18 +194,6 @@ const messages = Object.freeze(
id: 'rampOnOff.createRampOnOff.createorder.preprodnotice.text',
defaultMessage: '!!!Switch network or top up your testnet network wallet with the free Cardano faucet',
},
- createOrderSanchonetFaucetButtonText: {
- id: 'rampOnOff.createRampOnOff.createorder.sanchofaucet.button.text',
- defaultMessage: '!!!Add test ada',
- },
- createOrderSanchonetNoticeTitle: {
- id: 'rampOnOff.createRampOnOff.createorder.sanchonotice.title',
- defaultMessage: '!!!ADA purchases can only be made on the mainnet',
- },
- createOrderSanchonetNoticeText: {
- id: 'rampOnOff.createRampOnOff.createorder.sanchonotice.text',
- defaultMessage: '!!!Switch network or top up your testnet network wallet with the free Cardano faucet',
- },
playground: {
id: 'rampOnOff.createRampOnOff.createorder.playground',
defaultMessage: '!!!Playground',
diff --git a/apps/wallet-mobile/src/features/Exchange/useCases/CreateExchangeOrderScreen/CreateExchangeButton/CreateExchangeButton.tsx b/apps/wallet-mobile/src/features/Exchange/useCases/CreateExchangeOrderScreen/CreateExchangeButton/CreateExchangeButton.tsx
index 04a3f36e10..7615ad3081 100644
--- a/apps/wallet-mobile/src/features/Exchange/useCases/CreateExchangeOrderScreen/CreateExchangeButton/CreateExchangeButton.tsx
+++ b/apps/wallet-mobile/src/features/Exchange/useCases/CreateExchangeOrderScreen/CreateExchangeButton/CreateExchangeButton.tsx
@@ -25,16 +25,9 @@ export const CreateExchangeButton = ({
} = useWalletManager()
const isPreprod = network === Chain.Network.Preprod
- const isSancho = network === Chain.Network.Sancho
const isBuy = orderType === 'buy'
- const title = isBuy
- ? isPreprod
- ? strings.createOrderPreprodFaucetButtonText
- : isSancho
- ? strings.createOrderSanchonetFaucetButtonText
- : strings.proceed
- : strings.proceed
+ const title = isBuy ? (isPreprod ? strings.createOrderPreprodFaucetButtonText : strings.proceed) : strings.proceed
const handleOnPress = () => {
if (isPreprod && isBuy) {
@@ -42,11 +35,6 @@ export const CreateExchangeButton = ({
return
}
- if (isSancho && isBuy) {
- handleOnPressOnSanchonet()
- return
- }
-
onPress()
}
@@ -61,10 +49,6 @@ const handleOnPressOnPreprod = () => {
Linking.openURL('https://docs.cardano.org/cardano-testnets/tools/faucet/')
}
-const handleOnPressOnSanchonet = () => {
- Linking.openURL('https://sancho.network/faucet/')
-}
-
const useStyles = () => {
const {atoms} = useTheme()
const styles = StyleSheet.create({
diff --git a/apps/wallet-mobile/src/features/Exchange/useCases/CreateExchangeOrderScreen/CreateExchangeOrderScreen.tsx b/apps/wallet-mobile/src/features/Exchange/useCases/CreateExchangeOrderScreen/CreateExchangeOrderScreen.tsx
index ec5a722d28..3a25c8bf98 100644
--- a/apps/wallet-mobile/src/features/Exchange/useCases/CreateExchangeOrderScreen/CreateExchangeOrderScreen.tsx
+++ b/apps/wallet-mobile/src/features/Exchange/useCases/CreateExchangeOrderScreen/CreateExchangeOrderScreen.tsx
@@ -135,12 +135,10 @@ export const CreateExchangeOrderScreen = () => {
// on Preprod it launches the faucet when buying
// selling is enabled for both and launch the sandbox
- const isSancho = network === Chain.Network.Sancho
const isPreprod = network === Chain.Network.Preprod
- const isBlocked = isSancho && orderType === 'buy'
- const exchangeDisabled = isLoading || (wallet.isMainnet && !canExchange) || isBlocked
+ const exchangeDisabled = isLoading || (wallet.isMainnet && !canExchange)
- const feeText = (isPreprod || isSancho) && orderType === 'sell' ? strings.playground : `${fee}% ${strings.fee}`
+ const feeText = isPreprod && orderType === 'sell' ? strings.playground : `${fee}% ${strings.fee}`
return (
diff --git a/apps/wallet-mobile/src/features/Exchange/useCases/CreateExchangeOrderScreen/EditAmount/EditAmount.tsx b/apps/wallet-mobile/src/features/Exchange/useCases/CreateExchangeOrderScreen/EditAmount/EditAmount.tsx
index a643e72e1a..5e16337a0a 100644
--- a/apps/wallet-mobile/src/features/Exchange/useCases/CreateExchangeOrderScreen/EditAmount/EditAmount.tsx
+++ b/apps/wallet-mobile/src/features/Exchange/useCases/CreateExchangeOrderScreen/EditAmount/EditAmount.tsx
@@ -20,7 +20,6 @@ export const EditAmount = ({disabled}: {disabled?: boolean}) => {
} = useWalletManager()
const isPreprod = network === Chain.Network.Preprod
- const isSancho = network === Chain.Network.Sancho
const {wallet} = useSelectedWallet()
const balance = usePortfolioPrimaryBalance({wallet})
@@ -72,7 +71,7 @@ export const EditAmount = ({disabled}: {disabled?: boolean}) => {
],
)
- if (isPreprod || isSancho) return null
+ if (isPreprod) return null
return (
<>
diff --git a/apps/wallet-mobile/src/features/Exchange/useCases/CreateExchangeOrderScreen/ShowDisclaimer/ShowDisclaimer.tsx b/apps/wallet-mobile/src/features/Exchange/useCases/CreateExchangeOrderScreen/ShowDisclaimer/ShowDisclaimer.tsx
index 86f3e7a9d0..e402acbf62 100644
--- a/apps/wallet-mobile/src/features/Exchange/useCases/CreateExchangeOrderScreen/ShowDisclaimer/ShowDisclaimer.tsx
+++ b/apps/wallet-mobile/src/features/Exchange/useCases/CreateExchangeOrderScreen/ShowDisclaimer/ShowDisclaimer.tsx
@@ -19,12 +19,11 @@ export const ShowDisclaimer = () => {
const {orderType} = useExchange()
const isPreprod = network === Chain.Network.Preprod
- const isSancho = network === Chain.Network.Sancho
- if ((isPreprod || isSancho) && orderType === 'buy') return null
+ if (isPreprod && orderType === 'buy') return null
const contentDisclaimer =
- (isPreprod || isSancho) && orderType === 'sell' ? strings.contentDisclaimerPreprod : strings.contentDisclaimer
+ isPreprod && orderType === 'sell' ? strings.contentDisclaimerPreprod : strings.contentDisclaimer
return (
<>
diff --git a/apps/wallet-mobile/src/features/Exchange/useCases/CreateExchangeOrderScreen/ShowPreprodNotice/ShowPreprodNotice.tsx b/apps/wallet-mobile/src/features/Exchange/useCases/CreateExchangeOrderScreen/ShowPreprodNotice/ShowPreprodNotice.tsx
index c72faf6984..c092ffcc92 100644
--- a/apps/wallet-mobile/src/features/Exchange/useCases/CreateExchangeOrderScreen/ShowPreprodNotice/ShowPreprodNotice.tsx
+++ b/apps/wallet-mobile/src/features/Exchange/useCases/CreateExchangeOrderScreen/ShowPreprodNotice/ShowPreprodNotice.tsx
@@ -18,9 +18,8 @@ export const ShowPreprodNotice = () => {
const {orderType} = useExchange()
const isPreprod = network === Chain.Network.Preprod
- const isSancho = network === Chain.Network.Sancho
- if ((isPreprod || isSancho) && orderType === 'buy')
+ if (isPreprod && orderType === 'buy')
return (
diff --git a/apps/wallet-mobile/src/features/Portfolio/common/helpers/build-token-managers.ts b/apps/wallet-mobile/src/features/Portfolio/common/helpers/build-token-managers.ts
index 8f81e1a40f..7763c57068 100644
--- a/apps/wallet-mobile/src/features/Portfolio/common/helpers/build-token-managers.ts
+++ b/apps/wallet-mobile/src/features/Portfolio/common/helpers/build-token-managers.ts
@@ -28,19 +28,16 @@ const buildPortfolioTokenManager = ({network}: {network: Chain.SupportedNetworks
export const buildPortfolioTokenManagers = () => {
const mainnetPortfolioTokenManager = buildPortfolioTokenManager({network: Chain.Network.Mainnet})
const preprodPortfolioTokenManager = buildPortfolioTokenManager({network: Chain.Network.Preprod})
- const sanchoPortfolioTokenManager = buildPortfolioTokenManager({network: Chain.Network.Sancho})
const previewPortfolioTokenManager = buildPortfolioTokenManager({network: Chain.Network.Preview})
const tokenManagers: Readonly<{
[Chain.Network.Mainnet]: Portfolio.Manager.Token
[Chain.Network.Preprod]: Portfolio.Manager.Token
- [Chain.Network.Sancho]: Portfolio.Manager.Token
[Chain.Network.Preview]: Portfolio.Manager.Token
}> = freeze(
{
[Chain.Network.Mainnet]: mainnetPortfolioTokenManager.tokenManager,
[Chain.Network.Preprod]: preprodPortfolioTokenManager.tokenManager,
- [Chain.Network.Sancho]: sanchoPortfolioTokenManager.tokenManager,
[Chain.Network.Preview]: previewPortfolioTokenManager.tokenManager,
},
true,
@@ -49,13 +46,11 @@ export const buildPortfolioTokenManagers = () => {
const tokenStorages: Readonly<{
[Chain.Network.Mainnet]: App.Storage
[Chain.Network.Preprod]: App.Storage
- [Chain.Network.Sancho]: App.Storage
[Chain.Network.Preview]: App.Storage
}> = freeze(
{
[Chain.Network.Mainnet]: mainnetPortfolioTokenManager.storage,
[Chain.Network.Preprod]: preprodPortfolioTokenManager.storage,
- [Chain.Network.Sancho]: sanchoPortfolioTokenManager.storage,
[Chain.Network.Preview]: previewPortfolioTokenManager.storage,
},
true,
diff --git a/apps/wallet-mobile/src/features/Portfolio/common/hooks/useNavigateTo.tsx b/apps/wallet-mobile/src/features/Portfolio/common/hooks/useNavigateTo.tsx
index 083f4277d4..e991186c32 100644
--- a/apps/wallet-mobile/src/features/Portfolio/common/hooks/useNavigateTo.tsx
+++ b/apps/wallet-mobile/src/features/Portfolio/common/hooks/useNavigateTo.tsx
@@ -35,10 +35,6 @@ export const useNavigateTo = () => {
navigation.navigate('history', {
screen: 'swap-preprod-notice',
}),
- swapSanchoNotice: () =>
- navigation.navigate('history', {
- screen: 'swap-sancho-notice',
- }),
buyAda: () => navigation.navigate('history', {screen: 'exchange-create-order'}),
} as const).current
}
diff --git a/apps/wallet-mobile/src/features/Portfolio/useCases/PortfolioDashboard/DashboardTokensList/DashboardTokensList.tsx b/apps/wallet-mobile/src/features/Portfolio/useCases/PortfolioDashboard/DashboardTokensList/DashboardTokensList.tsx
index ce5754c666..0a2925bbcb 100644
--- a/apps/wallet-mobile/src/features/Portfolio/useCases/PortfolioDashboard/DashboardTokensList/DashboardTokensList.tsx
+++ b/apps/wallet-mobile/src/features/Portfolio/useCases/PortfolioDashboard/DashboardTokensList/DashboardTokensList.tsx
@@ -7,7 +7,6 @@ import {FlatList, StyleSheet, Text, TouchableOpacity, useWindowDimensions, View}
import {Icon} from '../../../../../components/Icon'
import {Spacer} from '../../../../../components/Spacer/Spacer'
import {PreprodFaucetBanner} from '../../../../Exchange/common/ShowBuyBanner/PreprodFaucetBanner'
-import {SanchonetFaucetBanner} from '../../../../Exchange/common/ShowBuyBanner/SanchonetFaucetBanner'
import {useSelectedWallet} from '../../../../WalletManager/common/hooks/useSelectedWallet'
import {useWalletManager} from '../../../../WalletManager/context/WalletManagerProvider'
import {useNavigateTo} from '../../../common/hooks/useNavigateTo'
@@ -29,7 +28,6 @@ export const DashboardTokensList = () => {
} = useWalletManager()
const isPreprod = network === Chain.Network.Preprod
- const isSancho = network === Chain.Network.Sancho
const tokensList = React.useMemo(() => balances.fts ?? [], [balances.fts])
const isJustADA = React.useMemo(() => {
@@ -47,11 +45,7 @@ export const DashboardTokensList = () => {
const renderTokensList = () => {
if (isZeroADABalance) {
- return (
-
- {isPreprod ? : isSancho ? : }
-
- )
+ return {isPreprod ? : }
}
if (isJustADA) {
diff --git a/apps/wallet-mobile/src/features/Portfolio/useCases/PortfolioTokenDetails/Actions.tsx b/apps/wallet-mobile/src/features/Portfolio/useCases/PortfolioTokenDetails/Actions.tsx
index 7e8455ea56..2d76676a6a 100644
--- a/apps/wallet-mobile/src/features/Portfolio/useCases/PortfolioTokenDetails/Actions.tsx
+++ b/apps/wallet-mobile/src/features/Portfolio/useCases/PortfolioTokenDetails/Actions.tsx
@@ -32,7 +32,6 @@ export const Actions = ({tokenInfo}: Props) => {
const handleOnSwap = () => {
if (network === Chain.Network.Preprod) return navigateTo.swapPreprodNotice()
- if (network === Chain.Network.Sancho) return navigateTo.swapSanchoNotice()
swapForm.resetSwapForm()
diff --git a/apps/wallet-mobile/src/features/Portfolio/useCases/PortfolioTokensList/PortfolioWalletTokenList/PortfolioWalletTokenList.tsx b/apps/wallet-mobile/src/features/Portfolio/useCases/PortfolioTokensList/PortfolioWalletTokenList/PortfolioWalletTokenList.tsx
index bf63f5206c..a9e115c066 100644
--- a/apps/wallet-mobile/src/features/Portfolio/useCases/PortfolioTokensList/PortfolioWalletTokenList/PortfolioWalletTokenList.tsx
+++ b/apps/wallet-mobile/src/features/Portfolio/useCases/PortfolioTokensList/PortfolioWalletTokenList/PortfolioWalletTokenList.tsx
@@ -9,7 +9,6 @@ import {Spacer} from '../../../../../components/Spacer/Spacer'
import {useMetrics} from '../../../../../kernel/metrics/metricsManager'
import {makeList} from '../../../../../kernel/utils'
import {PreprodFaucetBanner} from '../../../../Exchange/common/ShowBuyBanner/PreprodFaucetBanner'
-import {SanchonetFaucetBanner} from '../../../../Exchange/common/ShowBuyBanner/SanchonetFaucetBanner'
import {useSearch} from '../../../../Search/SearchContext'
import {useSelectedWallet} from '../../../../WalletManager/common/hooks/useSelectedWallet'
import {useWalletManager} from '../../../../WalletManager/context/WalletManagerProvider'
@@ -90,7 +89,6 @@ export const PortfolioWalletTokenList = () => {
}, [isSearching, search, track])
const isPreprod = network === Chain.Network.Preprod
- const isSancho = network === Chain.Network.Sancho
const renderFooterList = () => {
if (isSearching) return null
@@ -110,7 +108,7 @@ export const PortfolioWalletTokenList = () => {
- {isPreprod ? : isSancho ? : }
+ {isPreprod ? : }
)
}
diff --git a/apps/wallet-mobile/src/features/Settings/useCases/changeAppSettings/ChangeNetwork/NetworkTag.tsx b/apps/wallet-mobile/src/features/Settings/useCases/changeAppSettings/ChangeNetwork/NetworkTag.tsx
index 8bca4700af..ff87565efd 100644
--- a/apps/wallet-mobile/src/features/Settings/useCases/changeAppSettings/ChangeNetwork/NetworkTag.tsx
+++ b/apps/wallet-mobile/src/features/Settings/useCases/changeAppSettings/ChangeNetwork/NetworkTag.tsx
@@ -37,8 +37,7 @@ export const NetworkTag = ({
const strings = useStrings()
const {track} = useMetrics()
- const Tag =
- selectedNetwork === Chain.Network.Sancho ? SanchoTag : selectedNetwork === Chain.Network.Preprod ? PreprodTag : null
+ const Tag = selectedNetwork === Chain.Network.Preprod ? PreprodTag : null
const onPress = () => {
if (directChangeActive && selectedNetwork !== Chain.Network.Mainnet) {
@@ -104,17 +103,6 @@ const PreprodTag = ({onPress, disabled}: {onPress: () => void; disabled: boolean
)
}
-const SanchoTag = ({onPress, disabled}: {onPress: () => void; disabled: boolean}) => {
- const {styles} = useStyles()
- const {name} = networkConfigs[Chain.Network.Sancho]
-
- return (
-
- {name}
-
- )
-}
-
const MainnetWarningDialog = ({onCancel, onOk}: {onCancel: () => void; onOk: () => void}) => {
const {styles} = useStyles()
const strings = useStrings()
@@ -162,12 +150,6 @@ const useStyles = () => {
...atoms.px_sm,
...atoms.py_xs,
},
- sanchonetLabel: {
- backgroundColor: color.el_secondary,
- ...atoms.rounded_full,
- ...atoms.px_sm,
- ...atoms.py_xs,
- },
warningModal: {
...atoms.px_lg,
...atoms.flex_1,
diff --git a/apps/wallet-mobile/src/features/SetupWallet/common/useStrings.tsx b/apps/wallet-mobile/src/features/SetupWallet/common/useStrings.tsx
index 843a1b9240..c8351960e8 100644
--- a/apps/wallet-mobile/src/features/SetupWallet/common/useStrings.tsx
+++ b/apps/wallet-mobile/src/features/SetupWallet/common/useStrings.tsx
@@ -23,10 +23,8 @@ export const useStrings = () => {
connectWalletButtonCard: intl.formatMessage(messages.connectWalletButtonCard),
cardanoMainnet: intl.formatMessage(messages.cardanoMainnet),
cardanoTestnet: intl.formatMessage(messages.cardanoTestnet),
- cardanoSanchonet: intl.formatMessage(messages.cardanoSanchonet),
cardanoMainnetDescription: intl.formatMessage(messages.cardanoMainnetDescription),
cardanoTestnetDescription: intl.formatMessage(messages.cardanoTestnetDescription),
- cardanoSanchonetDescription: intl.formatMessage(messages.cardanoSanchonetDescription),
continueButton: intl.formatMessage(messages.continueButton),
next: intl.formatMessage(messages.next),
@@ -180,10 +178,6 @@ const messages = Object.freeze(
id: 'components.walletinit.walletinitmenu.cardanoTestnetbutton.title',
defaultMessage: '!!!Cardano Preprod Testnet',
},
- cardanoSanchonet: {
- id: 'components.walletinit.walletinitmenu.cardanoSanchonetbutton.title',
- defaultMessage: '!!!Cardano SanchoNet',
- },
cardanoMainnetDescription: {
id: 'components.walletinit.walletinitmenu.cardanoMainnetbutton.description',
defaultMessage: '!!!Works with real ADA',
@@ -192,10 +186,6 @@ const messages = Object.freeze(
id: 'components.walletinit.walletinitmenu.cardanoTestnetbutton.description',
defaultMessage: '!!!Works with test ADA (tADA)',
},
- cardanoSanchonetDescription: {
- id: 'components.walletinit.walletinitmenu.cardanoSanchonetbutton.description',
- defaultMessage: '!!!Testnet for rolling out governance',
- },
aboutRecoveryPhraseTitle: {
id: 'components.walletinit.aboutRecoveryPhrase.aboutRecoveryPhrase.title',
defaultMessage: '!!!Read this information carefully before saving your recovery phrase:',
diff --git a/apps/wallet-mobile/src/features/Staking/Governance/useCases/NoFunds/NoFundsScreen.tsx b/apps/wallet-mobile/src/features/Staking/Governance/useCases/NoFunds/NoFundsScreen.tsx
index 58d2f54c9f..f92a8463b7 100644
--- a/apps/wallet-mobile/src/features/Staking/Governance/useCases/NoFunds/NoFundsScreen.tsx
+++ b/apps/wallet-mobile/src/features/Staking/Governance/useCases/NoFunds/NoFundsScreen.tsx
@@ -24,13 +24,8 @@ export const NoFundsScreen = () => {
} = useWalletManager()
const handleOnTryAgain = () => {
- if (network === Chain.Network.Sancho) {
- Linking.openURL('https://sancho.network/faucet/')
- return
- }
-
if (network === Chain.Network.Preprod) {
- Linking.openURL('https://sancho.network/faucet/')
+ Linking.openURL('https://docs.cardano.org/cardano-testnets/tools/faucet/')
return
}
diff --git a/apps/wallet-mobile/src/features/Swap/common/strings.ts b/apps/wallet-mobile/src/features/Swap/common/strings.ts
index 2fc173ebbb..62806fa02f 100644
--- a/apps/wallet-mobile/src/features/Swap/common/strings.ts
+++ b/apps/wallet-mobile/src/features/Swap/common/strings.ts
@@ -161,8 +161,6 @@ export const useStrings = () => {
backToSwapOrders: intl.formatMessage(messages.backToSwapOrders),
preprodNoticeTitle: intl.formatMessage(messages.preprodNoticeTitle),
preprodNoticeText: intl.formatMessage(messages.preprodNoticeText),
- sanchoNoticeTitle: intl.formatMessage(messages.sanchoNoticeTitle),
- sanchoNoticeText: intl.formatMessage(messages.sanchoNoticeText),
}
}
@@ -286,14 +284,6 @@ const messages = defineMessages({
id: 'swap.swapScreen.preprodNoticeText',
defaultMessage: `!!!Switch to mainnet if you want to use the feature and swap real tokens`,
},
- sanchoNoticeTitle: {
- id: 'swap.swapScreen.sanchoNoticeTitle',
- defaultMessage: `!!!Swap is not available on sanchonet`,
- },
- sanchoNoticeText: {
- id: 'swap.swapScreen.sanchoNoticeText',
- defaultMessage: `!!!Switch to mainnet if you want to use the feature and swap real tokens`,
- },
swapFeesTitle: {
id: 'swap.swapScreen.swapFeesTitle',
defaultMessage: `!!!Fees`,
diff --git a/apps/wallet-mobile/src/features/Swap/useCases/ShowSanchoNoticeScreen/ShowSanchoNoticeScreen.stories.tsx b/apps/wallet-mobile/src/features/Swap/useCases/ShowSanchoNoticeScreen/ShowSanchoNoticeScreen.stories.tsx
deleted file mode 100644
index 6839ea5ff6..0000000000
--- a/apps/wallet-mobile/src/features/Swap/useCases/ShowSanchoNoticeScreen/ShowSanchoNoticeScreen.stories.tsx
+++ /dev/null
@@ -1,8 +0,0 @@
-import {storiesOf} from '@storybook/react-native'
-import React from 'react'
-
-import {ShowSanchoNoticeScreen} from './ShowSanchoNoticeScreen'
-
-storiesOf('Swap Preprod Notice Screen', module).add('initial', () => {
- return
-})
diff --git a/apps/wallet-mobile/src/features/Swap/useCases/ShowSanchoNoticeScreen/ShowSanchoNoticeScreen.tsx b/apps/wallet-mobile/src/features/Swap/useCases/ShowSanchoNoticeScreen/ShowSanchoNoticeScreen.tsx
deleted file mode 100644
index 5b5e2bf1d6..0000000000
--- a/apps/wallet-mobile/src/features/Swap/useCases/ShowSanchoNoticeScreen/ShowSanchoNoticeScreen.tsx
+++ /dev/null
@@ -1,48 +0,0 @@
-import {useTheme} from '@yoroi/theme'
-import * as React from 'react'
-import {StyleSheet, Text} from 'react-native'
-
-import {SafeArea} from '../../../../components/SafeArea'
-import {PreprodNoticeScreenLogo} from '../../common/Illustrations/PreprodNoticeScreenLogo'
-import {useStrings} from '../../common/strings'
-
-export const ShowSanchoNoticeScreen = () => {
- const {styles} = useStyles()
- const strings = useStrings()
-
- return (
-
-
-
- {strings.sanchoNoticeTitle}
-
- {strings.sanchoNoticeText}
-
- )
-}
-
-const useStyles = () => {
- const {atoms, color} = useTheme()
- const styles = StyleSheet.create({
- container: {
- backgroundColor: color.bg_color_max,
- ...atoms.p_lg,
- flex: 1,
- alignItems: 'center',
- justifyContent: 'center',
- },
- title: {
- color: color.gray_900,
- ...atoms.heading_3_medium,
- ...atoms.px_sm,
- textAlign: 'center',
- },
- text: {
- color: color.text_gray_medium,
- ...atoms.body_1_lg_regular,
- textAlign: 'center',
- maxWidth: 300,
- },
- })
- return {styles}
-}
diff --git a/apps/wallet-mobile/src/features/Transactions/TxHistoryNavigator.tsx b/apps/wallet-mobile/src/features/Transactions/TxHistoryNavigator.tsx
index f776390702..90f6f1226c 100644
--- a/apps/wallet-mobile/src/features/Transactions/TxHistoryNavigator.tsx
+++ b/apps/wallet-mobile/src/features/Transactions/TxHistoryNavigator.tsx
@@ -46,7 +46,6 @@ import {
} from '../Swap/useCases'
import {ReviewSwap} from '../Swap/useCases/ReviewSwap/ReviewSwap'
import {ShowPreprodNoticeScreen} from '../Swap/useCases/ShowPreprodNoticeScreen/ShowPreprodNoticeScreen'
-import {ShowSanchoNoticeScreen} from '../Swap/useCases/ShowSanchoNoticeScreen/ShowSanchoNoticeScreen'
import {SelectBuyTokenFromListScreen} from '../Swap/useCases/StartOrderSwapScreen/CreateOrder/EditBuyAmount/SelectBuyTokenFromListScreen/SelectBuyTokenFromListScreen'
import {SelectSellTokenFromListScreen} from '../Swap/useCases/StartOrderSwapScreen/CreateOrder/EditSellAmount/SelectSellTokenFromListScreen/SelectSellTokenFromListScreen'
import {useSelectedWallet} from '../WalletManager/common/hooks/useSelectedWallet'
@@ -232,15 +231,6 @@ export const TxHistoryNavigator = () => {
}}
/>
-
-
{
const intl = useIntl()
const {id} = useRoute().params as Params
const {wallet} = useSelectedWallet()
- const {
- selected: {network},
- } = useWalletManager()
const explorers = wallet.networkManager.explorers
const internalAddressIndex = fromPairs(wallet.internalAddresses.map((addr, i) => [addr, i]))
const externalAddressIndex = fromPairs(wallet.externalAddresses.map((addr, i) => [addr, i]))
@@ -182,14 +177,12 @@ export const TxDetails = () => {
- {network !== Chain.Network.Sancho && (
-
-
- )}
+
+
)
diff --git a/apps/wallet-mobile/src/features/Transactions/useCases/TxHistory/ActionsBanner.tsx b/apps/wallet-mobile/src/features/Transactions/useCases/TxHistory/ActionsBanner.tsx
index b4a4913773..8cdc08ccc8 100644
--- a/apps/wallet-mobile/src/features/Transactions/useCases/TxHistory/ActionsBanner.tsx
+++ b/apps/wallet-mobile/src/features/Transactions/useCases/TxHistory/ActionsBanner.tsx
@@ -58,11 +58,6 @@ export const ActionsBanner = ({disabled = false}: {disabled: boolean}) => {
return
}
- if (network === Chain.Network.Sancho) {
- navigateTo.swapSanchoNotice()
- return
- }
-
resetSwapForm()
track.swapInitiated({
@@ -199,7 +194,6 @@ const useNavigateTo = () => {
receiveMultipleAddresses: () => navigation.navigate('receive-multiple'),
swap: () => navigation.navigate('swap-start-swap', {screen: 'token-swap'}),
swapPreprodNotice: () => navigation.navigate('swap-preprod-notice'),
- swapSanchoNotice: () => navigation.navigate('swap-sancho-notice'),
exchange: () => navigation.navigate('exchange-create-order'),
}
}
diff --git a/apps/wallet-mobile/src/features/WalletManager/common/constants.ts b/apps/wallet-mobile/src/features/WalletManager/common/constants.ts
index 7b7d195a0a..49aea7fc8e 100644
--- a/apps/wallet-mobile/src/features/WalletManager/common/constants.ts
+++ b/apps/wallet-mobile/src/features/WalletManager/common/constants.ts
@@ -14,11 +14,7 @@ export const implementations: ReadonlyArray = freeze([
const {tokenManagers} = buildPortfolioTokenManagers()
export const networkManagers = buildNetworkManagers({tokenManagers})
-const supportedNetworksDev: Array = freeze([
- Chain.Network.Mainnet,
- Chain.Network.Preprod,
- Chain.Network.Sancho,
-])
+const supportedNetworksDev: Array = freeze([Chain.Network.Mainnet, Chain.Network.Preprod])
const supportedNetworksProd: Array = freeze([Chain.Network.Mainnet, Chain.Network.Preprod])
diff --git a/apps/wallet-mobile/src/features/WalletManager/network-manager/helpers/get-wallet-factory.test.ts b/apps/wallet-mobile/src/features/WalletManager/network-manager/helpers/get-wallet-factory.test.ts
index aa5a85e195..24865bd994 100644
--- a/apps/wallet-mobile/src/features/WalletManager/network-manager/helpers/get-wallet-factory.test.ts
+++ b/apps/wallet-mobile/src/features/WalletManager/network-manager/helpers/get-wallet-factory.test.ts
@@ -25,15 +25,6 @@ describe('getWalletFactory', () => {
expect(result).toBeDefined()
})
- it('should return the correct wallet factory for Sancho', () => {
- const network = Chain.Network.Sancho
- const implementation: Wallet.Implementation = 'cardano-cip1852'
-
- const result = getWalletFactory({network, implementation})
-
- expect(result).toBeDefined()
- })
-
it('should return the correct wallet factory for Mainnet with implementation "haskell-byron"', () => {
const network = Chain.Network.Mainnet
const implementation: Wallet.Implementation = 'cardano-bip44'
diff --git a/apps/wallet-mobile/src/features/WalletManager/network-manager/helpers/get-wallet-factory.ts b/apps/wallet-mobile/src/features/WalletManager/network-manager/helpers/get-wallet-factory.ts
index bee0c71573..04eb83d955 100644
--- a/apps/wallet-mobile/src/features/WalletManager/network-manager/helpers/get-wallet-factory.ts
+++ b/apps/wallet-mobile/src/features/WalletManager/network-manager/helpers/get-wallet-factory.ts
@@ -8,11 +8,9 @@ import {WalletFactory} from '../../common/types'
const ShelleyWalletMainnet = makeCardanoWallet(networkManagers[Chain.Network.Mainnet], 'cardano-cip1852')
const ShelleyWalletTestnet = makeCardanoWallet(networkManagers[Chain.Network.Preprod], 'cardano-cip1852')
-const ShelleySanchonetWallet = makeCardanoWallet(networkManagers[Chain.Network.Sancho], 'cardano-cip1852')
const ShelleyPreviewWallet = makeCardanoWallet(networkManagers[Chain.Network.Preview], 'cardano-cip1852')
const ByronWallet = makeCardanoWallet(networkManagers[Chain.Network.Mainnet], 'cardano-bip44')
const ByronWalletTestnet = makeCardanoWallet(networkManagers[Chain.Network.Preprod], 'cardano-bip44')
-const ByronSanchonetWallet = makeCardanoWallet(networkManagers[Chain.Network.Sancho], 'cardano-bip44')
const ByronPreviewWallet = makeCardanoWallet(networkManagers[Chain.Network.Preview], 'cardano-bip44')
/**
@@ -40,10 +38,6 @@ export function getWalletFactory({
'cardano-cip1852': ShelleyWalletTestnet,
'cardano-bip44': ByronWalletTestnet,
},
- [Chain.Network.Sancho]: /* cardano sanchonet */ {
- 'cardano-cip1852': ShelleySanchonetWallet,
- 'cardano-bip44': ByronSanchonetWallet,
- },
[Chain.Network.Preview]: /* cardano preview */ {
'cardano-cip1852': ShelleyPreviewWallet,
'cardano-bip44': ByronPreviewWallet,
diff --git a/apps/wallet-mobile/src/features/WalletManager/network-manager/helpers/to-chain-supported-network.test.ts b/apps/wallet-mobile/src/features/WalletManager/network-manager/helpers/to-chain-supported-network.test.ts
index 4e6a1fdea9..53b5bc8b28 100644
--- a/apps/wallet-mobile/src/features/WalletManager/network-manager/helpers/to-chain-supported-network.test.ts
+++ b/apps/wallet-mobile/src/features/WalletManager/network-manager/helpers/to-chain-supported-network.test.ts
@@ -11,10 +11,6 @@ describe('toChainSupportedNetwork', () => {
expect(toChainSupportedNetwork(1)).toBe(Chain.Network.Mainnet)
})
- it('should return Chain.Network.Sancho for networkId 450', () => {
- expect(toChainSupportedNetwork(450)).toBe(Chain.Network.Sancho)
- })
-
it('should return Chain.Network.Preprod for unknown networkId', () => {
expect(toChainSupportedNetwork(999 as never)).toBe(Chain.Network.Preprod)
})
diff --git a/apps/wallet-mobile/src/features/WalletManager/network-manager/helpers/to-chain-supported-network.ts b/apps/wallet-mobile/src/features/WalletManager/network-manager/helpers/to-chain-supported-network.ts
index efb9584061..721831bcef 100644
--- a/apps/wallet-mobile/src/features/WalletManager/network-manager/helpers/to-chain-supported-network.ts
+++ b/apps/wallet-mobile/src/features/WalletManager/network-manager/helpers/to-chain-supported-network.ts
@@ -5,8 +5,6 @@ export function toChainSupportedNetwork(legacyNetworkId: number): Chain.Supporte
case 0:
case 1:
return Chain.Network.Mainnet
- case 450:
- return Chain.Network.Sancho
default:
return Chain.Network.Preprod
}
diff --git a/apps/wallet-mobile/src/features/WalletManager/network-manager/network-manager.ts b/apps/wallet-mobile/src/features/WalletManager/network-manager/network-manager.ts
index d5098f604d..da70dc1039 100644
--- a/apps/wallet-mobile/src/features/WalletManager/network-manager/network-manager.ts
+++ b/apps/wallet-mobile/src/features/WalletManager/network-manager/network-manager.ts
@@ -101,17 +101,6 @@ export const networkConfigs: ReadonlyRead this information carefully before saving your recovery phrase:",
"components.walletinit.aboutRecoveryPhrase.aboutRecoveryStepper.title": "About recovery phrase",
"components.walletinit.aboutRecoveryPhrase.aboutRecoveryPhraseCard.firstItem": "Recovery phrase is a unique combination of words",
@@ -1028,8 +1026,6 @@
"swap.swapScreen.slippageToleranceInfo": "Slippage tolerance is set as a percentage of the total swap value. Your transactions will not be executed if the price moves by more than this amount",
"swap.swapScreen.preprodNoticeTitle": "Swap is not available on testnet",
"swap.swapScreen.preprodNoticeText": "Switch to mainnet if you want to use the feature and swap real tokens",
- "swap.swapScreen.sanchoNoticeTitle": "Swap is not available on sanchonet",
- "swap.swapScreen.sanchoNoticeText": "Switch to mainnet if you want to use the feature and swap real tokens",
"swap.swapScreen.swapFees": "Swap fees include the following:\n • DEX Fee\n • Frontend Fee",
"swap.swapScreen.swapFeesTitle": "Fees",
"swap.swapScreen.swapFrom": "Swap from",
@@ -1075,15 +1071,9 @@
"rampOnOff.createRampOnOff.preprodfaucetbanner.title": "Learn Cardano with test ADA ⭐️",
"rampOnOff.createRampOnOff.preprodfaucetbanner.text": "Get started with Cardano's test currency, TADA. It's your key to testing a new world of possibilities.",
"rampOnOff.createRampOnOff.preprodfaucetbanner.button.text": "Go to tada faucet",
- "rampOnOff.createRampOnOff.sanchofaucetbanner.title": "Learn Cardano with test ADA ⭐️",
- "rampOnOff.createRampOnOff.sanchofaucetbanner.text": "Get started with Cardano's test currency, TADA. It's your key to testing a new world of possibilities.",
- "rampOnOff.createRampOnOff.sanchofaucetbanner.button.text": "Go to tada faucet",
"rampOnOff.createRampOnOff.createorder.preprodfaucet.button.text": "Add test ada",
"rampOnOff.createRampOnOff.createorder.preprodnotice.title": "ADA purchases can only be made on the mainnet",
"rampOnOff.createRampOnOff.createorder.preprodnotice.text": "Switch network or top up your testnet network wallet with the free Cardano faucet",
- "rampOnOff.createRampOnOff.createorder.sanchofaucet.button.text": "Add test ada",
- "rampOnOff.createRampOnOff.createorder.sanchonotice.title": "ADA purchases can only be made on the mainnet",
- "rampOnOff.createRampOnOff.createorder.sanchonotice.text": "Switch network or top up your testnet network wallet with the free Cardano faucet",
"rampOnOff.createRampOnOff.createorder.playground": "Playground",
"rampOnOff.createRampOnOff.loadingLink": "We are redirecting you outside Yoroi. Please wait",
"rampOnOff.createRampOnOff.linkError": "This service is currently unavailable. Please try again later",
diff --git a/apps/wallet-mobile/src/kernel/navigation.tsx b/apps/wallet-mobile/src/kernel/navigation.tsx
index 583ef99c02..b11c7c0f6f 100644
--- a/apps/wallet-mobile/src/kernel/navigation.tsx
+++ b/apps/wallet-mobile/src/kernel/navigation.tsx
@@ -186,7 +186,6 @@ type SwapTokenRoutes = {
'swap-submitted-tx': {txId: string}
'swap-failed-tx': undefined
'swap-preprod-notice': undefined
- 'swap-sancho-notice': undefined
}
export type SwapTokenRouteseNavigation = StackNavigationProp
diff --git a/apps/wallet-mobile/translations/messages/src/features/Exchange/common/useStrings.json b/apps/wallet-mobile/translations/messages/src/features/Exchange/common/useStrings.json
index 240f6597de..e62a249683 100644
--- a/apps/wallet-mobile/translations/messages/src/features/Exchange/common/useStrings.json
+++ b/apps/wallet-mobile/translations/messages/src/features/Exchange/common/useStrings.json
@@ -4,14 +4,14 @@
"defaultMessage": "!!!Current Balance",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 61,
+ "line": 55,
"column": 20,
- "index": 3525
+ "index": 2963
},
"end": {
- "line": 64,
+ "line": 58,
"column": 5,
- "index": 3620
+ "index": 3058
}
},
{
@@ -19,14 +19,14 @@
"defaultMessage": "!!!PROCEED",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 65,
+ "line": 59,
"column": 13,
- "index": 3635
+ "index": 3073
},
"end": {
- "line": 68,
+ "line": 62,
"column": 5,
- "index": 3706
+ "index": 3144
}
},
{
@@ -34,14 +34,14 @@
"defaultMessage": "!!!Disclaimer",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 69,
+ "line": 63,
"column": 16,
- "index": 3724
+ "index": 3162
},
"end": {
- "line": 72,
+ "line": 66,
"column": 5,
- "index": 3820
+ "index": 3258
}
},
{
@@ -49,14 +49,14 @@
"defaultMessage": "!!!You can test the off-ramp capabilities with test ADA using a 3rd party provider. No real transactions will take place, but you can interact with the interface. By clicking 'Proceed,' you acknowledge that you will be redirected to our partner's website, where you may need to accept their terms and conditions.",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 73,
+ "line": 67,
"column": 30,
- "index": 3852
+ "index": 3290
},
"end": {
- "line": 76,
+ "line": 70,
"column": 5,
- "index": 4262
+ "index": 3700
}
},
{
@@ -64,14 +64,14 @@
"defaultMessage": "!!!Yoroi uses third party web3 on-and-off ramp solution to provide direct Fiat-ADA exchange. By clicking \"Proceed\", you also acknowledge that you will be redirected to our partner's website, where you may be asked to accept their terms and conditions. The third party web3 on-and-off ramp solution may have a certain limitation that will vary depending on your location and your financial institution.",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 77,
+ "line": 71,
"column": 23,
- "index": 4287
+ "index": 3725
},
"end": {
- "line": 81,
+ "line": 75,
"column": 5,
- "index": 4787
+ "index": 4225
}
},
{
@@ -79,14 +79,14 @@
"defaultMessage": "!!!Buy ADA",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 82,
+ "line": 76,
"column": 15,
- "index": 4804
+ "index": 4242
},
"end": {
- "line": 85,
+ "line": 79,
"column": 5,
- "index": 4896
+ "index": 4334
}
},
{
@@ -94,14 +94,14 @@
"defaultMessage": "!!!Sell ADA",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 86,
+ "line": 80,
"column": 16,
- "index": 4914
+ "index": 4352
},
"end": {
- "line": 89,
+ "line": 83,
"column": 5,
- "index": 5008
+ "index": 4446
}
},
{
@@ -109,14 +109,14 @@
"defaultMessage": "!!!ADA amount",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 90,
+ "line": 84,
"column": 17,
- "index": 5027
+ "index": 4465
},
"end": {
- "line": 93,
+ "line": 87,
"column": 5,
- "index": 5124
+ "index": 4562
}
},
{
@@ -124,14 +124,14 @@
"defaultMessage": "!!!Provider Fee",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 94,
+ "line": 88,
"column": 17,
- "index": 5143
+ "index": 4581
},
"end": {
- "line": 97,
+ "line": 91,
"column": 5,
- "index": 5242
+ "index": 4680
}
},
{
@@ -139,14 +139,14 @@
"defaultMessage": "!!!Provider",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 98,
+ "line": 92,
"column": 14,
- "index": 5258
+ "index": 4696
},
"end": {
- "line": 101,
+ "line": 95,
"column": 5,
- "index": 5350
+ "index": 4788
}
},
{
@@ -154,14 +154,14 @@
"defaultMessage": "!!!Banxa",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 102,
+ "line": 96,
"column": 11,
- "index": 5363
+ "index": 4801
},
"end": {
- "line": 105,
+ "line": 99,
"column": 5,
- "index": 5449
+ "index": 4887
}
},
{
@@ -169,14 +169,14 @@
"defaultMessage": "!!!Exchange ADA",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 106,
+ "line": 100,
"column": 11,
- "index": 5462
+ "index": 4900
},
"end": {
- "line": 109,
+ "line": 103,
"column": 5,
- "index": 5539
+ "index": 4977
}
},
{
@@ -184,14 +184,14 @@
"defaultMessage": "!!!Not Enough Balannce",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 110,
+ "line": 104,
"column": 22,
- "index": 5563
+ "index": 5001
},
"end": {
- "line": 113,
+ "line": 107,
"column": 5,
- "index": 5664
+ "index": 5102
}
},
{
@@ -199,14 +199,14 @@
"defaultMessage": "!!!Minimum required is 100 ADA",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 114,
+ "line": 108,
"column": 20,
- "index": 5686
+ "index": 5124
},
"end": {
- "line": 117,
+ "line": 111,
"column": 5,
- "index": 5803
+ "index": 5241
}
},
{
@@ -214,14 +214,14 @@
"defaultMessage": "!!!You can currently sell only to USD using ACH.",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 118,
+ "line": 112,
"column": 25,
- "index": 5830
+ "index": 5268
},
"end": {
- "line": 121,
+ "line": 115,
"column": 5,
- "index": 5970
+ "index": 5408
}
},
{
@@ -229,14 +229,14 @@
"defaultMessage": "!!!Congrats🎉 Your ADA will come in a few minutes",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 122,
+ "line": 116,
"column": 14,
- "index": 5986
+ "index": 5424
},
"end": {
- "line": 125,
+ "line": 119,
"column": 5,
- "index": 6116
+ "index": 5554
}
},
{
@@ -244,14 +244,14 @@
"defaultMessage": "!!!ADA amount you get",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 126,
+ "line": 120,
"column": 24,
- "index": 6142
+ "index": 5580
},
"end": {
- "line": 129,
+ "line": 123,
"column": 5,
- "index": 6254
+ "index": 5692
}
},
{
@@ -259,14 +259,14 @@
"defaultMessage": "!!!Fiat amount you sell",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 130,
+ "line": 124,
"column": 22,
- "index": 6278
+ "index": 5716
},
"end": {
- "line": 133,
+ "line": 127,
"column": 5,
- "index": 6390
+ "index": 5828
}
},
{
@@ -274,14 +274,14 @@
"defaultMessage": "!!!GO TO TRANSACTIONS",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 134,
+ "line": 128,
"column": 22,
- "index": 6414
+ "index": 5852
},
"end": {
- "line": 137,
+ "line": 131,
"column": 5,
- "index": 6524
+ "index": 5962
}
},
{
@@ -289,14 +289,14 @@
"defaultMessage": "!!!Buy ADA/Sell transaction",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 138,
+ "line": 132,
"column": 19,
- "index": 6545
+ "index": 5983
},
"end": {
- "line": 141,
+ "line": 135,
"column": 5,
- "index": 6658
+ "index": 6096
}
},
{
@@ -304,14 +304,14 @@
"defaultMessage": "!!!Normally the Buy ADA/Sell transaction takes 3-5 of minutes for the order to be fulfilled. However, there are instances where the order cannot be fulfilled instantly because the compliance team can be doing a manual verification of the KYC docs or any other issues.",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 142,
+ "line": 136,
"column": 38,
- "index": 6698
+ "index": 6136
},
"end": {
- "line": 146,
+ "line": 140,
"column": 5,
- "index": 7078
+ "index": 6516
}
},
{
@@ -319,14 +319,14 @@
"defaultMessage": "!!!Contact",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 147,
+ "line": 141,
"column": 13,
- "index": 7093
+ "index": 6531
},
"end": {
- "line": 150,
+ "line": 144,
"column": 5,
- "index": 7183
+ "index": 6621
}
},
{
@@ -334,14 +334,14 @@
"defaultMessage": "!!!and",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 151,
+ "line": 145,
"column": 9,
- "index": 7194
+ "index": 6632
},
"end": {
- "line": 154,
+ "line": 148,
"column": 5,
- "index": 7276
+ "index": 6714
}
},
{
@@ -349,14 +349,14 @@
"defaultMessage": "!!!Yoroi Customer Support",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 155,
+ "line": 149,
"column": 21,
- "index": 7299
+ "index": 6737
},
"end": {
- "line": 158,
+ "line": 152,
"column": 5,
- "index": 7412
+ "index": 6850
}
},
{
@@ -364,14 +364,14 @@
"defaultMessage": "!!!if you witnessed any significant transaction delays or errors.",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 159,
+ "line": 153,
"column": 17,
- "index": 7431
+ "index": 6869
},
"end": {
- "line": 162,
+ "line": 156,
"column": 5,
- "index": 7580
+ "index": 7018
}
},
{
@@ -379,14 +379,14 @@
"defaultMessage": "!!!Welcome to Yoroi 👋️\nGet your first ADA fast & easy",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 163,
+ "line": 157,
"column": 20,
- "index": 7602
+ "index": 7040
},
"end": {
- "line": 166,
+ "line": 160,
"column": 5,
- "index": 7744
+ "index": 7182
}
},
{
@@ -394,14 +394,14 @@
"defaultMessage": "!!!Top up your wallet safely using our trusted partners",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 167,
+ "line": 161,
"column": 24,
- "index": 7770
+ "index": 7208
},
"end": {
- "line": 170,
+ "line": 164,
"column": 5,
- "index": 7916
+ "index": 7354
}
},
{
@@ -409,14 +409,14 @@
"defaultMessage": "!!!Need more ADA for staking or swap?",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 171,
+ "line": 165,
"column": 20,
- "index": 7938
+ "index": 7376
},
"end": {
- "line": 174,
+ "line": 168,
"column": 5,
- "index": 8062
+ "index": 7500
}
},
{
@@ -424,14 +424,14 @@
"defaultMessage": "!!!fee",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 175,
+ "line": 169,
"column": 9,
- "index": 8073
+ "index": 7511
},
"end": {
- "line": 178,
+ "line": 172,
"column": 5,
- "index": 8155
+ "index": 7593
}
},
{
@@ -439,14 +439,14 @@
"defaultMessage": "!!!Learn Cardano with test ADA ⭐️",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 179,
+ "line": 173,
"column": 30,
- "index": 8187
+ "index": 7625
},
"end": {
- "line": 182,
+ "line": 176,
"column": 5,
- "index": 8318
+ "index": 7756
}
},
{
@@ -454,14 +454,14 @@
"defaultMessage": "!!!Get started with Cardano's test currency, TADA. It's your key to testing a new world of possibilities.",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 183,
+ "line": 177,
"column": 29,
- "index": 8349
+ "index": 7787
},
"end": {
- "line": 186,
+ "line": 180,
"column": 5,
- "index": 8551
+ "index": 7989
}
},
{
@@ -469,59 +469,14 @@
"defaultMessage": "!!!Go to tada faucet",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 187,
+ "line": 181,
"column": 35,
- "index": 8588
- },
- "end": {
- "line": 190,
- "column": 5,
- "index": 8712
- }
- },
- {
- "id": "rampOnOff.createRampOnOff.sanchofaucetbanner.title",
- "defaultMessage": "!!!Learn Cardano with test ADA ⭐️",
- "file": "src/features/Exchange/common/useStrings.tsx",
- "start": {
- "line": 191,
- "column": 29,
- "index": 8743
- },
- "end": {
- "line": 194,
- "column": 5,
- "index": 8873
- }
- },
- {
- "id": "rampOnOff.createRampOnOff.sanchofaucetbanner.text",
- "defaultMessage": "!!!Get started with Cardano's test currency, TADA. It's your key to testing a new world of possibilities.",
- "file": "src/features/Exchange/common/useStrings.tsx",
- "start": {
- "line": 195,
- "column": 28,
- "index": 8903
- },
- "end": {
- "line": 198,
- "column": 5,
- "index": 9104
- }
- },
- {
- "id": "rampOnOff.createRampOnOff.sanchofaucetbanner.button.text",
- "defaultMessage": "!!!Go to tada faucet",
- "file": "src/features/Exchange/common/useStrings.tsx",
- "start": {
- "line": 199,
- "column": 34,
- "index": 9140
+ "index": 8026
},
"end": {
- "line": 202,
+ "line": 184,
"column": 5,
- "index": 9263
+ "index": 8150
}
},
{
@@ -529,14 +484,14 @@
"defaultMessage": "!!!Add test ada",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 203,
+ "line": 185,
"column": 40,
- "index": 9305
+ "index": 8192
},
"end": {
- "line": 206,
+ "line": 188,
"column": 5,
- "index": 9430
+ "index": 8317
}
},
{
@@ -544,14 +499,14 @@
"defaultMessage": "!!!ADA purchases can only be made on the mainnet",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 207,
+ "line": 189,
"column": 35,
- "index": 9467
+ "index": 8354
},
"end": {
- "line": 210,
+ "line": 192,
"column": 5,
- "index": 9619
+ "index": 8506
}
},
{
@@ -559,59 +514,14 @@
"defaultMessage": "!!!Switch network or top up your testnet network wallet with the free Cardano faucet",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 211,
+ "line": 193,
"column": 34,
- "index": 9655
- },
- "end": {
- "line": 214,
- "column": 5,
- "index": 9842
- }
- },
- {
- "id": "rampOnOff.createRampOnOff.createorder.sanchofaucet.button.text",
- "defaultMessage": "!!!Add test ada",
- "file": "src/features/Exchange/common/useStrings.tsx",
- "start": {
- "line": 215,
- "column": 42,
- "index": 9886
- },
- "end": {
- "line": 218,
- "column": 5,
- "index": 10010
- }
- },
- {
- "id": "rampOnOff.createRampOnOff.createorder.sanchonotice.title",
- "defaultMessage": "!!!ADA purchases can only be made on the mainnet",
- "file": "src/features/Exchange/common/useStrings.tsx",
- "start": {
- "line": 219,
- "column": 37,
- "index": 10049
- },
- "end": {
- "line": 222,
- "column": 5,
- "index": 10200
- }
- },
- {
- "id": "rampOnOff.createRampOnOff.createorder.sanchonotice.text",
- "defaultMessage": "!!!Switch network or top up your testnet network wallet with the free Cardano faucet",
- "file": "src/features/Exchange/common/useStrings.tsx",
- "start": {
- "line": 223,
- "column": 36,
- "index": 10238
+ "index": 8542
},
"end": {
- "line": 226,
+ "line": 196,
"column": 5,
- "index": 10424
+ "index": 8729
}
},
{
@@ -619,14 +529,14 @@
"defaultMessage": "!!!Playground",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 227,
+ "line": 197,
"column": 16,
- "index": 10442
+ "index": 8747
},
"end": {
- "line": 230,
+ "line": 200,
"column": 5,
- "index": 10550
+ "index": 8855
}
},
{
@@ -634,14 +544,14 @@
"defaultMessage": "!!!We are redirecting you outside Yoroi. Please wait",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 231,
+ "line": 201,
"column": 17,
- "index": 10569
+ "index": 8874
},
"end": {
- "line": 234,
+ "line": 204,
"column": 5,
- "index": 10705
+ "index": 9010
}
},
{
@@ -649,14 +559,14 @@
"defaultMessage": "!!!This service is currently unavailable. Please try again later",
"file": "src/features/Exchange/common/useStrings.tsx",
"start": {
- "line": 235,
+ "line": 205,
"column": 15,
- "index": 10722
+ "index": 9027
},
"end": {
- "line": 238,
+ "line": 208,
"column": 5,
- "index": 10868
+ "index": 9173
}
}
]
\ No newline at end of file
diff --git a/apps/wallet-mobile/translations/messages/src/features/SetupWallet/common/useStrings.json b/apps/wallet-mobile/translations/messages/src/features/SetupWallet/common/useStrings.json
index fce734e942..47dcb02dfa 100644
--- a/apps/wallet-mobile/translations/messages/src/features/SetupWallet/common/useStrings.json
+++ b/apps/wallet-mobile/translations/messages/src/features/SetupWallet/common/useStrings.json
@@ -4,14 +4,14 @@
"defaultMessage": "!!!Not found",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 123,
+ "line": 121,
"column": 14,
- "index": 8982
+ "index": 8822
},
"end": {
- "line": 126,
+ "line": 124,
"column": 5,
- "index": 9103
+ "index": 8943
}
},
{
@@ -19,14 +19,14 @@
"defaultMessage": "!!!Clear all",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 127,
+ "line": 125,
"column": 14,
- "index": 9119
+ "index": 8959
},
"end": {
- "line": 130,
+ "line": 128,
"column": 5,
- "index": 9240
+ "index": 9080
}
},
{
@@ -34,14 +34,14 @@
"defaultMessage": "!!!Minimum characters",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 131,
+ "line": 129,
"column": 33,
- "index": 9275
+ "index": 9115
},
"end": {
- "line": 134,
+ "line": 132,
"column": 5,
- "index": 9422
+ "index": 9262
}
},
{
@@ -49,14 +49,14 @@
"defaultMessage": "!!!Repeat password",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 135,
+ "line": 133,
"column": 30,
- "index": 9454
+ "index": 9294
},
"end": {
- "line": 138,
+ "line": 136,
"column": 5,
- "index": 9576
+ "index": 9416
}
},
{
@@ -64,14 +64,14 @@
"defaultMessage": "!!!Passwords do not match",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 139,
+ "line": 137,
"column": 30,
- "index": 9608
+ "index": 9448
},
"end": {
- "line": 142,
+ "line": 140,
"column": 5,
- "index": 9737
+ "index": 9577
}
},
{
@@ -79,14 +79,14 @@
"defaultMessage": "!!!Yoroi",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 143,
+ "line": 141,
"column": 15,
- "index": 9754
+ "index": 9594
},
"end": {
- "line": 146,
+ "line": 144,
"column": 5,
- "index": 9856
+ "index": 9696
}
},
{
@@ -94,14 +94,14 @@
"defaultMessage": "!!!Light wallet for Cardano assets",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 147,
+ "line": 145,
"column": 18,
- "index": 9876
+ "index": 9716
},
"end": {
- "line": 150,
+ "line": 148,
"column": 5,
- "index": 10007
+ "index": 9847
}
},
{
@@ -109,14 +109,14 @@
"defaultMessage": "!!!Learn more on Yoroi Zendesk",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 151,
+ "line": 149,
"column": 15,
- "index": 10024
+ "index": 9864
},
"end": {
- "line": 154,
+ "line": 152,
"column": 5,
- "index": 10149
+ "index": 9989
}
},
{
@@ -124,14 +124,14 @@
"defaultMessage": "!!!Continue",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 155,
+ "line": 153,
"column": 20,
- "index": 10171
+ "index": 10011
},
"end": {
- "line": 158,
+ "line": 156,
"column": 5,
- "index": 10285
+ "index": 10125
}
},
{
@@ -139,14 +139,14 @@
"defaultMessage": "!!!Next",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 159,
+ "line": 157,
"column": 10,
- "index": 10297
+ "index": 10137
},
"end": {
- "line": 162,
+ "line": 160,
"column": 5,
- "index": 10403
+ "index": 10243
}
},
{
@@ -154,14 +154,14 @@
"defaultMessage": "!!!Create new wallet",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 163,
+ "line": 161,
"column": 28,
- "index": 10433
+ "index": 10273
},
"end": {
- "line": 166,
+ "line": 164,
"column": 5,
- "index": 10561
+ "index": 10401
}
},
{
@@ -169,14 +169,14 @@
"defaultMessage": "!!!Restore Yoroi existing wallet",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 167,
+ "line": 165,
"column": 29,
- "index": 10592
+ "index": 10432
},
"end": {
- "line": 170,
+ "line": 168,
"column": 5,
- "index": 10733
+ "index": 10573
}
},
{
@@ -184,14 +184,14 @@
"defaultMessage": "!!!Connect hardware wallet device",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 171,
+ "line": 169,
"column": 29,
- "index": 10764
+ "index": 10604
},
"end": {
- "line": 174,
+ "line": 172,
"column": 5,
- "index": 10906
+ "index": 10746
}
},
{
@@ -199,14 +199,14 @@
"defaultMessage": "!!!Cardano Mainnet",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 175,
+ "line": 173,
"column": 20,
- "index": 10928
+ "index": 10768
},
"end": {
- "line": 178,
+ "line": 176,
"column": 5,
- "index": 11056
+ "index": 10896
}
},
{
@@ -214,29 +214,14 @@
"defaultMessage": "!!!Cardano Preprod Testnet",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 179,
+ "line": 177,
"column": 20,
- "index": 11078
+ "index": 10918
},
"end": {
- "line": 182,
+ "line": 180,
"column": 5,
- "index": 11214
- }
- },
- {
- "id": "components.walletinit.walletinitmenu.cardanoSanchonetbutton.title",
- "defaultMessage": "!!!Cardano SanchoNet",
- "file": "src/features/SetupWallet/common/useStrings.tsx",
- "start": {
- "line": 183,
- "column": 22,
- "index": 11238
- },
- "end": {
- "line": 186,
- "column": 5,
- "index": 11370
+ "index": 11054
}
},
{
@@ -244,14 +229,14 @@
"defaultMessage": "!!!Works with real ADA",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 187,
+ "line": 181,
"column": 31,
- "index": 11403
+ "index": 11087
},
"end": {
- "line": 190,
+ "line": 184,
"column": 5,
- "index": 11541
+ "index": 11225
}
},
{
@@ -259,29 +244,14 @@
"defaultMessage": "!!!Works with test ADA (tADA)",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 191,
+ "line": 185,
"column": 31,
- "index": 11574
- },
- "end": {
- "line": 194,
- "column": 5,
- "index": 11719
- }
- },
- {
- "id": "components.walletinit.walletinitmenu.cardanoSanchonetbutton.description",
- "defaultMessage": "!!!Testnet for rolling out governance",
- "file": "src/features/SetupWallet/common/useStrings.tsx",
- "start": {
- "line": 195,
- "column": 33,
- "index": 11754
+ "index": 11258
},
"end": {
- "line": 198,
+ "line": 188,
"column": 5,
- "index": 11909
+ "index": 11403
}
},
{
@@ -289,14 +259,14 @@
"defaultMessage": "!!!Read this information carefully before saving your recovery phrase:",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 199,
+ "line": 189,
"column": 30,
- "index": 11941
+ "index": 11435
},
"end": {
- "line": 202,
+ "line": 192,
"column": 5,
- "index": 12125
+ "index": 11619
}
},
{
@@ -304,14 +274,14 @@
"defaultMessage": "!!!About recovery phrase",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 203,
+ "line": 193,
"column": 29,
- "index": 12156
+ "index": 11650
},
"end": {
- "line": 206,
+ "line": 196,
"column": 5,
- "index": 12295
+ "index": 11789
}
},
{
@@ -319,14 +289,14 @@
"defaultMessage": "!!!Recovery phrase is the only way to access your wallet",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 207,
+ "line": 197,
"column": 38,
- "index": 12335
+ "index": 11829
},
"end": {
- "line": 210,
+ "line": 200,
"column": 5,
- "index": 12513
+ "index": 12007
}
},
{
@@ -334,14 +304,14 @@
"defaultMessage": "!!!If you lose your Recovery phrase, it will not be possible to recover your wallet",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 211,
+ "line": 201,
"column": 39,
- "index": 12554
+ "index": 12048
},
"end": {
- "line": 214,
+ "line": 204,
"column": 5,
- "index": 12760
+ "index": 12254
}
},
{
@@ -349,14 +319,14 @@
"defaultMessage": "!!!You are the only person who knows and stores your Recovery phrase",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 215,
+ "line": 205,
"column": 38,
- "index": 12800
+ "index": 12294
},
"end": {
- "line": 218,
+ "line": 208,
"column": 5,
- "index": 12990
+ "index": 12484
}
},
{
@@ -364,14 +334,14 @@
"defaultMessage": "!!!You are the only person who knows and stores your Recovery phrase",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 219,
+ "line": 209,
"column": 39,
- "index": 13031
+ "index": 12525
},
"end": {
- "line": 222,
+ "line": 212,
"column": 5,
- "index": 13222
+ "index": 12716
}
},
{
@@ -379,14 +349,14 @@
"defaultMessage": "!!!Yoroi NEVER asks for your Recovery phrase. Watch out for scammers and impersonators",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 223,
+ "line": 213,
"column": 38,
- "index": 13262
+ "index": 12756
},
"end": {
- "line": 226,
+ "line": 216,
"column": 5,
- "index": 13470
+ "index": 12964
}
},
{
@@ -394,14 +364,14 @@
"defaultMessage": "!!!Click “Show recovery phrase” below to reveal and save it.",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 227,
+ "line": 217,
"column": 25,
- "index": 13497
+ "index": 12991
},
"end": {
- "line": 230,
+ "line": 220,
"column": 5,
- "index": 13647
+ "index": 13141
}
},
{
@@ -409,14 +379,14 @@
"defaultMessage": "!!!Recovery phrase",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 231,
+ "line": 221,
"column": 24,
- "index": 13673
+ "index": 13167
},
"end": {
- "line": 234,
+ "line": 224,
"column": 5,
- "index": 13796
+ "index": 13290
}
},
{
@@ -424,14 +394,14 @@
"defaultMessage": "!!!Hide recovery phrase",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 235,
+ "line": 225,
"column": 30,
- "index": 13828
+ "index": 13322
},
"end": {
- "line": 238,
+ "line": 228,
"column": 5,
- "index": 13959
+ "index": 13453
}
},
{
@@ -439,14 +409,14 @@
"defaultMessage": "!!!Show recovery phrase",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 239,
+ "line": 229,
"column": 30,
- "index": 13991
+ "index": 13485
},
"end": {
- "line": 242,
+ "line": 232,
"column": 5,
- "index": 14122
+ "index": 13616
}
},
{
@@ -454,14 +424,14 @@
"defaultMessage": "!!!Tips",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 243,
+ "line": 233,
"column": 30,
- "index": 14154
+ "index": 13648
},
"end": {
- "line": 246,
+ "line": 236,
"column": 5,
- "index": 14270
+ "index": 13764
}
},
{
@@ -469,14 +439,14 @@
"defaultMessage": "!!!How to save your recovery phrase?",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 247,
+ "line": 237,
"column": 29,
- "index": 14301
+ "index": 13795
},
"end": {
- "line": 250,
+ "line": 240,
"column": 5,
- "index": 14445
+ "index": 13939
}
},
{
@@ -484,14 +454,14 @@
"defaultMessage": "!!!Make sure no one is looking at your screen.",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 251,
+ "line": 241,
"column": 33,
- "index": 14480
+ "index": 13974
},
"end": {
- "line": 254,
+ "line": 244,
"column": 5,
- "index": 14638
+ "index": 14132
}
},
{
@@ -499,14 +469,14 @@
"defaultMessage": "!!!DO NOT take a screenshot.",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 255,
+ "line": 245,
"column": 34,
- "index": 14674
+ "index": 14168
},
"end": {
- "line": 258,
+ "line": 248,
"column": 5,
- "index": 14815
+ "index": 14309
}
},
{
@@ -514,14 +484,14 @@
"defaultMessage": "!!!Write the recovery phrase on a piece of paper and store in a secure location like a safety deposit box.",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 259,
+ "line": 249,
"column": 33,
- "index": 14850
+ "index": 14344
},
"end": {
- "line": 263,
+ "line": 253,
"column": 5,
- "index": 15076
+ "index": 14570
}
},
{
@@ -529,14 +499,14 @@
"defaultMessage": "!!!It is recommended to have 2 or 3 copies of the recovery phrase in different secure locations.",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 264,
+ "line": 254,
"column": 34,
- "index": 15112
+ "index": 14606
},
"end": {
- "line": 268,
+ "line": 258,
"column": 5,
- "index": 15329
+ "index": 14823
}
},
{
@@ -544,14 +514,14 @@
"defaultMessage": "!!!DO NOT share the recovery phrase as this will allow anyone to access your assets and wallet.",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 269,
+ "line": 259,
"column": 33,
- "index": 15364
+ "index": 14858
},
"end": {
- "line": 272,
+ "line": 262,
"column": 5,
- "index": 15571
+ "index": 15065
}
},
{
@@ -559,14 +529,14 @@
"defaultMessage": "!!!Select each word in the correct order to confirm your recovery phrase.",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 273,
+ "line": 263,
"column": 31,
- "index": 15604
+ "index": 15098
},
"end": {
- "line": 276,
+ "line": 266,
"column": 5,
- "index": 15772
+ "index": 15266
}
},
{
@@ -574,14 +544,14 @@
"defaultMessage": "!!!Verify recovery phrase",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 277,
+ "line": 267,
"column": 30,
- "index": 15804
+ "index": 15298
},
"end": {
- "line": 280,
+ "line": 270,
"column": 5,
- "index": 15946
+ "index": 15440
}
},
{
@@ -589,14 +559,14 @@
"defaultMessage": "!!!Incorrect order. Try again",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 281,
+ "line": 271,
"column": 38,
- "index": 15986
+ "index": 15480
},
"end": {
- "line": 284,
+ "line": 274,
"column": 5,
- "index": 16117
+ "index": 15611
}
},
{
@@ -604,14 +574,14 @@
"defaultMessage": "!!!The recovery phrase is verified",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 285,
+ "line": 275,
"column": 40,
- "index": 16159
+ "index": 15653
},
"end": {
- "line": 288,
+ "line": 278,
"column": 5,
- "index": 16297
+ "index": 15791
}
},
{
@@ -619,14 +589,14 @@
"defaultMessage": "!!!Tips",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 289,
+ "line": 279,
"column": 29,
- "index": 16328
+ "index": 15822
},
"end": {
- "line": 292,
+ "line": 282,
"column": 5,
- "index": 16447
+ "index": 15941
}
},
{
@@ -634,14 +604,14 @@
"defaultMessage": "!!!What is wallet name",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 293,
+ "line": 283,
"column": 30,
- "index": 16479
+ "index": 15973
},
"end": {
- "line": 296,
+ "line": 286,
"column": 5,
- "index": 16614
+ "index": 16108
}
},
{
@@ -649,14 +619,14 @@
"defaultMessage": "!!!It is a wallet identifier that helps you to easier find the exact wallet in your app",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 297,
+ "line": 287,
"column": 34,
- "index": 16650
+ "index": 16144
},
"end": {
- "line": 300,
+ "line": 290,
"column": 5,
- "index": 16849
+ "index": 16343
}
},
{
@@ -664,14 +634,14 @@
"defaultMessage": "!!!You can have different wallet names for the same wallet account connected to different devices",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 301,
+ "line": 291,
"column": 35,
- "index": 16886
+ "index": 16380
},
"end": {
- "line": 305,
+ "line": 295,
"column": 5,
- "index": 17104
+ "index": 16598
}
},
{
@@ -679,14 +649,14 @@
"defaultMessage": "!!!What is password",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 306,
+ "line": 296,
"column": 34,
- "index": 17140
+ "index": 16634
},
"end": {
- "line": 309,
+ "line": 299,
"column": 5,
- "index": 17276
+ "index": 16770
}
},
{
@@ -694,14 +664,14 @@
"defaultMessage": "!!!Password is an additional security layer used to confirm transactions from this device",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 310,
+ "line": 300,
"column": 38,
- "index": 17316
+ "index": 16810
},
"end": {
- "line": 313,
+ "line": 303,
"column": 5,
- "index": 17521
+ "index": 17015
}
},
{
@@ -709,14 +679,14 @@
"defaultMessage": "!!!Both wallet name and password are stored locally, so you are only person who can change or restore it.",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 314,
+ "line": 304,
"column": 39,
- "index": 17562
+ "index": 17056
},
"end": {
- "line": 318,
+ "line": 308,
"column": 5,
- "index": 17792
+ "index": 17286
}
},
{
@@ -724,14 +694,14 @@
"defaultMessage": "!!!What is wallet checksum and plate number?",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 319,
+ "line": 309,
"column": 34,
- "index": 17828
+ "index": 17322
},
"end": {
- "line": 322,
+ "line": 312,
"column": 5,
- "index": 17989
+ "index": 17483
}
},
{
@@ -739,14 +709,14 @@
"defaultMessage": "!!!is a generic Blockie image that is generated to visually distinguish your wallet from others.",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 323,
+ "line": 313,
"column": 38,
- "index": 18029
+ "index": 17523
},
"end": {
- "line": 327,
+ "line": 317,
"column": 5,
- "index": 18249
+ "index": 17743
}
},
{
@@ -754,14 +724,14 @@
"defaultMessage": "!!!Wallet checksum",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 328,
+ "line": 318,
"column": 20,
- "index": 18271
+ "index": 17765
},
"end": {
- "line": 331,
+ "line": 321,
"column": 5,
- "index": 18414
+ "index": 17908
}
},
{
@@ -769,14 +739,14 @@
"defaultMessage": "!!!Plate number {checksum} is a auto-generated sign of four letters and four digits.",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 332,
+ "line": 322,
"column": 39,
- "index": 18455
+ "index": 17949
},
"end": {
- "line": 335,
+ "line": 325,
"column": 5,
- "index": 18656
+ "index": 18150
}
},
{
@@ -784,14 +754,14 @@
"defaultMessage": "!!!Checksum and plate number are unique to your wallet and represent your public key.",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 336,
+ "line": 326,
"column": 38,
- "index": 18696
+ "index": 18190
},
"end": {
- "line": 339,
+ "line": 329,
"column": 5,
- "index": 18897
+ "index": 18391
}
},
{
@@ -799,14 +769,14 @@
"defaultMessage": "!!!Wallet details",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 340,
+ "line": 330,
"column": 23,
- "index": 18922
+ "index": 18416
},
"end": {
- "line": 343,
+ "line": 333,
"column": 5,
- "index": 19039
+ "index": 18533
}
},
{
@@ -814,14 +784,14 @@
"defaultMessage": "!!!Add your wallet name and password.",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 344,
+ "line": 334,
"column": 24,
- "index": 19065
+ "index": 18559
},
"end": {
- "line": 347,
+ "line": 337,
"column": 5,
- "index": 19204
+ "index": 18698
}
},
{
@@ -829,14 +799,14 @@
"defaultMessage": "!!!Combine letters, numbers and symbols to make it stronger",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 348,
+ "line": 338,
"column": 33,
- "index": 19239
+ "index": 18733
},
"end": {
- "line": 351,
+ "line": 341,
"column": 5,
- "index": 19408
+ "index": 18902
}
},
{
@@ -844,14 +814,14 @@
"defaultMessage": "!!!Enter wallet name",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 352,
+ "line": 342,
"column": 28,
- "index": 19438
+ "index": 18932
},
"end": {
- "line": 355,
+ "line": 345,
"column": 5,
- "index": 19563
+ "index": 19057
}
},
{
@@ -859,14 +829,14 @@
"defaultMessage": "!!!Enter password",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 356,
+ "line": 346,
"column": 32,
- "index": 19597
+ "index": 19091
},
"end": {
- "line": 359,
+ "line": 349,
"column": 5,
- "index": 19723
+ "index": 19217
}
},
{
@@ -874,14 +844,14 @@
"defaultMessage": "!!!Confirm password",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 360,
+ "line": 350,
"column": 39,
- "index": 19764
+ "index": 19258
},
"end": {
- "line": 363,
+ "line": 353,
"column": 5,
- "index": 19899
+ "index": 19393
}
},
{
@@ -889,14 +859,14 @@
"defaultMessage": "!!!Please enter valid mnemonic.",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 364,
+ "line": 354,
"column": 21,
- "index": 19922
+ "index": 19416
},
"end": {
- "line": 367,
+ "line": 357,
"column": 5,
- "index": 20071
+ "index": 19565
}
},
{
@@ -904,14 +874,14 @@
"defaultMessage": "!!!The recovery phrase is verified",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 368,
+ "line": 358,
"column": 19,
- "index": 20092
+ "index": 19586
},
"end": {
- "line": 371,
+ "line": 361,
"column": 5,
- "index": 20242
+ "index": 19736
}
},
{
@@ -919,14 +889,14 @@
"defaultMessage": "!!!Enter recovery phrase",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 372,
+ "line": 362,
"column": 29,
- "index": 20273
+ "index": 19767
},
"end": {
- "line": 375,
+ "line": 365,
"column": 5,
- "index": 20423
+ "index": 19917
}
},
{
@@ -934,14 +904,14 @@
"defaultMessage": "!!!15 word recovery phrase",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 376,
+ "line": 366,
"column": 32,
- "index": 20457
+ "index": 19951
},
"end": {
- "line": 379,
+ "line": 369,
"column": 5,
- "index": 20592
+ "index": 20086
}
},
{
@@ -949,14 +919,14 @@
"defaultMessage": "!!!24 word recovery phrase",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 380,
+ "line": 370,
"column": 32,
- "index": 20626
+ "index": 20120
},
"end": {
- "line": 383,
+ "line": 373,
"column": 5,
- "index": 20761
+ "index": 20255
}
},
{
@@ -964,14 +934,14 @@
"defaultMessage": "!!!Add the recovery phrase you received upon your wallet creation process.",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 384,
+ "line": 374,
"column": 30,
- "index": 20793
+ "index": 20287
},
"end": {
- "line": 387,
+ "line": 377,
"column": 5,
- "index": 20994
+ "index": 20488
}
},
{
@@ -979,14 +949,14 @@
"defaultMessage": "!!!This wallet is already added",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 388,
+ "line": 378,
"column": 39,
- "index": 21035
+ "index": 20529
},
"end": {
- "line": 391,
+ "line": 381,
"column": 5,
- "index": 21202
+ "index": 20696
}
},
{
@@ -994,14 +964,14 @@
"defaultMessage": "!!!This wallet already exist on your device, You can open it or go back and restore another wallet.",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 392,
+ "line": 382,
"column": 38,
- "index": 21242
+ "index": 20736
},
"end": {
- "line": 396,
+ "line": 386,
"column": 5,
- "index": 21484
+ "index": 20978
}
},
{
@@ -1009,14 +979,14 @@
"defaultMessage": "!!!Open wallet",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 397,
+ "line": 387,
"column": 40,
- "index": 21526
+ "index": 21020
},
"end": {
- "line": 400,
+ "line": 390,
"column": 5,
- "index": 21677
+ "index": 21171
}
},
{
@@ -1024,14 +994,14 @@
"defaultMessage": "!!!Preparing your wallet...",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 401,
+ "line": 391,
"column": 21,
- "index": 21700
+ "index": 21194
},
"end": {
- "line": 404,
+ "line": 394,
"column": 5,
- "index": 21845
+ "index": 21339
}
},
{
@@ -1039,14 +1009,14 @@
"defaultMessage": "!!!Word not found",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 405,
+ "line": 395,
"column": 18,
- "index": 21865
+ "index": 21359
},
"end": {
- "line": 408,
+ "line": 398,
"column": 5,
- "index": 21997
+ "index": 21491
}
},
{
@@ -1054,14 +1024,14 @@
"defaultMessage": "!!!Choose connection method",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 409,
+ "line": 399,
"column": 18,
- "index": 22017
+ "index": 21511
},
"end": {
- "line": 412,
+ "line": 402,
"column": 5,
- "index": 22141
+ "index": 21635
}
},
{
@@ -1069,14 +1039,14 @@
"defaultMessage": "!!!Select the option to connect Ledger Nano X or Ledger Nano S to Yoroi app",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 413,
+ "line": 403,
"column": 17,
- "index": 22160
+ "index": 21654
},
"end": {
- "line": 416,
+ "line": 406,
"column": 5,
- "index": 22331
+ "index": 21825
}
},
{
@@ -1084,14 +1054,14 @@
"defaultMessage": "!!!Connect with USB",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 417,
+ "line": 407,
"column": 22,
- "index": 22355
+ "index": 21849
},
"end": {
- "line": 420,
+ "line": 410,
"column": 5,
- "index": 22475
+ "index": 21969
}
},
{
@@ -1099,14 +1069,14 @@
"defaultMessage": "!!!Connect with Bluetooth",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 421,
+ "line": 411,
"column": 21,
- "index": 22498
+ "index": 21992
},
"end": {
- "line": 424,
+ "line": 414,
"column": 5,
- "index": 22630
+ "index": 22124
}
},
{
@@ -1114,14 +1084,14 @@
"defaultMessage": "!!!USB connection is NOT available on Apple iOS devices. You can always try this connection type on Android platform",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 425,
+ "line": 415,
"column": 23,
- "index": 22655
+ "index": 22149
},
"end": {
- "line": 429,
+ "line": 419,
"column": 5,
- "index": 22881
+ "index": 22375
}
},
{
@@ -1129,14 +1099,14 @@
"defaultMessage": "!!!Add your wallet name",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 430,
+ "line": 420,
"column": 26,
- "index": 22909
+ "index": 22403
},
"end": {
- "line": 433,
+ "line": 423,
"column": 5,
- "index": 23049
+ "index": 22543
}
},
{
@@ -1144,14 +1114,14 @@
"defaultMessage": "!!!Action needed: Please, export public key from your Ledger device.",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 434,
+ "line": 424,
"column": 17,
- "index": 23068
+ "index": 22562
},
"end": {
- "line": 437,
+ "line": 427,
"column": 5,
- "index": 23246
+ "index": 22740
}
},
{
@@ -1159,14 +1129,14 @@
"defaultMessage": "!!!Connect with Bluetooth",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 438,
+ "line": 428,
"column": 20,
- "index": 23268
+ "index": 22762
},
"end": {
- "line": 441,
+ "line": 431,
"column": 5,
- "index": 23384
+ "index": 22878
}
},
{
@@ -1174,14 +1144,14 @@
"defaultMessage": "!!!Before continuing, please make sure that:",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 442,
+ "line": 432,
"column": 22,
- "index": 23408
+ "index": 22902
},
"end": {
- "line": 445,
+ "line": 435,
"column": 5,
- "index": 23560
+ "index": 23054
}
},
{
@@ -1189,14 +1159,14 @@
"defaultMessage": "!!!Intro",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 446,
+ "line": 436,
"column": 18,
- "index": 23580
+ "index": 23074
},
"end": {
- "line": 449,
+ "line": 439,
"column": 5,
- "index": 23699
+ "index": 23193
}
},
{
@@ -1204,14 +1174,14 @@
"defaultMessage": "!!!Learn more about using Yoroi with Ledger",
"file": "src/features/SetupWallet/common/useStrings.tsx",
"start": {
- "line": 450,
+ "line": 440,
"column": 23,
- "index": 23724
+ "index": 23218
},
"end": {
- "line": 453,
+ "line": 443,
"column": 5,
- "index": 23867
+ "index": 23361
}
}
]
\ No newline at end of file
diff --git a/apps/wallet-mobile/translations/messages/src/features/Swap/common/strings.json b/apps/wallet-mobile/translations/messages/src/features/Swap/common/strings.json
index 6b455f1c70..e8bfe8c513 100644
--- a/apps/wallet-mobile/translations/messages/src/features/Swap/common/strings.json
+++ b/apps/wallet-mobile/translations/messages/src/features/Swap/common/strings.json
@@ -4,14 +4,14 @@
"defaultMessage": "!!!Swap fees include the following:\n • Matchmaker Fee\n • Frontend Fee\n • Liquidity Provider Fee",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 170,
+ "line": 168,
"column": 12,
- "index": 11087
+ "index": 10947
},
"end": {
- "line": 173,
+ "line": 171,
"column": 3,
- "index": 11250
+ "index": 11110
}
},
{
@@ -19,14 +19,14 @@
"defaultMessage": "!!!Incorrect password.",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 174,
+ "line": 172,
"column": 24,
- "index": 11276
+ "index": 11136
},
"end": {
- "line": 177,
+ "line": 175,
"column": 3,
- "index": 11385
+ "index": 11245
}
},
{
@@ -34,14 +34,14 @@
"defaultMessage": "!!!Swap",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 178,
+ "line": 176,
"column": 13,
- "index": 11400
+ "index": 11260
},
"end": {
- "line": 181,
+ "line": 179,
"column": 3,
- "index": 11473
+ "index": 11333
}
},
{
@@ -49,14 +49,14 @@
"defaultMessage": "!!!Swap details",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 182,
+ "line": 180,
"column": 20,
- "index": 11495
+ "index": 11355
},
"end": {
- "line": 185,
+ "line": 183,
"column": 3,
- "index": 11583
+ "index": 11443
}
},
{
@@ -64,14 +64,14 @@
"defaultMessage": "!!!Token swap",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 186,
+ "line": 184,
"column": 13,
- "index": 11598
+ "index": 11458
},
"end": {
- "line": 189,
+ "line": 187,
"column": 3,
- "index": 11680
+ "index": 11540
}
},
{
@@ -79,14 +79,14 @@
"defaultMessage": "!!!Orders",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 190,
+ "line": 188,
"column": 13,
- "index": 11695
+ "index": 11555
},
"end": {
- "line": 193,
+ "line": 191,
"column": 3,
- "index": 11774
+ "index": 11634
}
},
{
@@ -94,14 +94,14 @@
"defaultMessage": "!!!Market Button",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 194,
+ "line": 192,
"column": 16,
- "index": 11792
+ "index": 11652
},
"end": {
- "line": 197,
+ "line": 195,
"column": 3,
- "index": 11877
+ "index": 11737
}
},
{
@@ -109,14 +109,14 @@
"defaultMessage": "!!!Limit",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 198,
+ "line": 196,
"column": 15,
- "index": 11894
+ "index": 11754
},
"end": {
- "line": 201,
+ "line": 199,
"column": 3,
- "index": 11970
+ "index": 11830
}
},
{
@@ -124,14 +124,14 @@
"defaultMessage": "!!!Swap from",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 202,
+ "line": 200,
"column": 12,
- "index": 11984
+ "index": 11844
},
"end": {
- "line": 205,
+ "line": 203,
"column": 3,
- "index": 12061
+ "index": 11921
}
},
{
@@ -139,14 +139,14 @@
"defaultMessage": "!!!Swap to",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 206,
+ "line": 204,
"column": 10,
- "index": 12073
+ "index": 11933
},
"end": {
- "line": 209,
+ "line": 207,
"column": 3,
- "index": 12146
+ "index": 12006
}
},
{
@@ -154,14 +154,14 @@
"defaultMessage": "!!!Current Balance",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 210,
+ "line": 208,
"column": 18,
- "index": 12166
+ "index": 12026
},
"end": {
- "line": 213,
+ "line": 211,
"column": 3,
- "index": 12255
+ "index": 12115
}
},
{
@@ -169,14 +169,14 @@
"defaultMessage": "!!!Balance",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 214,
+ "line": 212,
"column": 11,
- "index": 12268
+ "index": 12128
},
"end": {
- "line": 217,
+ "line": 215,
"column": 3,
- "index": 12342
+ "index": 12202
}
},
{
@@ -184,14 +184,14 @@
"defaultMessage": "!!!Select Token",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 218,
+ "line": 216,
"column": 15,
- "index": 12359
+ "index": 12219
},
"end": {
- "line": 221,
+ "line": 219,
"column": 3,
- "index": 12442
+ "index": 12302
}
},
{
@@ -199,14 +199,14 @@
"defaultMessage": "!!!Market Price",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 222,
+ "line": 220,
"column": 15,
- "index": 12459
+ "index": 12319
},
"end": {
- "line": 225,
+ "line": 223,
"column": 3,
- "index": 12542
+ "index": 12402
}
},
{
@@ -214,14 +214,14 @@
"defaultMessage": "!!!Market price is the best price available on the market among several DEXes that lets you buy or sell an asset instantly.",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 226,
+ "line": 224,
"column": 19,
- "index": 12563
+ "index": 12423
},
"end": {
- "line": 230,
+ "line": 228,
"column": 3,
- "index": 12764
+ "index": 12624
}
},
{
@@ -229,14 +229,14 @@
"defaultMessage": "!!!Limit price in a DEX is a specific pre-set price at which you can trade an asset. Unlike market orders, which execute immediately at the current market price, limit orders are set to execute only when the market reaches the trader's specified price.",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 231,
+ "line": 229,
"column": 18,
- "index": 12784
+ "index": 12644
},
"end": {
- "line": 235,
+ "line": 233,
"column": 3,
- "index": 13113
+ "index": 12973
}
},
{
@@ -244,14 +244,14 @@
"defaultMessage": "!!!Limit Price",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 236,
+ "line": 234,
"column": 14,
- "index": 13129
+ "index": 12989
},
"end": {
- "line": 239,
+ "line": 237,
"column": 3,
- "index": 13210
+ "index": 13070
}
},
{
@@ -259,14 +259,14 @@
"defaultMessage": "!!!Slippage Tolerance",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 240,
+ "line": 238,
"column": 21,
- "index": 13233
+ "index": 13093
},
"end": {
- "line": 243,
+ "line": 241,
"column": 3,
- "index": 13328
+ "index": 13188
}
},
{
@@ -274,14 +274,14 @@
"defaultMessage": "!!!Slippage must be a number between 0 and 75 and have up to 1 decimal",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 244,
+ "line": 242,
"column": 26,
- "index": 13356
+ "index": 13216
},
"end": {
- "line": 247,
+ "line": 245,
"column": 3,
- "index": 13505
+ "index": 13365
}
},
{
@@ -289,14 +289,14 @@
"defaultMessage": "!!!Slippage Tolerance Info",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 248,
+ "line": 246,
"column": 25,
- "index": 13532
+ "index": 13392
},
"end": {
- "line": 251,
+ "line": 249,
"column": 3,
- "index": 13636
+ "index": 13496
}
},
{
@@ -304,14 +304,14 @@
"defaultMessage": "!!!Verified by {pool}",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 252,
+ "line": 250,
"column": 14,
- "index": 13652
+ "index": 13512
},
"end": {
- "line": 255,
+ "line": 253,
"column": 3,
- "index": 13740
+ "index": 13600
}
},
{
@@ -319,14 +319,14 @@
"defaultMessage": "!!!This asset is in my portfolio",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 256,
+ "line": 254,
"column": 12,
- "index": 13754
+ "index": 13614
},
"end": {
- "line": 259,
+ "line": 257,
"column": 3,
- "index": 13851
+ "index": 13711
}
},
{
@@ -334,14 +334,14 @@
"defaultMessage": "!!!Slippage tolerance is set as a percentage of the total swap value.",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 260,
+ "line": 258,
"column": 16,
- "index": 13869
+ "index": 13729
},
"end": {
- "line": 263,
+ "line": 261,
"column": 3,
- "index": 14007
+ "index": 13867
}
},
{
@@ -349,14 +349,14 @@
"defaultMessage": "!!!(auto)",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 264,
+ "line": 262,
"column": 12,
- "index": 14021
+ "index": 13881
},
"end": {
- "line": 267,
+ "line": 265,
"column": 3,
- "index": 14095
+ "index": 13955
}
},
{
@@ -364,14 +364,14 @@
"defaultMessage": "!!!change dex",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 268,
+ "line": 266,
"column": 14,
- "index": 14111
+ "index": 13971
},
"end": {
- "line": 271,
+ "line": 269,
"column": 3,
- "index": 14191
+ "index": 14051
}
},
{
@@ -379,14 +379,14 @@
"defaultMessage": "!!!Min-ADA is the minimum ADA amount required to be contained when holding or sending Cardano native assets.",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 272,
+ "line": 270,
"column": 14,
- "index": 14207
+ "index": 14067
},
"end": {
- "line": 276,
+ "line": 274,
"column": 3,
- "index": 14388
+ "index": 14248
}
},
{
@@ -394,14 +394,14 @@
"defaultMessage": "!!!Min ADA",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 277,
+ "line": 275,
"column": 19,
- "index": 14409
+ "index": 14269
},
"end": {
- "line": 280,
+ "line": 278,
"column": 3,
- "index": 14491
+ "index": 14351
}
},
{
@@ -409,14 +409,14 @@
"defaultMessage": "!!!Swap is not available on testnet",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 281,
+ "line": 279,
"column": 22,
- "index": 14515
+ "index": 14375
},
"end": {
- "line": 284,
+ "line": 282,
"column": 3,
- "index": 14625
+ "index": 14485
}
},
{
@@ -424,44 +424,14 @@
"defaultMessage": "!!!Switch to mainnet if you want to use the feature and swap real tokens",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 285,
+ "line": 283,
"column": 21,
- "index": 14648
+ "index": 14508
},
"end": {
- "line": 288,
+ "line": 286,
"column": 3,
- "index": 14794
- }
- },
- {
- "id": "swap.swapScreen.sanchoNoticeTitle",
- "defaultMessage": "!!!Swap is not available on sanchonet",
- "file": "src/features/Swap/common/strings.ts",
- "start": {
- "line": 289,
- "column": 21,
- "index": 14817
- },
- "end": {
- "line": 292,
- "column": 3,
- "index": 14928
- }
- },
- {
- "id": "swap.swapScreen.sanchoNoticeText",
- "defaultMessage": "!!!Switch to mainnet if you want to use the feature and swap real tokens",
- "file": "src/features/Swap/common/strings.ts",
- "start": {
- "line": 293,
- "column": 20,
- "index": 14950
- },
- "end": {
- "line": 296,
- "column": 3,
- "index": 15095
+ "index": 14654
}
},
{
@@ -469,14 +439,14 @@
"defaultMessage": "!!!Fees",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 297,
+ "line": 287,
"column": 17,
- "index": 15114
+ "index": 14673
},
"end": {
- "line": 300,
+ "line": 290,
"column": 3,
- "index": 15191
+ "index": 14750
}
},
{
@@ -484,14 +454,14 @@
"defaultMessage": "!!!Liquidity provider fee",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 301,
+ "line": 291,
"column": 20,
- "index": 15213
+ "index": 14772
},
"end": {
- "line": 304,
+ "line": 294,
"column": 3,
- "index": 15311
+ "index": 14870
}
},
{
@@ -499,14 +469,14 @@
"defaultMessage": "!!!Liquidity provider fee",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 305,
+ "line": 295,
"column": 18,
- "index": 15331
+ "index": 14890
},
"end": {
- "line": 308,
+ "line": 298,
"column": 3,
- "index": 15427
+ "index": 14986
}
},
{
@@ -514,14 +484,14 @@
"defaultMessage": "!!!Liquidity provider fee is a fixed {fee}% operational fee from the whole transaction volume, that is taken to support DEX “liquidity” allowing traders to buy and sell assets on the decentralized Cardano network.",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 309,
+ "line": 299,
"column": 24,
- "index": 15453
+ "index": 15012
},
"end": {
- "line": 313,
+ "line": 303,
"column": 3,
- "index": 15756
+ "index": 15315
}
},
{
@@ -529,14 +499,14 @@
"defaultMessage": "!!!Minimum amount of assets you can get because of the slippage tolerance.",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 314,
+ "line": 304,
"column": 19,
- "index": 15777
+ "index": 15336
},
"end": {
- "line": 317,
+ "line": 307,
"column": 3,
- "index": 15923
+ "index": 15482
}
},
{
@@ -544,14 +514,14 @@
"defaultMessage": "!!!Min Received",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 318,
+ "line": 308,
"column": 24,
- "index": 15949
+ "index": 15508
},
"end": {
- "line": 321,
+ "line": 311,
"column": 3,
- "index": 16041
+ "index": 15600
}
},
{
@@ -559,14 +529,14 @@
"defaultMessage": "!!!Enter a value from 0% to 75%. You can also enter up to 1 decimal",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 322,
+ "line": 312,
"column": 17,
- "index": 16060
+ "index": 15619
},
"end": {
- "line": 325,
+ "line": 315,
"column": 3,
- "index": 16197
+ "index": 15756
}
},
{
@@ -574,14 +544,14 @@
"defaultMessage": "!!!{pool} verification",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 326,
+ "line": 316,
"column": 20,
- "index": 16219
+ "index": 15778
},
"end": {
- "line": 329,
+ "line": 319,
"column": 3,
- "index": 16314
+ "index": 15873
}
},
{
@@ -589,14 +559,14 @@
"defaultMessage": "!!!Volume, 24h",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 330,
+ "line": 320,
"column": 10,
- "index": 16326
+ "index": 15885
},
"end": {
- "line": 333,
+ "line": 323,
"column": 3,
- "index": 16403
+ "index": 15962
}
},
{
@@ -604,14 +574,14 @@
"defaultMessage": "!!!Cardano projects that list their own tokens can apply for an additional {pool} verification. This verification is a manual validation that {pool} team performs with the help of Cardano Foundation.",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 334,
+ "line": 324,
"column": 24,
- "index": 16429
+ "index": 15988
},
"end": {
- "line": 338,
+ "line": 328,
"column": 3,
- "index": 16711
+ "index": 16270
}
},
{
@@ -619,14 +589,14 @@
"defaultMessage": "!!! Price",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 339,
+ "line": 329,
"column": 9,
- "index": 16722
+ "index": 16281
},
"end": {
- "line": 342,
+ "line": 332,
"column": 3,
- "index": 16784
+ "index": 16343
}
},
{
@@ -634,14 +604,14 @@
"defaultMessage": "!!!No assets found for this pair",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 343,
+ "line": 333,
"column": 17,
- "index": 16803
+ "index": 16362
},
"end": {
- "line": 346,
+ "line": 336,
"column": 3,
- "index": 16905
+ "index": 16464
}
},
{
@@ -649,14 +619,14 @@
"defaultMessage": "!!!No assets found for \"{search}\"",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 347,
+ "line": 337,
"column": 20,
- "index": 16927
+ "index": 16486
},
"end": {
- "line": 350,
+ "line": 340,
"column": 3,
- "index": 17033
+ "index": 16592
}
},
{
@@ -664,14 +634,14 @@
"defaultMessage": "!!!Each verified tokens gets",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 351,
+ "line": 341,
"column": 21,
- "index": 17056
+ "index": 16615
},
"end": {
- "line": 354,
+ "line": 344,
"column": 3,
- "index": 17158
+ "index": 16717
}
},
{
@@ -679,14 +649,14 @@
"defaultMessage": "!!!verified badge",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 355,
+ "line": 345,
"column": 17,
- "index": 17177
+ "index": 16736
},
"end": {
- "line": 358,
+ "line": 348,
"column": 3,
- "index": 17264
+ "index": 16823
}
},
{
@@ -694,14 +664,14 @@
"defaultMessage": "!!!Open orders",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 359,
+ "line": 349,
"column": 14,
- "index": 17280
+ "index": 16839
},
"end": {
- "line": 362,
+ "line": 352,
"column": 3,
- "index": 17361
+ "index": 16920
}
},
{
@@ -709,14 +679,14 @@
"defaultMessage": "!!!Completed orders",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 363,
+ "line": 353,
"column": 19,
- "index": 17382
+ "index": 16941
},
"end": {
- "line": 366,
+ "line": 356,
"column": 3,
- "index": 17473
+ "index": 17032
}
},
{
@@ -724,14 +694,14 @@
"defaultMessage": "!!!TVL",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 367,
+ "line": 357,
"column": 7,
- "index": 17482
+ "index": 17041
},
"end": {
- "line": 370,
+ "line": 360,
"column": 3,
- "index": 17548
+ "index": 17107
}
},
{
@@ -739,14 +709,14 @@
"defaultMessage": "!!! Dex Fee",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 371,
+ "line": 361,
"column": 11,
- "index": 17561
+ "index": 17120
},
"end": {
- "line": 374,
+ "line": 364,
"column": 3,
- "index": 17636
+ "index": 17195
}
},
{
@@ -754,14 +724,14 @@
"defaultMessage": "!!! Batcher Fee",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 375,
+ "line": 365,
"column": 14,
- "index": 17652
+ "index": 17211
},
"end": {
- "line": 378,
+ "line": 368,
"column": 3,
- "index": 17734
+ "index": 17293
}
},
{
@@ -769,14 +739,14 @@
"defaultMessage": "!!!Limit price",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 379,
+ "line": 369,
"column": 26,
- "index": 17762
+ "index": 17321
},
"end": {
- "line": 382,
+ "line": 372,
"column": 3,
- "index": 17855
+ "index": 17414
}
},
{
@@ -784,14 +754,14 @@
"defaultMessage": "!!!Are you sure you want to proceed this order with the limit price that is 10% or more higher than the\nmarket price?",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 383,
+ "line": 373,
"column": 32,
- "index": 17889
+ "index": 17448
},
"end": {
- "line": 388,
+ "line": 378,
"column": 3,
- "index": 18109
+ "index": 17668
}
},
{
@@ -799,14 +769,14 @@
"defaultMessage": "!!!Your limit price",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 389,
+ "line": 379,
"column": 30,
- "index": 18141
+ "index": 17700
},
"end": {
- "line": 392,
+ "line": 382,
"column": 3,
- "index": 18243
+ "index": 17802
}
},
{
@@ -814,14 +784,14 @@
"defaultMessage": "!!!Market price",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 393,
+ "line": 383,
"column": 32,
- "index": 18277
+ "index": 17836
},
"end": {
- "line": 396,
+ "line": 386,
"column": 3,
- "index": 18377
+ "index": 17936
}
},
{
@@ -829,14 +799,14 @@
"defaultMessage": "!!!Back",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 397,
+ "line": 387,
"column": 25,
- "index": 18404
+ "index": 17963
},
"end": {
- "line": 400,
+ "line": 390,
"column": 3,
- "index": 18489
+ "index": 18048
}
},
{
@@ -844,14 +814,14 @@
"defaultMessage": "!!!Swap",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 401,
+ "line": 391,
"column": 28,
- "index": 18519
+ "index": 18078
},
"end": {
- "line": 404,
+ "line": 394,
"column": 3,
- "index": 18607
+ "index": 18166
}
},
{
@@ -859,14 +829,14 @@
"defaultMessage": "!!!Transaction submitted",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 405,
+ "line": 395,
"column": 21,
- "index": 18630
+ "index": 18189
},
"end": {
- "line": 408,
+ "line": 398,
"column": 3,
- "index": 18728
+ "index": 18287
}
},
{
@@ -874,14 +844,14 @@
"defaultMessage": "!!!Your transactions will be displayed both in the list of transaction and Open swap orders",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 409,
+ "line": 399,
"column": 22,
- "index": 18752
+ "index": 18311
},
"end": {
- "line": 412,
+ "line": 402,
"column": 3,
- "index": 18918
+ "index": 18477
}
},
{
@@ -889,14 +859,14 @@
"defaultMessage": "!!! dex",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 413,
+ "line": 403,
"column": 7,
- "index": 18927
+ "index": 18486
},
"end": {
- "line": 416,
+ "line": 406,
"column": 3,
- "index": 18994
+ "index": 18553
}
},
{
@@ -904,14 +874,14 @@
"defaultMessage": "!!!see on explorer",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 417,
+ "line": 407,
"column": 17,
- "index": 19013
+ "index": 18572
},
"end": {
- "line": 420,
+ "line": 410,
"column": 3,
- "index": 19101
+ "index": 18660
}
},
{
@@ -919,14 +889,14 @@
"defaultMessage": "!!!Asset",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 421,
+ "line": 411,
"column": 9,
- "index": 19112
+ "index": 18671
},
"end": {
- "line": 424,
+ "line": 414,
"column": 3,
- "index": 19185
+ "index": 18744
}
},
{
@@ -934,14 +904,14 @@
"defaultMessage": "!!!Clear",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 425,
+ "line": 415,
"column": 9,
- "index": 19196
+ "index": 18755
},
"end": {
- "line": 428,
+ "line": 418,
"column": 3,
- "index": 19257
+ "index": 18816
}
},
{
@@ -949,14 +919,14 @@
"defaultMessage": "!!!Sign transaction",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 429,
+ "line": 419,
"column": 19,
- "index": 19278
+ "index": 18837
},
"end": {
- "line": 432,
+ "line": 422,
"column": 3,
- "index": 19360
+ "index": 18919
}
},
{
@@ -964,14 +934,14 @@
"defaultMessage": "!!!Spending Password",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 433,
+ "line": 423,
"column": 20,
- "index": 19382
+ "index": 18941
},
"end": {
- "line": 436,
+ "line": 426,
"column": 3,
- "index": 19466
+ "index": 19025
}
},
{
@@ -979,14 +949,14 @@
"defaultMessage": "!!!Enter spending password to sign this transaction",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 437,
+ "line": 427,
"column": 25,
- "index": 19493
+ "index": 19052
},
"end": {
- "line": 440,
+ "line": 430,
"column": 3,
- "index": 19613
+ "index": 19172
}
},
{
@@ -994,14 +964,14 @@
"defaultMessage": "!!!Sign",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 441,
+ "line": 431,
"column": 8,
- "index": 19623
+ "index": 19182
},
"end": {
- "line": 444,
+ "line": 434,
"column": 3,
- "index": 19682
+ "index": 19241
}
},
{
@@ -1009,14 +979,14 @@
"defaultMessage": "!!!Swap",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 445,
+ "line": 435,
"column": 14,
- "index": 19698
+ "index": 19257
},
"end": {
- "line": 448,
+ "line": 438,
"column": 3,
- "index": 19757
+ "index": 19316
}
},
{
@@ -1024,14 +994,14 @@
"defaultMessage": "!!!completed orders",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 449,
+ "line": 439,
"column": 23,
- "index": 19782
+ "index": 19341
},
"end": {
- "line": 452,
+ "line": 442,
"column": 3,
- "index": 19867
+ "index": 19426
}
},
{
@@ -1039,14 +1009,14 @@
"defaultMessage": "!!!open orders",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 453,
+ "line": 443,
"column": 18,
- "index": 19887
+ "index": 19446
},
"end": {
- "line": 456,
+ "line": 446,
"column": 3,
- "index": 19962
+ "index": 19521
}
},
{
@@ -1054,14 +1024,14 @@
"defaultMessage": "!!!Confirm order cancellation",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 457,
+ "line": 447,
"column": 24,
- "index": 19988
+ "index": 19547
},
"end": {
- "line": 460,
+ "line": 450,
"column": 3,
- "index": 20085
+ "index": 19644
}
},
{
@@ -1069,14 +1039,14 @@
"defaultMessage": "!!!Cancel order",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 461,
+ "line": 451,
"column": 29,
- "index": 20116
+ "index": 19675
},
"end": {
- "line": 464,
+ "line": 454,
"column": 3,
- "index": 20203
+ "index": 19762
}
},
{
@@ -1084,14 +1054,14 @@
"defaultMessage": "!!!Are you sure you want to cancel this order?",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 465,
+ "line": 455,
"column": 31,
- "index": 20236
+ "index": 19795
},
"end": {
- "line": 468,
+ "line": 458,
"column": 3,
- "index": 20357
+ "index": 19916
}
},
{
@@ -1099,14 +1069,14 @@
"defaultMessage": "!!!Learn more about swap orders in Yoroi",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 469,
+ "line": 459,
"column": 23,
- "index": 20382
+ "index": 19941
},
"end": {
- "line": 472,
+ "line": 462,
"column": 3,
- "index": 20489
+ "index": 20048
}
},
{
@@ -1114,14 +1084,14 @@
"defaultMessage": "!!!Asset price",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 473,
+ "line": 463,
"column": 29,
- "index": 20520
+ "index": 20079
},
"end": {
- "line": 476,
+ "line": 466,
"column": 3,
- "index": 20607
+ "index": 20166
}
},
{
@@ -1129,14 +1099,14 @@
"defaultMessage": "!!!Asset amount",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 477,
+ "line": 467,
"column": 30,
- "index": 20639
+ "index": 20198
},
"end": {
- "line": 480,
+ "line": 470,
"column": 3,
- "index": 20728
+ "index": 20287
}
},
{
@@ -1144,14 +1114,14 @@
"defaultMessage": "!!!Total returned",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 481,
+ "line": 471,
"column": 32,
- "index": 20762
+ "index": 20321
},
"end": {
- "line": 484,
+ "line": 474,
"column": 3,
- "index": 20855
+ "index": 20414
}
},
{
@@ -1159,14 +1129,14 @@
"defaultMessage": "!!!Cancellation Fee",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 485,
+ "line": 475,
"column": 34,
- "index": 20891
+ "index": 20450
},
"end": {
- "line": 488,
+ "line": 478,
"column": 3,
- "index": 20988
+ "index": 20547
}
},
{
@@ -1174,14 +1144,14 @@
"defaultMessage": "!!!Confirm",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 489,
+ "line": 479,
"column": 26,
- "index": 21016
+ "index": 20575
},
"end": {
- "line": 492,
+ "line": 482,
"column": 3,
- "index": 21096
+ "index": 20655
}
},
{
@@ -1189,14 +1159,14 @@
"defaultMessage": "!!!Back",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 493,
+ "line": 483,
"column": 23,
- "index": 21121
+ "index": 20680
},
"end": {
- "line": 496,
+ "line": 486,
"column": 3,
- "index": 21195
+ "index": 20754
}
},
{
@@ -1204,14 +1174,14 @@
"defaultMessage": "!!!Total",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 497,
+ "line": 487,
"column": 19,
- "index": 21216
+ "index": 20775
},
"end": {
- "line": 500,
+ "line": 490,
"column": 3,
- "index": 21286
+ "index": 20845
}
},
{
@@ -1219,14 +1189,14 @@
"defaultMessage": "!!!Liquidity Pool",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 501,
+ "line": 491,
"column": 27,
- "index": 21315
+ "index": 20874
},
"end": {
- "line": 504,
+ "line": 494,
"column": 3,
- "index": 21402
+ "index": 20961
}
},
{
@@ -1234,14 +1204,14 @@
"defaultMessage": "!!!Time Created",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 505,
+ "line": 495,
"column": 25,
- "index": 21429
+ "index": 20988
},
"end": {
- "line": 508,
+ "line": 498,
"column": 3,
- "index": 21512
+ "index": 21071
}
},
{
@@ -1249,14 +1219,14 @@
"defaultMessage": "!!!Time Completed",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 509,
+ "line": 499,
"column": 27,
- "index": 21541
+ "index": 21100
},
"end": {
- "line": 512,
+ "line": 502,
"column": 3,
- "index": 21628
+ "index": 21187
}
},
{
@@ -1264,14 +1234,14 @@
"defaultMessage": "!!!Transaction ID",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 513,
+ "line": 503,
"column": 18,
- "index": 21648
+ "index": 21207
},
"end": {
- "line": 516,
+ "line": 506,
"column": 3,
- "index": 21726
+ "index": 21285
}
},
{
@@ -1279,14 +1249,14 @@
"defaultMessage": "!!!Choose Connection Method",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 517,
+ "line": 507,
"column": 26,
- "index": 21754
+ "index": 21313
},
"end": {
- "line": 520,
+ "line": 510,
"column": 3,
- "index": 21872
+ "index": 21431
}
},
{
@@ -1294,14 +1264,14 @@
"defaultMessage": "!!!Choose this option if you want to connect to a Ledger Nano model X or S using an on-the-go USB cable adaptor:",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 521,
+ "line": 511,
"column": 18,
- "index": 21892
+ "index": 21451
},
"end": {
- "line": 526,
+ "line": 516,
"column": 3,
- "index": 22121
+ "index": 21680
}
},
{
@@ -1309,14 +1279,14 @@
"defaultMessage": "!!!Connect with USB",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 527,
+ "line": 517,
"column": 13,
- "index": 22136
+ "index": 21695
},
"end": {
- "line": 530,
+ "line": 520,
"column": 3,
- "index": 22250
+ "index": 21809
}
},
{
@@ -1324,14 +1294,14 @@
"defaultMessage": "!!! USB connection is blocked by iOS devices",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 531,
+ "line": 521,
"column": 26,
- "index": 22278
+ "index": 21837
},
"end": {
- "line": 534,
+ "line": 524,
"column": 3,
- "index": 22430
+ "index": 21989
}
},
{
@@ -1339,14 +1309,14 @@
"defaultMessage": "!!!Choose this option if you want to connect to a Ledger Nano model X through Bluetooth:",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 535,
+ "line": 525,
"column": 24,
- "index": 22456
+ "index": 22015
},
"end": {
- "line": 538,
+ "line": 528,
"column": 3,
- "index": 22650
+ "index": 22209
}
},
{
@@ -1354,14 +1324,14 @@
"defaultMessage": "!!!Connect with Bluetooth",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 539,
+ "line": 529,
"column": 19,
- "index": 22671
+ "index": 22230
},
"end": {
- "line": 542,
+ "line": 532,
"column": 3,
- "index": 22797
+ "index": 22356
}
},
{
@@ -1369,14 +1339,14 @@
"defaultMessage": "!!!Connect with Bluetooth",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 543,
+ "line": 533,
"column": 18,
- "index": 22817
+ "index": 22376
},
"end": {
- "line": 546,
+ "line": 536,
"column": 3,
- "index": 22927
+ "index": 22486
}
},
{
@@ -1384,14 +1354,14 @@
"defaultMessage": "!!!Service unavailable",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 547,
+ "line": 537,
"column": 22,
- "index": 22951
+ "index": 22510
},
"end": {
- "line": 550,
+ "line": 540,
"column": 3,
- "index": 23045
+ "index": 22604
}
},
{
@@ -1399,14 +1369,14 @@
"defaultMessage": "!!!The server is temporarily busy due to maintenance downtime or capacity problems",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 551,
+ "line": 541,
"column": 26,
- "index": 23073
+ "index": 22632
},
"end": {
- "line": 554,
+ "line": 544,
"column": 3,
- "index": 23231
+ "index": 22790
}
},
{
@@ -1414,14 +1384,14 @@
"defaultMessage": "!!!GO TO transactions",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 555,
+ "line": 545,
"column": 20,
- "index": 23253
+ "index": 22812
},
"end": {
- "line": 558,
+ "line": 548,
"column": 3,
- "index": 23359
+ "index": 22918
}
},
{
@@ -1429,14 +1399,14 @@
"defaultMessage": "!!!You have",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 561,
+ "line": 551,
"column": 11,
- "index": 23418
+ "index": 22977
},
"end": {
- "line": 564,
+ "line": 554,
"column": 3,
- "index": 23513
+ "index": 23072
}
},
{
@@ -1444,14 +1414,14 @@
"defaultMessage": "!!!No assets found",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 565,
+ "line": 555,
"column": 12,
- "index": 23527
+ "index": 23086
},
"end": {
- "line": 568,
+ "line": 558,
"column": 3,
- "index": 23630
+ "index": 23189
}
},
{
@@ -1459,14 +1429,14 @@
"defaultMessage": "!!!found",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 569,
+ "line": 559,
"column": 9,
- "index": 23641
+ "index": 23200
},
"end": {
- "line": 572,
+ "line": 562,
"column": 3,
- "index": 23731
+ "index": 23290
}
},
{
@@ -1474,14 +1444,14 @@
"defaultMessage": "!!!Search tokens",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 573,
+ "line": 563,
"column": 16,
- "index": 23749
+ "index": 23308
},
"end": {
- "line": 576,
+ "line": 566,
"column": 3,
- "index": 23845
+ "index": 23404
}
},
{
@@ -1489,14 +1459,14 @@
"defaultMessage": "!!!Select asset",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 577,
+ "line": 567,
"column": 20,
- "index": 23867
+ "index": 23426
},
"end": {
- "line": 580,
+ "line": 570,
"column": 3,
- "index": 23956
+ "index": 23515
}
},
{
@@ -1504,14 +1474,14 @@
"defaultMessage": "!!!Next",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 581,
+ "line": 571,
"column": 8,
- "index": 23966
+ "index": 23525
},
"end": {
- "line": 584,
+ "line": 574,
"column": 3,
- "index": 24025
+ "index": 23584
}
},
{
@@ -1519,14 +1489,14 @@
"defaultMessage": "!!!Generate",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 585,
+ "line": 575,
"column": 20,
- "index": 24047
+ "index": 23606
},
"end": {
- "line": 588,
+ "line": 578,
"column": 3,
- "index": 24145
+ "index": 23704
}
},
{
@@ -1534,14 +1504,14 @@
"defaultMessage": "!!!Collateral not found",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 589,
+ "line": 579,
"column": 22,
- "index": 24169
+ "index": 23728
},
"end": {
- "line": 592,
+ "line": 582,
"column": 3,
- "index": 24281
+ "index": 23840
}
},
{
@@ -1549,14 +1519,14 @@
"defaultMessage": "!!!To continue with this action, you need to generate a collateral",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 593,
+ "line": 583,
"column": 22,
- "index": 24305
+ "index": 23864
},
"end": {
- "line": 596,
+ "line": 586,
"column": 3,
- "index": 24460
+ "index": 24019
}
},
{
@@ -1564,14 +1534,14 @@
"defaultMessage": "!!!Pending Collateral UTxO",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 597,
+ "line": 587,
"column": 28,
- "index": 24490
+ "index": 24049
},
"end": {
- "line": 600,
+ "line": 590,
"column": 3,
- "index": 24611
+ "index": 24170
}
},
{
@@ -1579,14 +1549,14 @@
"defaultMessage": "!!!The collateral UTxO transaction you've submitted is currently in the processing stage, and it may require a few minutes to complete. Please refresh your interface and attempt the action again shortly",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 601,
+ "line": 591,
"column": 23,
- "index": 24636
+ "index": 24195
},
"end": {
- "line": 605,
+ "line": 595,
"column": 3,
- "index": 24934
+ "index": 24493
}
},
{
@@ -1594,14 +1564,14 @@
"defaultMessage": "!!!Transaction failed",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 606,
+ "line": 596,
"column": 17,
- "index": 24953
+ "index": 24512
},
"end": {
- "line": 609,
+ "line": 599,
"column": 3,
- "index": 25055
+ "index": 24614
}
},
{
@@ -1609,14 +1579,14 @@
"defaultMessage": "!!!Your transaction has not been processed properly due to technical issues",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 610,
+ "line": 600,
"column": 16,
- "index": 25073
+ "index": 24632
},
"end": {
- "line": 613,
+ "line": 603,
"column": 3,
- "index": 25228
+ "index": 24787
}
},
{
@@ -1624,14 +1594,14 @@
"defaultMessage": "!!!Try again",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 614,
+ "line": 604,
"column": 18,
- "index": 25248
+ "index": 24807
},
"end": {
- "line": 617,
+ "line": 607,
"column": 3,
- "index": 25342
+ "index": 24901
}
},
{
@@ -1639,14 +1609,14 @@
"defaultMessage": "!!!Not enough balance",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 618,
+ "line": 608,
"column": 20,
- "index": 25364
+ "index": 24923
},
"end": {
- "line": 621,
+ "line": 611,
"column": 3,
- "index": 25458
+ "index": 25017
}
},
{
@@ -1654,14 +1624,14 @@
"defaultMessage": "!!!Not enough supply in the pool",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 622,
+ "line": 612,
"column": 19,
- "index": 25479
+ "index": 25038
},
"end": {
- "line": 625,
+ "line": 615,
"column": 3,
- "index": 25583
+ "index": 25142
}
},
{
@@ -1669,14 +1639,14 @@
"defaultMessage": "!!!Not enough balance, please consider the fees",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 626,
+ "line": 616,
"column": 23,
- "index": 25608
+ "index": 25167
},
"end": {
- "line": 629,
+ "line": 619,
"column": 3,
- "index": 25731
+ "index": 25290
}
},
{
@@ -1684,14 +1654,14 @@
"defaultMessage": "!!! This pair is not available in any liquidity pool",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 630,
+ "line": 620,
"column": 10,
- "index": 25743
+ "index": 25302
},
"end": {
- "line": 633,
+ "line": 623,
"column": 3,
- "index": 25858
+ "index": 25417
}
},
{
@@ -1699,14 +1669,14 @@
"defaultMessage": "!!!Continue on Ledger",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 634,
+ "line": 624,
"column": 20,
- "index": 25880
+ "index": 25439
},
"end": {
- "line": 637,
+ "line": 627,
"column": 3,
- "index": 25980
+ "index": 25539
}
},
{
@@ -1714,14 +1684,14 @@
"defaultMessage": "!!!Continue",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 638,
+ "line": 628,
"column": 12,
- "index": 25994
+ "index": 25553
},
"end": {
- "line": 641,
+ "line": 631,
"column": 3,
- "index": 26097
+ "index": 25656
}
},
{
@@ -1729,14 +1699,14 @@
"defaultMessage": "!!!Slippage Warning",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 642,
+ "line": 632,
"column": 24,
- "index": 26123
+ "index": 25682
},
"end": {
- "line": 645,
+ "line": 635,
"column": 3,
- "index": 26217
+ "index": 25776
}
},
{
@@ -1744,14 +1714,14 @@
"defaultMessage": "!!!Are you sure you want to proceed this order with the current slippage tolerance? It could result in receiving no assets.",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 646,
+ "line": 636,
"column": 23,
- "index": 26242
+ "index": 25801
},
"end": {
- "line": 650,
+ "line": 640,
"column": 3,
- "index": 26445
+ "index": 26004
}
},
{
@@ -1759,14 +1729,14 @@
"defaultMessage": "!!!Your slippage tolerance",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 651,
+ "line": 641,
"column": 31,
- "index": 26478
+ "index": 26037
},
"end": {
- "line": 654,
+ "line": 644,
"column": 3,
- "index": 26571
+ "index": 26130
}
},
{
@@ -1774,14 +1744,14 @@
"defaultMessage": "!!!Increase the amount to proceed or change slippage tolerance to 0%",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 655,
+ "line": 645,
"column": 31,
- "index": 26604
+ "index": 26163
},
"end": {
- "line": 658,
+ "line": 648,
"column": 3,
- "index": 26739
+ "index": 26298
}
},
{
@@ -1789,14 +1759,14 @@
"defaultMessage": "!!!No orders available yet",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 659,
+ "line": 649,
"column": 19,
- "index": 26760
+ "index": 26319
},
"end": {
- "line": 662,
+ "line": 652,
"column": 3,
- "index": 26858
+ "index": 26417
}
},
{
@@ -1804,14 +1774,14 @@
"defaultMessage": "!!!Start doing SWAP to see your open orders here",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 663,
+ "line": 653,
"column": 22,
- "index": 26882
+ "index": 26441
},
"end": {
- "line": 666,
+ "line": 656,
"column": 3,
- "index": 27005
+ "index": 26564
}
},
{
@@ -1819,14 +1789,14 @@
"defaultMessage": "!!!No orders completed yet",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 667,
+ "line": 657,
"column": 24,
- "index": 27031
+ "index": 26590
},
"end": {
- "line": 670,
+ "line": 660,
"column": 3,
- "index": 27134
+ "index": 26693
}
},
{
@@ -1834,14 +1804,14 @@
"defaultMessage": "!!!No orders found for",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 671,
+ "line": 661,
"column": 30,
- "index": 27166
+ "index": 26725
},
"end": {
- "line": 674,
+ "line": 664,
"column": 3,
- "index": 27271
+ "index": 26830
}
},
{
@@ -1849,14 +1819,14 @@
"defaultMessage": "!!!No orders found for",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 675,
+ "line": 665,
"column": 25,
- "index": 27298
+ "index": 26857
},
"end": {
- "line": 678,
+ "line": 668,
"column": 3,
- "index": 27398
+ "index": 26957
}
},
{
@@ -1864,14 +1834,14 @@
"defaultMessage": "!!!Price Impact",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 679,
+ "line": 669,
"column": 15,
- "index": 27415
+ "index": 26974
},
"end": {
- "line": 682,
+ "line": 672,
"column": 3,
- "index": 27498
+ "index": 27057
}
},
{
@@ -1879,14 +1849,14 @@
"defaultMessage": "!!!Price impact over {riskValue}%",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 683,
+ "line": 673,
"column": 23,
- "index": 27523
+ "index": 27082
},
"end": {
- "line": 686,
+ "line": 676,
"column": 3,
- "index": 27632
+ "index": 27191
}
},
{
@@ -1894,14 +1864,14 @@
"defaultMessage": "!!!may cause a significant loss of funds. Please bear this in mind and proceed with an extra caution.",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 687,
+ "line": 677,
"column": 30,
- "index": 27664
+ "index": 27223
},
"end": {
- "line": 691,
+ "line": 681,
"column": 3,
- "index": 27854
+ "index": 27413
}
},
{
@@ -1909,14 +1879,14 @@
"defaultMessage": "!!!may cause a difference in the amount you actually receive. Consider this at your own risk.",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 692,
+ "line": 682,
"column": 34,
- "index": 27890
+ "index": 27449
},
"end": {
- "line": 695,
+ "line": 685,
"column": 3,
- "index": 28070
+ "index": 27629
}
},
{
@@ -1924,14 +1894,14 @@
"defaultMessage": "!!!Price impact is a difference between the actual market price and your price due to trade size.",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 696,
+ "line": 686,
"column": 19,
- "index": 28091
+ "index": 27650
},
"end": {
- "line": 699,
+ "line": 689,
"column": 3,
- "index": 28260
+ "index": 27819
}
},
{
@@ -1939,14 +1909,14 @@
"defaultMessage": "!!Warning",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 700,
+ "line": 690,
"column": 11,
- "index": 28273
+ "index": 27832
},
"end": {
- "line": 703,
+ "line": 693,
"column": 3,
- "index": 28367
+ "index": 27926
}
},
{
@@ -1954,14 +1924,14 @@
"defaultMessage": "!!!Back to swap orders",
"file": "src/features/Swap/common/strings.ts",
"start": {
- "line": 704,
+ "line": 694,
"column": 20,
- "index": 28389
+ "index": 27948
},
"end": {
- "line": 707,
+ "line": 697,
"column": 3,
- "index": 28484
+ "index": 28043
}
}
]
\ No newline at end of file
diff --git a/apps/wallet-mobile/translations/messages/src/features/Transactions/TxHistoryNavigator.json b/apps/wallet-mobile/translations/messages/src/features/Transactions/TxHistoryNavigator.json
index b3bc604f57..28c77b73ba 100644
--- a/apps/wallet-mobile/translations/messages/src/features/Transactions/TxHistoryNavigator.json
+++ b/apps/wallet-mobile/translations/messages/src/features/Transactions/TxHistoryNavigator.json
@@ -4,14 +4,14 @@
"defaultMessage": "!!!Receive",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 404,
+ "line": 394,
"column": 16,
- "index": 14827
+ "index": 14436
},
"end": {
- "line": 407,
+ "line": 397,
"column": 3,
- "index": 14916
+ "index": 14525
}
},
{
@@ -19,14 +19,14 @@
"defaultMessage": "!!!Address details",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 408,
+ "line": 398,
"column": 32,
- "index": 14950
+ "index": 14559
},
"end": {
- "line": 411,
+ "line": 401,
"column": 3,
- "index": 15063
+ "index": 14672
}
},
{
@@ -34,14 +34,14 @@
"defaultMessage": "!!!Swap",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 412,
+ "line": 402,
"column": 13,
- "index": 15078
+ "index": 14687
},
"end": {
- "line": 415,
+ "line": 405,
"column": 3,
- "index": 15151
+ "index": 14760
}
},
{
@@ -49,14 +49,14 @@
"defaultMessage": "!!!Swap from",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 416,
+ "line": 406,
"column": 17,
- "index": 15170
+ "index": 14779
},
"end": {
- "line": 419,
+ "line": 409,
"column": 3,
- "index": 15247
+ "index": 14856
}
},
{
@@ -64,14 +64,14 @@
"defaultMessage": "!!!Swap to",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 420,
+ "line": 410,
"column": 15,
- "index": 15264
+ "index": 14873
},
"end": {
- "line": 423,
+ "line": 413,
"column": 3,
- "index": 15337
+ "index": 14946
}
},
{
@@ -79,14 +79,14 @@
"defaultMessage": "!!!Swap review",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 424,
+ "line": 414,
"column": 19,
- "index": 15358
+ "index": 14967
},
"end": {
- "line": 427,
+ "line": 417,
"column": 3,
- "index": 15430
+ "index": 15039
}
},
{
@@ -94,14 +94,14 @@
"defaultMessage": "!!!Slippage Tolerance",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 428,
+ "line": 418,
"column": 21,
- "index": 15453
+ "index": 15062
},
"end": {
- "line": 431,
+ "line": 421,
"column": 3,
- "index": 15548
+ "index": 15157
}
},
{
@@ -109,14 +109,14 @@
"defaultMessage": "!!!Select pool",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 432,
+ "line": 422,
"column": 14,
- "index": 15564
+ "index": 15173
},
"end": {
- "line": 435,
+ "line": 425,
"column": 3,
- "index": 15645
+ "index": 15254
}
},
{
@@ -124,14 +124,14 @@
"defaultMessage": "!!!Send",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 436,
+ "line": 426,
"column": 13,
- "index": 15660
+ "index": 15269
},
"end": {
- "line": 439,
+ "line": 429,
"column": 3,
- "index": 15740
+ "index": 15349
}
},
{
@@ -139,14 +139,14 @@
"defaultMessage": "!!!Scan QR code address",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 440,
+ "line": 430,
"column": 18,
- "index": 15760
+ "index": 15369
},
"end": {
- "line": 443,
+ "line": 433,
"column": 3,
- "index": 15861
+ "index": 15470
}
},
{
@@ -154,14 +154,14 @@
"defaultMessage": "!!!Select asset",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 444,
+ "line": 434,
"column": 20,
- "index": 15883
+ "index": 15492
},
"end": {
- "line": 447,
+ "line": 437,
"column": 3,
- "index": 15972
+ "index": 15581
}
},
{
@@ -169,14 +169,14 @@
"defaultMessage": "!!!Assets added",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 448,
+ "line": 438,
"column": 26,
- "index": 16000
+ "index": 15609
},
"end": {
- "line": 451,
+ "line": 441,
"column": 3,
- "index": 16101
+ "index": 15710
}
},
{
@@ -184,14 +184,14 @@
"defaultMessage": "!!!Edit amount",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 452,
+ "line": 442,
"column": 19,
- "index": 16122
+ "index": 15731
},
"end": {
- "line": 455,
+ "line": 445,
"column": 3,
- "index": 16215
+ "index": 15824
}
},
{
@@ -199,14 +199,14 @@
"defaultMessage": "!!!Confirm",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 456,
+ "line": 446,
"column": 16,
- "index": 16233
+ "index": 15842
},
"end": {
- "line": 459,
+ "line": 449,
"column": 3,
- "index": 16319
+ "index": 15928
}
},
{
@@ -214,14 +214,14 @@
"defaultMessage": "!!!Share this address to receive payments. To protect your privacy, new addresses are generated automatically once you use them.",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 460,
+ "line": 450,
"column": 19,
- "index": 16340
+ "index": 15949
},
"end": {
- "line": 466,
+ "line": 456,
"column": 3,
- "index": 16578
+ "index": 16187
}
},
{
@@ -229,14 +229,14 @@
"defaultMessage": "!!!Confirm transaction",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 467,
+ "line": 457,
"column": 27,
- "index": 16607
+ "index": 16216
},
"end": {
- "line": 470,
+ "line": 460,
"column": 3,
- "index": 16700
+ "index": 16309
}
},
{
@@ -244,14 +244,14 @@
"defaultMessage": "!!!Please scan a QR code",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 471,
+ "line": 461,
"column": 13,
- "index": 16715
+ "index": 16324
},
"end": {
- "line": 474,
+ "line": 464,
"column": 3,
- "index": 16790
+ "index": 16399
}
},
{
@@ -259,14 +259,14 @@
"defaultMessage": "!!!Success",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 475,
+ "line": 465,
"column": 25,
- "index": 16817
+ "index": 16426
},
"end": {
- "line": 478,
+ "line": 468,
"column": 3,
- "index": 16891
+ "index": 16500
}
},
{
@@ -274,14 +274,14 @@
"defaultMessage": "!!!Request specific amount",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 479,
+ "line": 469,
"column": 18,
- "index": 16911
+ "index": 16520
},
"end": {
- "line": 482,
+ "line": 472,
"column": 3,
- "index": 17025
+ "index": 16634
}
},
{
@@ -289,14 +289,14 @@
"defaultMessage": "!!!Buy/Sell ADA",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 483,
+ "line": 473,
"column": 28,
- "index": 17055
+ "index": 16664
},
"end": {
- "line": 486,
+ "line": 476,
"column": 3,
- "index": 17151
+ "index": 16760
}
},
{
@@ -304,14 +304,14 @@
"defaultMessage": "!!!Buy provider",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 487,
+ "line": 477,
"column": 29,
- "index": 17182
+ "index": 16791
},
"end": {
- "line": 490,
+ "line": 480,
"column": 3,
- "index": 17290
+ "index": 16899
}
},
{
@@ -319,14 +319,14 @@
"defaultMessage": "!!!Sell provider",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 491,
+ "line": 481,
"column": 30,
- "index": 17322
+ "index": 16931
},
"end": {
- "line": 494,
+ "line": 484,
"column": 3,
- "index": 17432
+ "index": 17041
}
},
{
@@ -334,14 +334,14 @@
"defaultMessage": "!!!Tx Details",
"file": "src/features/Transactions/TxHistoryNavigator.tsx",
"start": {
- "line": 495,
+ "line": 485,
"column": 18,
- "index": 17452
+ "index": 17061
},
"end": {
- "line": 498,
+ "line": 488,
"column": 3,
- "index": 17546
+ "index": 17155
}
}
]
\ No newline at end of file
diff --git a/e2e/wallet-mobile/screens/chooseNetworkType.screen.ts b/e2e/wallet-mobile/screens/chooseNetworkType.screen.ts
index 84b7b14788..263152d832 100644
--- a/e2e/wallet-mobile/screens/chooseNetworkType.screen.ts
+++ b/e2e/wallet-mobile/screens/chooseNetworkType.screen.ts
@@ -2,6 +2,5 @@ import {by, element} from 'detox'
export const networkMainnetButton = () => element(by.id('setup-network-select-mainnet-button'))
export const networkTestnetButton = () => element(by.id('setup-network-select-testnet-button'))
-export const networkSanchonetButton = () => element(by.id('setup-network-select-sanchonet-button'))
export const pageTitleCreateFlow = () => element(by.text('Create wallet'))
export const pageTitleRestoreFlow = () => element(by.text('Restore wallet'))
diff --git a/packages/api/src/cardano/api/config.ts b/packages/api/src/cardano/api/config.ts
index 8417fd4924..8217c102f4 100644
--- a/packages/api/src/cardano/api/config.ts
+++ b/packages/api/src/cardano/api/config.ts
@@ -10,9 +10,6 @@ export const API_ENDPOINTS: Readonly<
[Chain.Network.Preprod]: {
root: 'https://yoroi-backend-zero-preprod.emurgornd.com',
},
- [Chain.Network.Sancho]: {
- root: 'https://yoroi-backend-zero-sanchonet.emurgornd.com',
- },
[Chain.Network.Preview]: {
root: 'https://yoroi-backend-zero-preview.emurgornd.com',
},
diff --git a/packages/dapp-connector/src/adapters/api.test.ts b/packages/dapp-connector/src/adapters/api.test.ts
index 79cfad55af..618eb8b102 100644
--- a/packages/dapp-connector/src/adapters/api.test.ts
+++ b/packages/dapp-connector/src/adapters/api.test.ts
@@ -76,18 +76,6 @@ describe('dappConnectorApiMaker', () => {
})
})
- it('should support sancho', async () => {
- const fakeResult = {tag: 'right' as const, value: {data: await managerMock.getDAppList()}} as const
- const fakeFetchData = () => Promise.resolve(fakeResult)
- const result = await dappConnectorApiMaker({request: fakeFetchData as any}).getDApps({
- network: Chain.Network.Sancho,
- })
- expect(result).toEqual({
- ...fakeResult.value.data,
- dapps: fakeResult.value.data.dapps.map((d) => ({...d, logo: 'https://daehx1qv45z7c.cloudfront.net/icon.png'})),
- })
- })
-
it('should throw on unsupported chain id', async () => {
const fakeResult = {tag: 'right' as const, value: {data: await managerMock.getDAppList()}} as const
const fakeFetchData = () => Promise.resolve(fakeResult)
diff --git a/packages/dapp-connector/src/adapters/api.ts b/packages/dapp-connector/src/adapters/api.ts
index d5822535c9..6e760f6f5b 100644
--- a/packages/dapp-connector/src/adapters/api.ts
+++ b/packages/dapp-connector/src/adapters/api.ts
@@ -7,7 +7,6 @@ import {Chain} from '@yoroi/types'
const dappListHosts: Readonly> = freeze({
[Chain.Network.Mainnet]: 'https://daehx1qv45z7c.cloudfront.net/data.json',
[Chain.Network.Preprod]: 'https://daehx1qv45z7c.cloudfront.net/preprod.json',
- [Chain.Network.Sancho]: 'https://daehx1qv45z7c.cloudfront.net/sancho.json',
[Chain.Network.Preview]: 'https://daehx1qv45z7c.cloudfront.net/preview.json',
})
diff --git a/packages/explorers/README.md b/packages/explorers/README.md
index dd4410302d..97c9d1fe1a 100644
--- a/packages/explorers/README.md
+++ b/packages/explorers/README.md
@@ -32,11 +32,14 @@ import {explorerManager} from '@yoroi/explorers'
const mainnetExplorer = explorerManager[Chain.Network.Mainnet]
// Generate URLs using CardanoScan explorer
-const tokenUrl = mainnetExplorer[Explorers.Explorer.CardanoScan].token('fingerprint')
-const addressUrl = mainnetExplorer[Explorers.Explorer.CardanoScan].address('address')
+const tokenUrl =
+ mainnetExplorer[Explorers.Explorer.CardanoScan].token('fingerprint')
+const addressUrl =
+ mainnetExplorer[Explorers.Explorer.CardanoScan].address('address')
const txUrl = mainnetExplorer[Explorers.Explorer.CardanoScan].tx('txHash')
const poolUrl = mainnetExplorer[Explorers.Explorer.CardanoScan].pool('poolId')
-const stakeUrl = mainnetExplorer[Explorers.Explorer.CardanoScan].stake('stakeAddress')
+const stakeUrl =
+ mainnetExplorer[Explorers.Explorer.CardanoScan].stake('stakeAddress')
console.log(tokenUrl) // Output: https://cardanoscan.io/token/fingerprint
console.log(addressUrl) // Output: https://cardanoscan.io/address/address
@@ -55,12 +58,12 @@ Networks:
1. Mainnet: The live network for Cardano.
2. Preprod: The pre-production network for testing.
-3. Sancho: The temporary Conway test network for governance.
-4. Preview: A preview network for new features.
+3. Preview: A preview network for new features.
Explorers:
1. CardanoScan: A popular Cardano blockchain explorer.
+
1. [Twitter ![X](https://img.icons8.com/ios-filled/12/000000/x.png)](https://twitter.com/cardanoscan.io)
2. [Discord ![Discord](https://img.icons8.com/ios-filled/12/000000/discord-logo.png)](https://discord.gg/WQFPHNXcz8)
3. [Explorer](https://cardanoscan.io)
@@ -103,7 +106,7 @@ If you are a developer working on a new Cardano explorer and want to add support
pool: (poolId: string) => `https://yourexplorer.io/pool/${poolId}`,
stake: (stakeAddress: string) => `https://yourexplorer.io/stake/${stakeAddress}`,
},
- },
+ },
```
3. Test Your Implementation
diff --git a/packages/explorers/src/explorer-manager.test.ts b/packages/explorers/src/explorer-manager.test.ts
index e8f000f5d6..aba88ad7df 100644
--- a/packages/explorers/src/explorer-manager.test.ts
+++ b/packages/explorers/src/explorer-manager.test.ts
@@ -37,22 +37,6 @@ describe('explorerManager', () => {
stake: expect.any(Function),
},
},
- [Chain.Network.Sancho]: {
- [Explorers.Explorer.CardanoScan]: {
- token: expect.any(Function),
- address: expect.any(Function),
- tx: expect.any(Function),
- pool: expect.any(Function),
- stake: expect.any(Function),
- },
- [Explorers.Explorer.CExplorer]: {
- token: expect.any(Function),
- address: expect.any(Function),
- tx: expect.any(Function),
- pool: expect.any(Function),
- stake: expect.any(Function),
- },
- },
[Chain.Network.Preview]: {
[Explorers.Explorer.CardanoScan]: {
token: expect.any(Function),
@@ -142,41 +126,6 @@ describe('explorerManager', () => {
).toBe('https://preprod.cexplorer.io/stake/stakeAddress')
})
- it('should generate the correct URLs for Sancho', () => {
- const sanchoExplorer = explorerManager[Chain.Network.Sancho]
- expect(
- sanchoExplorer[Explorers.Explorer.CardanoScan].token('fingerprint'),
- ).toBe('https://sancho.cardanoscan.io/token/fingerprint')
- expect(
- sanchoExplorer[Explorers.Explorer.CardanoScan].address('address'),
- ).toBe('https://sancho.cardanoscan.io/address/address')
- expect(sanchoExplorer[Explorers.Explorer.CardanoScan].tx('txHash')).toBe(
- 'https://sancho.cardanoscan.io/transaction/txHash',
- )
- expect(sanchoExplorer[Explorers.Explorer.CardanoScan].pool('poolId')).toBe(
- 'https://sancho.cardanoscan.io/pool/poolId',
- )
- expect(
- sanchoExplorer[Explorers.Explorer.CardanoScan].stake('stakeAddress'),
- ).toBe('https://sancho.cardanoscan.io/stakeKey/stakeAddress')
-
- expect(
- sanchoExplorer[Explorers.Explorer.CExplorer].token('fingerprint'),
- ).toBe('https://sancho.cexplorer.io/asset/fingerprint')
- expect(
- sanchoExplorer[Explorers.Explorer.CExplorer].address('address'),
- ).toBe('https://sancho.cexplorer.io/address/address')
- expect(sanchoExplorer[Explorers.Explorer.CExplorer].tx('txHash')).toBe(
- 'https://sancho.cexplorer.io/tx/txHash',
- )
- expect(sanchoExplorer[Explorers.Explorer.CExplorer].pool('poolId')).toBe(
- 'https://sancho.cexplorer.io/pool/poolId',
- )
- expect(
- sanchoExplorer[Explorers.Explorer.CExplorer].stake('stakeAddress'),
- ).toBe('https://sancho.cexplorer.io/stake/stakeAddress')
- })
-
it('should generate the correct URLs for Preview', () => {
const previewExplorer = explorerManager[Chain.Network.Preview]
expect(
diff --git a/packages/explorers/src/explorer-manager.ts b/packages/explorers/src/explorer-manager.ts
index eb57658abb..a3f227fb56 100644
--- a/packages/explorers/src/explorer-manager.ts
+++ b/packages/explorers/src/explorer-manager.ts
@@ -44,26 +44,6 @@ export const explorerManager: Readonly<
`https://preprod.cexplorer.io/stake/${stakeAddress}`,
},
},
- [Chain.Network.Sancho]: {
- [Explorers.Explorer.CardanoScan]: {
- token: (fingerprint) =>
- `https://sancho.cardanoscan.io/token/${fingerprint}`,
- address: (address) => `https://sancho.cardanoscan.io/address/${address}`,
- tx: (txHash) => `https://sancho.cardanoscan.io/transaction/${txHash}`,
- pool: (poolId) => `https://sancho.cardanoscan.io/pool/${poolId}`,
- stake: (stakeAddress) =>
- `https://sancho.cardanoscan.io/stakeKey/${stakeAddress}`,
- },
- [Explorers.Explorer.CExplorer]: {
- token: (fingerprint) =>
- `https://sancho.cexplorer.io/asset/${fingerprint}`,
- address: (address) => `https://sancho.cexplorer.io/address/${address}`,
- tx: (txHash) => `https://sancho.cexplorer.io/tx/${txHash}`,
- pool: (poolId) => `https://sancho.cexplorer.io/pool/${poolId}`,
- stake: (stakeAddress) =>
- `https://sancho.cexplorer.io/stake/${stakeAddress}`,
- },
- },
[Chain.Network.Preview]: {
[Explorers.Explorer.CardanoScan]: {
token: (fingerprint) =>
diff --git a/packages/portfolio/src/adapters/dullahan-api/api-maker.ts b/packages/portfolio/src/adapters/dullahan-api/api-maker.ts
index a101999e22..a477e51c99 100644
--- a/packages/portfolio/src/adapters/dullahan-api/api-maker.ts
+++ b/packages/portfolio/src/adapters/dullahan-api/api-maker.ts
@@ -391,22 +391,6 @@ export const apiConfig: ApiConfig = freeze(
tokenImageInvalidate:
'https://preprod.processed-media.yoroiwallet.com/invalidate',
},
- [Chain.Network.Sancho]: {
- tokenDiscovery:
- 'https://yoroi-backend-zero-sanchonet.emurgornd.com/tokens/discovery',
- tokenInfo:
- 'https://yoroi-backend-zero-sanchonet.emurgornd.com/tokens/info',
- tokenInfos:
- 'https://yoroi-backend-zero-sanchonet.emurgornd.com/tokens/info/multi',
- tokenTraits:
- 'https://yoroi-backend-zero-sanchonet.emurgornd.com/tokens/nft/traits',
- tokenActivity:
- 'https://yoroi-backend-zero-sanchonet.emurgornd.com/tokens/activity/multi',
- tokenHistory:
- 'https://yoroi-backend-zero-sanchonet.emurgornd.com/tokens/history/price',
- tokenImageInvalidate:
- 'https://preprod.processed-media.yoroiwallet.com/invalidate',
- },
[Chain.Network.Preview]: {
tokenDiscovery:
'https://yoroi-backend-zero-preview.emurgornd.com/tokens/discovery',
diff --git a/packages/staking/src/governance/config.ts b/packages/staking/src/governance/config.ts
index aa6f799bfb..cc154086eb 100644
--- a/packages/staking/src/governance/config.ts
+++ b/packages/staking/src/governance/config.ts
@@ -20,12 +20,6 @@ export const GOVERNANCE_ENDPOINTS: Readonly<
getDRepById:
'https://yoroi-backend-zero-preprod.emurgornd.com/dreps/{{DREP_ID}}/state',
},
- [Chain.Network.Sancho]: {
- getStakeKeyState:
- 'https://yoroi-backend-zero-sanchonet.emurgornd.com/stakekeys/{{STAKE_KEY_HASH}}/state',
- getDRepById:
- 'https://yoroi-backend-zero-sanchonet.emurgornd.com/dreps/{{DREP_ID}}/state',
- },
[Chain.Network.Preview]: {
getStakeKeyState:
'https://yoroi-backend-zero-preview.emurgornd.com/stakekeys/{{STAKE_KEY_HASH}}/state',
diff --git a/packages/types/src/chain/network.ts b/packages/types/src/chain/network.ts
index 26d2b0fd75..a57c0ff5b1 100644
--- a/packages/types/src/chain/network.ts
+++ b/packages/types/src/chain/network.ts
@@ -3,11 +3,9 @@ export enum ChainNetwork {
Testnet = 'testnet',
Preview = 'preview',
Preprod = 'preprod',
- Sancho = 'sancho',
}
export type ChainSupportedNetworks =
| ChainNetwork.Mainnet
| ChainNetwork.Preprod
- | ChainNetwork.Sancho
| ChainNetwork.Preview