private async Task OnCreateAccount()
        {
            var words         = EthereumService.MnenonicPhraseGenerate();
            var inputMnemonic = await BuildInputMnemonicPhrasePage(
                "Enter your mnenonic phrase below to create your wallet.",
                "The mnenonic phrase was an exatact match.\nYour wallet has been created.\nCheck out the dashboard.",
                s => string.Join(" ", words) == s);

            var mnemonicPage = new MnemonicPhrasePage(
                new CommonPageSettings
            {
                HasNavigation = false,
                HeaderText    = "Mnemonic Phrase"
            });

            mnemonicPage.viewModel.Action = async() => await _context.Navigation.PushSingleAsync(inputMnemonic);

            mnemonicPage.viewModel.Words = words;

            await _context.Navigation.PushSingleAsync(mnemonicPage);
        }