TxInfo: {
    txInfoCurrentTreasuryAmount: Maybe<Lovelace>;
    txInfoData: Map<DatumHash, Datum>;
    txInfoFee: Lovelace;
    txInfoId: TxId;
    txInfoInputs: TxInInfo[];
    txInfoMint: Value;
    txInfoOutputs: TxOut[];
    txInfoProposalProcedures: ProposalProcedure[];
    txInfoRedeemers: Map<ScriptPurpose, Redeemer>;
    txInfoReferenceInputs: TxInInfo[];
    txInfoSignatories: PubKeyHash[];
    txInfoTreasuryDonation: Maybe<Lovelace>;
    txInfoTxCerts: TxCert[];
    txInfoValidRange: POSIXTimeRange;
    txInfoVotes: Map<Voter, Map<GovernanceActionId, Vote>>;
    txInfoWdrl: Map<Credential, Lovelace>;
}

TxInfo represents a pending transaction. This is the view as seen by validator scripts, so some details are stripped out.

Type declaration

Generated using TypeDoc