Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 745 Bytes

README.md

File metadata and controls

40 lines (29 loc) · 745 Bytes

Axentro Crypto for Flutter

A Flutter plugin for iOS and Android providing the base crypto functions for the Axentro blockchain platform.

Features

  • generateKeyPair
  • generateNewWallet
  • generateWif
  • generateAddress
  • getWalletFromWif
  • getFullWalletFromWif
  • encryptWallet
  • decryptWallet

Hd Wallets

  • generateNewHdWallet
  • generateNewEncyrptedHdWallet
  • encryptHdWallet
  • decryptHdWallet
  • recoverHdWalletFromMnemonic

Installation

Add the dependency to your pubspec.yaml

dependencies:
  axentro: ^0.0.1

Example

import 'package:axentro/network.dart';
import 'package:axentro/wallet_factory.dart';

 var hdWallet = await walletFactory.generateNewHdWallet(Network.testnet);