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
- Host: GitHub
- URL: https://github.com/axentro/axentro_flutter_crypto
- Owner: Axentro
- License: mit
- Created: 2021-03-24T18:39:34.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-03-27T15:15:37.000Z (about 5 years ago)
- Last Synced: 2025-02-27T21:51:09.194Z (over 1 year ago)
- Language: Dart
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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);
```