Nft1ChildSend function

List<int> Nft1ChildSend(
  1. List<int> tokenId,
  2. BigInt sendAmount
)

Creates a SEND OP_RETURN buffer for NFT1 child.

Implementation

List<int> Nft1ChildSend(
    List<int> tokenId,
    BigInt sendAmount
  ) {
  return createOpReturnSend(
    0x41,
    tokenId,
    [sendAmount]
  );
}