Create wallets
Generate an EOA wallet
import { createAccount } from '@rly-network/mobile-sdk';
//create an account
const newAccount = await createAccount();Get the public address
import { getAccount } from '@rly-network/mobile-sdk';
// get current user account address
const account = await getAccount();Get the seed phrase
import { getAccountPhrase } from '@rly-network/mobile-sdk';
const mnemonic = await getAccountPhrase();Last updated