📑
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

Send Token

PreviousCreate a New TokenNextStop Wallet

Last updated 10 months ago

To send tokens to another address

This function required RSA privateKey has been created and publicKey signed, see


To send HTR


String addressTo = 'HGxMiFuweTvXTuZGSBwPdEt13vijtU8bwN';
String amount = '201.75';  // double as String or int as String "20175"

String success = '';
String hash = '';
(success, hash) = await walletUser.send(addressTo, amount, 'HTR');  // To send Hathor
print(success); // "success"
print(hash); // "hash"

To send others Tokens


String addressTo = 'HGxMiFuweTvXTuZGSBwPdEt13vijtU8bwN';
String amount = '201.75';  // double as String or int as String "20175"

String success = '';
String hash = '';
(success, hash) = await walletUser.send(addressTo, amount, tokenCode); // To send Token
print(success);
print(hash);
🖥️
First Access