Wallets
Create and manage Quai HD wallets and standard wallets
Security Notice
This is a demo environment. Never use real private keys or mnemonics here. Generated keys are for demonstration purposes only.
Wallet Type
Select the type of wallet to create or import
Create New Wallet
Generate a new Standard Wallet
SDK Code Example
How to create and use wallets with the Quais SDK
import {
Wallet,
QuaiHDWallet,
QiHDWallet
} from 'quais';
// Standard wallet from private key
const wallet = new Wallet(privateKey, provider);
// Quai HD Wallet from mnemonic
const quaiHD = QuaiHDWallet.fromMnemonic(mnemonic);
const address = await quaiHD.getNextAddress(0, 'Cyprus-1');
// Qi HD Wallet
const qiHD = QiHDWallet.fromMnemonic(mnemonic);