📑
BBaaS
  • 👋Welcome to BBaaS - Blockchain and Banking as a Service
  • First Access
  • Terms and License
    • 📘License
  • Introduction to BBaaS
    • 🖥️Start Here to BBaaS
      • Start with Dart/Fultter Package
        • Instance BBaaS
        • Instance your Client
        • Instance Wallet User
        • Create a Wallet
        • Wallet Balance
        • Balance from Address
        • Create a New Address
        • Create a New Token
        • Send Token
        • Stop Wallet
  • Contact us
    • 💻Contact us
Powered by GitBook
On this page
  1. Introduction to BBaaS
  2. Start Here to BBaaS
  3. Start with Dart/Fultter Package

Create a Wallet

Create a Wallet and your Seed Words

You need a specific seed words for each wallet started.


HashWords seed = await walletUser.newWallet();
print(seed.words); // seatle pig house venture january horse village ...

bool result;
Map<String, dynamic> response;

(result, response) = await walletUser.start(seed);

print(result); // true
print(response); // {"success": true, "message": "success message"}
PreviousInstance Wallet UserNextWallet Balance

Last updated 10 months ago

🖥️