-
Notifications
You must be signed in to change notification settings - Fork 377
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Wallet] Implement new import wallet flow designs (#1209)
* Implement new import wallet flow designs including empty wallet warning * Improve responsiveness of import wallet screen * More robust error handling for import saga * Add tests for import saga * Cleanup redundant web3 zerosync mocks introduced in #1108
- Loading branch information
Showing
81 changed files
with
626 additions
and
798 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { DEFAULT_SYNC_MODE, DEFAULT_TESTNET } from 'src/web3/testnets' | ||
|
||
export default { | ||
[DEFAULT_TESTNET]: { | ||
nodeDir: `.${DEFAULT_TESTNET}`, | ||
syncMode: DEFAULT_SYNC_MODE, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { GethSyncMode } from 'src/geth/consts' | ||
|
||
export const DEFAULT_TESTNET = 'integration' | ||
export const DEFAULT_SYNC_MODE: GethSyncMode = GethSyncMode.Ultralight |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,14 @@ | ||
{ | ||
"welcomeCelo": "Welcome to Celo", | ||
"enterInvite": | ||
"Enter your invitation code. If you do not have one, ask someone in the Celo Community to invite you. By joining this application, you agree to share your name & phone number with us. Learn more at celo.org", | ||
"fullName": "Full Name", | ||
"invitationCode": "Invitation Code", | ||
"submit": "Submit", | ||
"alreadyHaveWallet": "Already have a Celo Wallet? Restore it", | ||
"restoreYourWallet": { | ||
"title": "Restore your Celo Wallet", | ||
"userYourBackupKey": | ||
"Already have a Celo Wallet? Use your secure Backup Key to restore your wallet to this phone.", | ||
"warning": "Warning ", | ||
"restoreInPrivate": "Restore your Wallet in private " | ||
}, | ||
"backupKeyPrompt": "Backup Key", | ||
"title": "Restore your Celo Wallet", | ||
"userYourBackupKey": | ||
"Already have a Celo Wallet? Enter your Backup Key to restore it to this phone.", | ||
"backupKeyPrompt": | ||
"horse leopard dog monkey shark tiger lemur whale squid wolf squirrel mouse lion elephant cat shrimp bear penguin deer turtle fox zebra goat giraffe", | ||
"tip": "Tip: ", | ||
"backupKeyTip": "Backup Key words are separated by a space", | ||
"continue": "Continue", | ||
"cancel": "Cancel", | ||
"restoreWallet": "Restore Celo Wallet" | ||
"backupKeyTip": "Backup Keys are 24 words long, separated by a space.", | ||
"restoreWallet": "Restore", | ||
"emptyWalletWarning": "This wallet is empty.", | ||
"useEmptyAnyway": "Would you like to use it anyway?", | ||
"useEmptyWallet": "Use Empty Wallet", | ||
"tryAnotherKey": "Try Another Backup Key" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,14 @@ | ||
{ | ||
"welcomeCelo": "Te damos la bienvenida a Celo", | ||
"enterInvite": | ||
"Ingresegcódigo de invitación. Si no tiene uno, pídale a alguien de la comunidad de Celo que lo invite.\n\nAl unirse a esta aplicación, acuerda compartir tu nombre y número telefónico con nosotros. Obtenga más información en celo.org", | ||
"fullName": "Nombre completo", | ||
"invitationCode": "Código de invitación", | ||
"submit": "Enviar", | ||
"alreadyHaveWallet": "¿Ya tiene un Monedero Celo? Restáurelo", | ||
"restoreWallet": "Restaurar el Monedero Celo", | ||
"restoreYourWallet": { | ||
"title": "Restaurar tu Monedero Celo", | ||
"userYourBackupKey": | ||
"¿Ya tiene un Monedero Celo? Use tu clave de respaldo segura para restaurar tu monedero a este teléfono.", | ||
"warning": "¡Cuidado! ", | ||
"restoreInPrivate": "Hágalo en privado" | ||
}, | ||
"backupKeyPrompt": "Clave de respaldo", | ||
"title": "Restaurar tu Monedero Celo", | ||
"userYourBackupKey": | ||
"¿Ya tiene un Monedero Celo? Ingrese su Clave de Respaldo para restaurarla a este teléfono.", | ||
"backupKeyPrompt": | ||
"caballo leopardo perro mono tiburón tigre lémur ballena calamar lobo ardilla ratón león elefante gato camarones oso pingüino...", | ||
"tip": "Consejo: ", | ||
"backupKeyTip": "las palabras de la clave de respaldo están separadas por un espacio", | ||
"continue": "Continuar", | ||
"cancel": "Cancelar" | ||
"backupKeyTip": "Las Claves de Respaldo son de 24 palabras, separadas por un espacio.", | ||
"restoreWallet": "Restaurar", | ||
"emptyWalletWarning": "Este Monedero esta vacio", | ||
"useEmptyAnyway": "¿Te gustaría usarlo de todos modos?", | ||
"useEmptyWallet": "Usar Monedero Vacío", | ||
"tryAnotherKey": "Probar con otra Clave de Respaldo" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.