📑
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

Balance from Address

You need get an address to verify the addressBalance


First Get Address


String address = await walletUser.getAddress(); // To Get an Address from wallet

Saldos de tokens específicos:


String balanceAddress = await walletUser.address(address).balance(); // To get balance from address
print(balanceAddress); // "0"

String balanceAddressTokenX = await walletUser.address(address).balance(tokenX); // To get balance of the token from address
print(balanceAddressTokenX); // "0"

PreviousWallet BalanceNextCreate a New Address

Last updated 10 months ago

🖥️