diff --git a/src/components/PendingTxn.tsx b/src/components/PendingTxn.tsx index 59f34c0..3199e45 100644 --- a/src/components/PendingTxn.tsx +++ b/src/components/PendingTxn.tsx @@ -15,7 +15,7 @@ export default function PendingTxn({ }) { return ( - + Pending transactions @@ -23,21 +23,21 @@ export default function PendingTxn({ - + Sending {amount} {symbol} on - + to - + {to} - + Your external wallet will prompt you to confirm the transaction diff --git a/src/components/SelectProvider.tsx b/src/components/SelectProvider.tsx index b5ddf22..68c75a9 100644 --- a/src/components/SelectProvider.tsx +++ b/src/components/SelectProvider.tsx @@ -60,12 +60,12 @@ export default function SelectProvider({ Attention {walletConnectDappsConnected ? ( - + If you connect your external wallet using WalletConnect, you'll lose all Dapps connections you already made using WalletConnect. ) : ( - + If you connect your external wallet using WalletConnect, you won't be able to connect to any other Dapps during this session.

If you need to connect Dapps, please consider using a different external wallet instead. @@ -92,7 +92,7 @@ export default function SelectProvider({ Connect external wallet - + You need an external wallet to relay transactions diff --git a/src/components/network/NetworkItem.tsx b/src/components/network/NetworkItem.tsx index a6686b6..8777690 100644 --- a/src/components/network/NetworkItem.tsx +++ b/src/components/network/NetworkItem.tsx @@ -73,7 +73,7 @@ export default function NetworkItem({ network }: { network: NetworkConfig }) { {(hasPreviousEdit || isUserAddition) && ( - + {isUserAddition ? `(Chain Id "${network.chainId}", added by you)` : '(edited)'} )} diff --git a/src/components/recovery/RecoveryHeader.tsx b/src/components/recovery/RecoveryHeader.tsx index 918bfc8..2c70620 100644 --- a/src/components/recovery/RecoveryHeader.tsx +++ b/src/components/recovery/RecoveryHeader.tsx @@ -31,7 +31,7 @@ export default function RecoveryHeader({ handleNetworkModal }: { handleNetworkMo label={ - + Docs @@ -44,7 +44,7 @@ export default function RecoveryHeader({ handleNetworkModal }: { handleNetworkMo label={ - + Networks diff --git a/src/components/recovery/WalletList.tsx b/src/components/recovery/WalletList.tsx index fcebae7..b2a9698 100644 --- a/src/components/recovery/WalletList.tsx +++ b/src/components/recovery/WalletList.tsx @@ -18,7 +18,7 @@ export default function WalletList({ return ( - + Wallets found {possibleWallets.map(wallet => { @@ -40,7 +40,12 @@ export default function WalletList({ paddingX="4" style={{ width: `${WALLET_WIDTH - ROUND_CHECKBOX_SIZE * 4 - gapWidth * 4}px` }} > - + {wallet} diff --git a/src/components/signing/ConnectDapp.tsx b/src/components/signing/ConnectDapp.tsx index b502282..62f9884 100644 --- a/src/components/signing/ConnectDapp.tsx +++ b/src/components/signing/ConnectDapp.tsx @@ -60,11 +60,11 @@ export default function ConnectDapp({ onClose }: { onClose: () => void }) { - + Origin - + {connectOptions?.origin?.split('//')[1]} void }) { - + Network - + {getNetworkTitle(Number(connectOptions?.networkId))} diff --git a/src/components/signing/ConnectionList.tsx b/src/components/signing/ConnectionList.tsx index bf227b6..6239497 100644 --- a/src/components/signing/ConnectionList.tsx +++ b/src/components/signing/ConnectionList.tsx @@ -17,7 +17,7 @@ export default function ConnectionList({ sessionList }: { sessionList: SessionTy - + {!!!session.peer.metadata.name ? session.peer.metadata.url : session.peer.metadata.name} diff --git a/src/components/signing/SignClientTransactionConfirm.tsx b/src/components/signing/SignClientTransactionConfirm.tsx index 1b5eced..979a748 100644 --- a/src/components/signing/SignClientTransactionConfirm.tsx +++ b/src/components/signing/SignClientTransactionConfirm.tsx @@ -55,11 +55,11 @@ export default function SignClientTransactionConfirm({ - + Origin - + {details?.origin?.split('//')[1]} - + Network - + {getNetworkTitle(Number(details.chainId))} - + Signee diff --git a/src/components/signing/SignClientTransactionRelay.tsx b/src/components/signing/SignClientTransactionRelay.tsx index af61d38..7cad53a 100644 --- a/src/components/signing/SignClientTransactionRelay.tsx +++ b/src/components/signing/SignClientTransactionRelay.tsx @@ -50,11 +50,11 @@ export default function SignClientTransactionRelay({ - + Origin - + {details?.origin?.split('//')[1]} - + Network - + {getNetworkTitle(Number(details.chainId))} diff --git a/src/components/wallet/ConfirmSignOut.tsx b/src/components/wallet/ConfirmSignOut.tsx index bdc9c18..781cae2 100644 --- a/src/components/wallet/ConfirmSignOut.tsx +++ b/src/components/wallet/ConfirmSignOut.tsx @@ -3,10 +3,10 @@ import { Box, Button, Text } from '@0xsequence/design-system' export default function ConfirmSignOut({ handleSignOut }: { handleSignOut: (signOut?: boolean) => void }) { return ( - + Are you sure you want to sign out? - + This will disconnect all Dapps, tokens, and relay wallet connections, and you’ll need to reconnect them manually. diff --git a/src/components/wallet/DappList.tsx b/src/components/wallet/DappList.tsx index 80cf17d..64b026c 100644 --- a/src/components/wallet/DappList.tsx +++ b/src/components/wallet/DappList.tsx @@ -70,13 +70,13 @@ export default function DappList() { {provider?.info.name === 'WalletConnect' ? ( - + To connect to Dapps, switch from WalletConnect to a different wallet as your External Wallet connection method. ) : ( - + Connect a Dapp with WalletConnect to sign actions )} diff --git a/src/components/wallet/ExternalWallet.tsx b/src/components/wallet/ExternalWallet.tsx index 207a4fd..dc740b0 100644 --- a/src/components/wallet/ExternalWallet.tsx +++ b/src/components/wallet/ExternalWallet.tsx @@ -96,7 +96,7 @@ export default function ExternalWallet() { - + {selectedExternalWalletAddress} @@ -112,7 +112,7 @@ export default function ExternalWallet() { } onClick={() => handleDisconnect()} /> ) : ( - + Connect an external wallet to relay transactions )} diff --git a/src/components/wallet/WalletDropdownMenu.tsx b/src/components/wallet/WalletDropdownMenu.tsx index 77b0f12..b13d029 100644 --- a/src/components/wallet/WalletDropdownMenu.tsx +++ b/src/components/wallet/WalletDropdownMenu.tsx @@ -51,7 +51,7 @@ export default function SettingsDropdownMenu() { label={ - + {truncateMiddle(walletAddress!, 4, 4)} diff --git a/src/components/wallet/collectibles/CollectibleBalanceItem.tsx b/src/components/wallet/collectibles/CollectibleBalanceItem.tsx index 8463f20..11c205e 100644 --- a/src/components/wallet/collectibles/CollectibleBalanceItem.tsx +++ b/src/components/wallet/collectibles/CollectibleBalanceItem.tsx @@ -38,7 +38,7 @@ export default function CollectibleBalanceItem({ - + {collectibleInfo.collectibleInfoParams.contractType === 'ERC1155' ? Number( ethers.formatUnits( diff --git a/src/components/wallet/collectibles/CollectibleList.tsx b/src/components/wallet/collectibles/CollectibleList.tsx index bc62105..d03f8ec 100644 --- a/src/components/wallet/collectibles/CollectibleList.tsx +++ b/src/components/wallet/collectibles/CollectibleList.tsx @@ -39,7 +39,7 @@ export default function CollectibleList({ - + Collectibles @@ -87,7 +87,7 @@ export default function CollectibleList({ ) : ( - + Import ERC721 or ERC1155 Collectibles diff --git a/src/components/wallet/collectibles/ImportCollectible.tsx b/src/components/wallet/collectibles/ImportCollectible.tsx index e32ca9f..e8d82ce 100644 --- a/src/components/wallet/collectibles/ImportCollectible.tsx +++ b/src/components/wallet/collectibles/ImportCollectible.tsx @@ -145,7 +145,6 @@ export default function ImportCollectible({ onClose }: { onClose: () => void }) void }) {collectibleInfoResponse.name ?? ''} - + Your Balance: diff --git a/src/components/wallet/collectibles/SendCollectible.tsx b/src/components/wallet/collectibles/SendCollectible.tsx index 48a5efd..fc9ec34 100644 --- a/src/components/wallet/collectibles/SendCollectible.tsx +++ b/src/components/wallet/collectibles/SendCollectible.tsx @@ -112,7 +112,7 @@ export default function SendCollectible({ label={ - + Send to connected external wallet address diff --git a/src/components/wallet/tokens/ImportToken.tsx b/src/components/wallet/tokens/ImportToken.tsx index 0516d4b..5dbbea3 100644 --- a/src/components/wallet/tokens/ImportToken.tsx +++ b/src/components/wallet/tokens/ImportToken.tsx @@ -126,7 +126,6 @@ export default function ImportToken({ onClose }: { onClose: () => void }) { void }) { {tokenInfo.symbol ?? ''} - + Your Balance: diff --git a/src/components/wallet/tokens/SendToken.tsx b/src/components/wallet/tokens/SendToken.tsx index 31a7cda..fd1278e 100644 --- a/src/components/wallet/tokens/SendToken.tsx +++ b/src/components/wallet/tokens/SendToken.tsx @@ -102,7 +102,7 @@ export default function SendToken({ label={ - + Send to connected external wallet address diff --git a/src/components/wallet/tokens/TokenBalanceItem.tsx b/src/components/wallet/tokens/TokenBalanceItem.tsx index 327882b..b50a722 100644 --- a/src/components/wallet/tokens/TokenBalanceItem.tsx +++ b/src/components/wallet/tokens/TokenBalanceItem.tsx @@ -41,7 +41,7 @@ export default function TokenBalanceItem({ - + {truncatedBalance} diff --git a/src/components/wallet/tokens/TokenList.tsx b/src/components/wallet/tokens/TokenList.tsx index 01bc804..8ff25ba 100644 --- a/src/components/wallet/tokens/TokenList.tsx +++ b/src/components/wallet/tokens/TokenList.tsx @@ -78,7 +78,7 @@ export default function TokenList({ onSendClick }: { onSendClick: (tokenBalance: > - + Filter zero balances @@ -116,7 +116,7 @@ export default function TokenList({ onSendClick }: { onSendClick: (tokenBalance: ) : ( - + Import ERC 20 token address diff --git a/src/routes/Landing.tsx b/src/routes/Landing.tsx index 14908f5..fb84101 100644 --- a/src/routes/Landing.tsx +++ b/src/routes/Landing.tsx @@ -67,12 +67,12 @@ function Landing() { {isLoadingAccount ? ( <> - + Enter your password to continue and unlock your wallet - + Password - + Connect your wallet to any web3 application via Walletconnect @@ -136,7 +136,7 @@ function Landing() { Move funds anywhere - + Transfer funds securely to any wallet, fully decentralized @@ -151,7 +151,7 @@ function Landing() { Are you sure you want to sign out? - + If you do not remember your password, you can reset and start over.
This will require you to re-enter your mnemonic.
diff --git a/src/routes/Recovery.tsx b/src/routes/Recovery.tsx index cd3ae20..11e465a 100644 --- a/src/routes/Recovery.tsx +++ b/src/routes/Recovery.tsx @@ -162,17 +162,17 @@ function Recovery() {