Source code on Github
module ValueSepUTxO.UTxO where
open import Prelude.Init; open SetAsType
open L.Mem
open import Prelude.General
open import Prelude.DecEq
open import Prelude.Decidable
open import Prelude.ToN
open import Prelude.Lists hiding (map↦)
open import Prelude.Lists.Dec
open import Prelude.Functor
open import Prelude.Applicative
open import Prelude.FromList; open import Prelude.ToList
open import Prelude.Ord
open import Prelude.Semigroup
open import Prelude.Monoid
open import Prelude.Allable
open import Prelude.Bags
instance
Sℕ = Semigroup-ℕ-+; Sℕ⁺ = SemigroupLaws-ℕ-+
Mℕ = Monoid-ℕ-+; Mℕ⁺ = MonoidLaws-ℕ-+
open import Common public
TxOutputRef = TxOutput
open CommonInfo TxOutputRef public
S : Type
S = Bag⟨ TxOutput ⟩
stxoTx utxoTx : Tx → S
stxoTx = fromList ∘ outputRefs
utxoTx = fromList ∘ outputs
resolved : ∀ tx → Resolved tx
resolved _ {r} _ = r
record IsValidTx (tx : Tx) (utxos : S) : Type where
field
validOutputRefs :
stxoTx tx ⊆ˢ utxos
preservesValues :
tx .forge + ∑ (tx .inputs) (value ∘ outputRef) ≡ ∑ (tx .outputs) value
txInfo = mkTxInfo tx (resolved tx)
field
allInputsValidate :
∀[ i ∈ tx .inputs ]
T (i .validator txInfo (i .redeemer))
validateValidHashes :
∀[ i ∈ tx .inputs ]
(i .outputRef .address ≡ i .validator ♯)
open IsValidTx public
isValidTx? : ∀ tx s → Dec (IsValidTx tx s)
isValidTx? _ _ with dec
... | no ¬p = no (¬p ∘ validOutputRefs)
... | yes vor with dec
... | no ¬p = no (¬p ∘ preservesValues)
... | yes pv with dec
... | no ¬p = no (¬p ∘ allInputsValidate)
... | yes aiv with dec
... | no ¬p = no (¬p ∘ validateValidHashes)
... | yes vvh = yes record
{ validOutputRefs = vor
; preservesValues = pv
; allInputsValidate = aiv
; validateValidHashes = vvh }
isValidTx : Tx → S → Bool
isValidTx tx s = ⌊ isValidTx? tx s ⌋