mofalabs / aptos

A cross-platform Aptos SDK for Mobile, Web and Desktop

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Aptos Dart SDK

Pub

Installation

dependencies:
  aptos: ^0.0.5

Usage

// Generate Aptos Account
final mnemonics = AptosAccount.generateMnemonic();
final sender = AptosAccount.generateAccount(mnemonics);
final receiver = AptosAccount();

// AptosClient connect with Aptos Node
final aptosClient = AptosClient(Constants.devnetAPI, enableDebugLog: true);

// Check and fund account
final amount = BigInt.from(10000000);
bool isExists = await aptosClient.accountExist(sender.address);
if (!isExists) {
  final faucetClient = FaucetClient.fromClient(Constants.faucetDevAPI, aptosClient);
  await faucetClient.fundAccount(sender.address, amount.toString());
  await Future.delayed(const Duration(seconds: 2));
}

final coinClient = CoinClient(aptosClient);

// Check account balance
final balance = await coinClient.checkBalance(sender.address);
print(balance);

// Transfer Aptos Coin
final txHash = await coinClient.transfer(
  sender, 
  receiver.address, 
  BigInt.from(10000),
  createReceiverIfMissing: true);
print(txHash);

About

A cross-platform Aptos SDK for Mobile, Web and Desktop

License:MIT License


Languages

Language:Dart 98.7%Language:HTML 1.1%Language:Swift 0.1%Language:Kotlin 0.0%Language:Objective-C 0.0%