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

outdated

Create Simple Ledger Protocol OP_RETURN data segments with ease!

SLP Metadata Maker for Dart #

This package is for creating Simple Ledger Protocol (SLP) OP_RETURN messages. Both TokenType1 and NFT1 tokens are supported.

Usage #

The following snippet shows basic usage. Don't forget to adjust the BigInt quantities to account for decimal divisibility of the token (see code in example/main.dart with an example of this conversion).

  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));

Test #

$ dart test/slp_mdm.dart

2
likes
0
pub points
0%
popularity

Publisher

verified publisherslp.dev

Create Simple Ledger Protocol OP_RETURN data segments with ease!

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

convert

More

Packages that depend on slp_mdm