RallyProtocol
React Native / Expo
React Native / Expo
  • Getting Started
    • Overview
    • Installation
  • Embedded wallets
    • Getting started
    • Create wallets
    • Manage wallets
    • How it works
  • Gasless Transactions
    • Getting Started
    • Read balances
    • Transfer tokens gaslessly
    • Deploy a contract gaslessly
    • Transact with a contract gaslessly
    • Using without embedded wallets
      • Getting started
      • Typescript Example
  • Resources
    • Full API Reference
    • Guides
    • Example dapps
    • Videos
    • Supported tokens
    • Community libraries
    • FAQs
  • Links
    • Twitter
    • Warpcast
    • Discord
    • Github
    • Blog
    • Youtube
Powered by GitBook
On this page
  • Import an existing wallet
  • Reading balances
  • Recovery and persistence
  • Gasless transactions
  • Full API Reference
  1. Embedded wallets

Manage wallets

Import an existing wallet

Optionally import a mnemonic string of an existing EOA wallet and store it on the user's device.

import { importExistingAccount } from '@rly-network/mobile-sdk';

const existingMnemonic = 'huge remain palm vanish ...';
const walletAddress = await importExistingAccount(existingMnemonic);

Reading balances

View the Gasless Transaction section on balances.

Recovery and persistence

By default, EOA wallets are generated on-device and backed up to the user's cloud. Read about key persistence here.

Gasless transactions

View the Gasless Transaction section on how to transfer tokens, deploy contracts, and transact with contracts gaslessly.

Full API Reference

View the full API reference

PreviousCreate walletsNextHow it works

Last updated 1 year ago