Nft1GroupSend function

List<int> Nft1GroupSend(
  1. List<int> tokenId,
  2. List<BigInt> slpAmounts
)

Creates a SEND OP_RETURN buffer for an NFT1 Group.

Implementation

List<int> Nft1GroupSend(
    List<int> tokenId,
    List<BigInt> slpAmounts
  ) {
  return createOpReturnSend(
    0x81,
    tokenId,
    slpAmounts,
  );
}