You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A complex agglomeration of everything that could be of interest to the executed script, regarding the transaction
721
721
that invoked the script
722
722
"""
723
723
724
-
CONSTR_ID=0
724
+
# The input UTXOs of the transaction.
725
725
inputs: List[TxInInfo]
726
+
# The reference UTXOs of the transaction.
726
727
reference_inputs: List[TxInInfo]
728
+
# The output UTXOs created by the transaction.
727
729
outputs: List[TxOut]
728
-
fee: Lovelace
730
+
# Transaction fee to be payed for the transaction.
731
+
fee: Value
732
+
# The value minted in the transaction.
729
733
mint: Value
730
-
certificates: List[Certificate]
734
+
certificates: List[DCert]
735
+
# Withdrawals from specific stake keys
731
736
# NOTE: Withdrawals are ordered by ascending Credential. Yet, note that `Script` credentials are treated as **lower values** than `VerificationKey` credentials.
732
737
withdrawals: Dict[StakingCredential, int]
738
+
# The range of time in which this transaction is valid
733
739
validity_range: POSIXTimeRange
734
-
# NOTE: Redeemers are ordered by ascending ScriptPurpose.
740
+
# The signatures for the transaction.
735
741
signatories: List[PubKeyHash]
742
+
# All redeemers passed to all script invocations
743
+
# NOTE: Redeemers are ordered by ascending ScriptPurpose.
736
744
redeemers: Dict[ScriptPurpose, Redeemer]
737
-
datums: Dict[DatumHash, Datum]
745
+
# All datums present in any inputs
746
+
data: Dict[DatumHash, Datum]
747
+
# The ID of the transaction.
738
748
id: TxId
749
+
# metadata for governance actions
739
750
# NOTE: Votes are ordered by ascending Voter and GovernanceActionId. First constructor variants in a type are treated as lower indices; except for Credential where `Script` credentials are treated as **lower values** than `VerificationKey` credentials.
0 commit comments