Source code on Github
module UTxO.Ledger where
open import Prelude.Init; open SetAsType
open import Prelude.General
open import Prelude.Membership
open import Prelude.ToList
open import Prelude.FromList
open import Prelude.Sets
open import UTxO.UTxO
Domain = S → S
record Denotable (A : Type) : Type where
field ⟦_⟧ : A → Domain
open Denotable ⦃...⦄ public
instance
⟦Tx⟧ : Denotable Tx
⟦Tx⟧ .⟦_⟧ tx utxos =
if isValidTx tx utxos then
fromList (filter ((_∉? outputRefs tx) ∘ UTXO.outRef) (toList utxos))
∪ fromList (mapWith∈ (tx .outputs) (mkUtxo tx))
else
utxos
⟦L⟧ : Denotable L
⟦L⟧ .⟦_⟧ = λ where
[] → id
(t ∷ l) → ⟦ l ⟧ ∘ ⟦ t ⟧
variable
s s′ s″ s₁ s₂ : S
t t′ t″ : Tx
l l′ l″ l₁ l₂ : L
ls ls′ ls″ : L × S
comp : ∀ x → ⟦ l ++ l′ ⟧ x ≡ (⟦ l′ ⟧ ∘ ⟦ l ⟧) x
comp {l = []} {l′} x = refl
comp {l = t ∷ l} {l′} x rewrite comp {l}{l′} (⟦ t ⟧ x) = refl