An open API service indexing awesome lists of open source software.

https://github.com/axentro/axentro_flutter_crypto

Flutter package for Axentro crypto
https://github.com/axentro/axentro_flutter_crypto

Last synced: 11 months ago
JSON representation

Flutter package for Axentro crypto

Awesome Lists containing this project

README

          

# Axentro Crypto for Flutter

A Flutter plugin for iOS and Android providing the base crypto functions for the [Axentro](https://axentro.io) 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`

```yaml
dependencies:
axentro: ^0.0.1
```

## Example

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

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