polkadart_keyring 0.3.0 copy "polkadart_keyring: ^0.3.0" to clipboard
polkadart_keyring: ^0.3.0 copied to clipboard

Substrate Keyring.

example/example.dart

import 'dart:typed_data';

import 'package:polkadart_keyring/polkadart_keyring.dart';

void main() {
  KeyPair.ed25519.fromSeed(
      Uint8List.fromList('12345678901234567890123456789012'.codeUnits));
}