TransactionMint: {
    gasPrice: BN;
    inputContract: InputContract;
    mintAmount: BN;
    mintAssetId: string;
    outputContract: OutputContract;
    txPointer: TxPointer;
    type: Mint;
}

Type declaration

  • gasPrice: BN
  • inputContract: InputContract

    The contract utxo that assets are minted to.

  • mintAmount: BN

    The amount of funds minted.

  • mintAssetId: string

    The asset ID corresponding to the minted amount.

  • outputContract: OutputContract

    The contract utxo that assets are being minted to.

  • txPointer: TxPointer

    The location of the Mint transaction in the block.

  • type: Mint