archethic_lib_dart 1.0.27 archethic_lib_dart: ^1.0.27 copied to clipboard
Archethic dart library for Flutter for Node and Browser. This library aims to provide a easy way to create Archethic transaction and to send them over the network
import 'package:archethic_lib_dart/archethic_lib_dart.dart'
show KeyPair, deriveKeyPair;
import 'package:archethic_lib_dart/src/model/transaction.dart';
import 'package:archethic_lib_dart/src/utils/utils.dart';
void main(List<String> args) {
/// It creates a new keypair into hexadecimal format
// ignore: unused_local_variable
final KeyPair keypair = deriveKeyPair('mysuperpassphraseorseed', 0);
/// Generate `address`, `timestamp`, `previousPublicKey`, `previousSignature`, `originSignature` of the transaction and
/// serialize it using a custom binary protocol.
final Transaction transaction = Transaction(
type: 'transfer', data: Transaction.initData())
.addUCOTransfer(
'00b1d3750edb9381c96b1a975a55b5b4e4fb37bfab104c10b0b6c9a00433ec4646',
toBigInt(0.420))
.build('mysuperpassphraseorseed', 0, curve: 'P256');
transaction.convertToJSON();
/// Sign the transaction with an origin device private key
final KeyPair originKeypair = deriveKeyPair('origin_seed', 0);
final Transaction transaction2 = Transaction(
type: 'transfer', data: Transaction.initData())
.addUCOTransfer(
'00b1d3750edb9381c96b1a975a55b5b4e4fb37bfab104c10b0b6c9a00433ec4646',
toBigInt(0.420))
.build('mysuperpassphraseorseed', 0, curve: 'P256')
.originSign(originKeypair.privateKey);
transaction2.convertToJSON();
/// Export the transaction generated into JSON
final Transaction transaction3 = Transaction(
type: 'transfer', data: Transaction.initData())
.addUCOTransfer(
'00b1d3750edb9381c96b1a975a55b5b4e4fb37bfab104c10b0b6c9a00433ec4646',
toBigInt(0.420))
.build('mysuperpassphraseorseed', 0, curve: 'P256');
transaction3.convertToJSON();
}