📑
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 New Token

To Create a new Token use walletUser.createToken.


// Create new Token
bool result;
Map<String, dynamic> response;
(result, response) = await walletUser.createToken(name: "real", symbol: "BRL", amount: 1000);
print(result);
print(response);

PreviousCreate a New AddressNextSend Token

Last updated 8 months ago

🖥️