slp_mdm 1.0.0 copy "slp_mdm: ^1.0.0" to clipboard
slp_mdm: ^1.0.0 copied to clipboard

Create Simple Ledger Protocol OP_RETURN data segments with ease!

example/main.dart

import 'package:slp_mdm/slp_mdm.dart';
import 'package:convert/convert.dart';

main() {
  var divisibility = 9;
  var mintBatonVout = 2;
  var qty = BigInt.from(1000000) * BigInt.from(10).pow(divisibility);
  var genesisMsg = Genesis('', '', '', [], divisibility, qty, mintBatonVout);
  print(hex.encode(genesisMsg));

  var tokenId = hex.decode('ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff');
  var sendMsg = Send(tokenId, [BigInt.from(1), BigInt.from(10)]);
  print(hex.encode(sendMsg));

  var mintMsg = Mint(tokenId, BigInt.from(10), mintBatonVout);
  print(hex.encode(mintMsg));
}
2
likes
130
pub points
0%
popularity

Publisher

verified publisherslp.dev

Create Simple Ledger Protocol OP_RETURN data segments with ease!

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

convert

More

Packages that depend on slp_mdm