📑
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

Wallet Balance

To get balance from walletUser, you will get balance HTR (Hathor Token from Hathor Network)

To get balance from a specific token, parse the token into balance function




String balance = await walletUser.balance();
print(balance); // "100"

Saldos de tokens específicos:



String balanceTokenX = await walletUser.balance(tokenX); // To get Balance of the token from wallet
String balanceTokenY = await walletUser.balance(tokenY); // If there was other token
print(balanceTokenX); // "200"
print(balanceTokenY); // "300"

PreviousCreate a WalletNextBalance from Address

Last updated 10 months ago

🖥️