open import Ledger.Prelude hiding (fromList; ε); open Computational
open import ScriptVerification.Prelude
module ScriptVerification.SucceedIfNumber where
scriptImp : ScriptImplementation ℕ ℕ
scriptImp = record { serialise = id ;
deserialise = λ x → just x ;
toData' = λ x → 9999999 }
open import ScriptVerification.LedgerImplementation ℕ ℕ scriptImp
open import ScriptVerification.Lib ℕ ℕ scriptImp
open import Ledger.ScriptValidation SVTransactionStructure SVAbstractFunctions
open import Data.Empty
open import Class.To
open import Ledger.Conway.Conformance.Utxo SVTransactionStructure SVAbstractFunctions
open import Ledger.Transaction
open TransactionStructure SVTransactionStructure
open import Ledger.Types.Epoch
open EpochStructure SVEpochStructure
open Implementation
open import Ledger.Conway.Conformance.Utxo.Properties SVTransactionStructure SVAbstractFunctions
open import Ledger.Conway.Conformance.Utxow.Properties SVTransactionStructure SVAbstractFunctions
succeedIf1Datum' : Maybe ℕ → Maybe ℕ → Bool
succeedIf1Datum' (just (suc zero)) _ = true
succeedIf1Datum' _ _ = false
succeedIf1Datum : PlutusScript
succeedIf1Datum = 777 , applyScript succeedIf1Datum'
succeedIf1Redeemer' : Maybe ℕ → Maybe ℕ → Bool
succeedIf1Redeemer' _ (just (suc zero)) = true
succeedIf1Redeemer' _ _ = false
succeedIf1Redeemer : PlutusScript
succeedIf1Redeemer = 888 , applyScript succeedIf1Redeemer'
initEnv : UTxOEnv
initEnv = createEnv 0
initTxOut : TxOut
initTxOut = inj₁ (record { net = 0 ;
pay = ScriptObj 777 ;
stake = just (ScriptObj 777) })
, 10 , just (inj₂ 99) , nothing
initTxOut' : TxOut
initTxOut' = inj₁ (record { net = 0 ;
pay = ScriptObj 888 ;
stake = just (ScriptObj 888) })
, 10 , nothing , nothing
scriptDatum : TxIn × TxOut
scriptDatum = (6 , 6) , initTxOut
scriptRedeemer : TxIn × TxOut
scriptRedeemer = (6 , 6) , initTxOut'
initStateDatum : UTxO
initStateDatum = fromList' (scriptDatum ∷ (createInitUtxoState 5 1000000000000))
initStateRedeemer : UTxO
initStateRedeemer = fromList' (scriptRedeemer ∷ (createInitUtxoState 5 1000000000000))
succeedTx : Tx
succeedTx = record { body = record
{ txins = Ledger.Prelude.fromList ((6 , 6) ∷ (5 , 5) ∷ [])
; refInputs = ∅
; txouts = fromListIx ((6 , initTxOut)
∷ (5
, ((inj₁ (record { net = 0 ;
pay = KeyHashObj 5 ;
stake = just (KeyHashObj 5) }))
, (1000000000000 - 10000000000) , nothing , nothing))
∷ [])
; txfee = 10000000000
; mint = 0
; txvldt = nothing , nothing
; txcerts = []
; txwdrls = ∅
; txvote = []
; txprop = []
; txdonation = 0
; txup = nothing
; txADhash = nothing
; txNetworkId = just 0
; curTreasury = nothing
; txsize = 10
; txid = 7
; collateral = Ledger.Prelude.fromList ((5 , 5) ∷ [])
; reqSigHash = ∅
; scriptIntHash = nothing
} ;
wits = record { vkSigs = fromListᵐ ((5 , 12) ∷ []) ;
scripts = Ledger.Prelude.fromList ((inj₂ succeedIf1Datum) ∷ []) ;
txdats = fromListᵐ ((99 , 1) ∷ []) ;
txrdmrs = fromListᵐ (((Spend , 6) , 5 , (5 , 5)) ∷ []) } ;
isValid = true ;
txAD = nothing }
evalScriptDatum : Bool
evalScriptDatum = evalScripts succeedTx (collectPhaseTwoScriptInputs (UTxOEnv.pparams initEnv) succeedTx initStateDatum)
exampleDatum : List Datum
exampleDatum = getDatum succeedTx initStateDatum (Spend (6 , 6))
failTx : Tx
failTx = record { body = record
{ txins = Ledger.Prelude.fromList ((6 , 6) ∷ [])
; refInputs = ∅
; txouts = ∅
; txfee = 10
; mint = 0
; txvldt = nothing , nothing
; txcerts = []
; txwdrls = ∅
; txvote = []
; txprop = []
; txdonation = 0
; txup = nothing
; txADhash = nothing
; txNetworkId = just 0
; curTreasury = nothing
; txsize = 10
; txid = 7
; collateral = ∅
; reqSigHash = ∅
; scriptIntHash = nothing
} ;
wits = record { vkSigs = ∅ ;
scripts = Ledger.Prelude.fromList ((inj₂ succeedIf1Redeemer) ∷ []) ;
txdats = ∅ ;
txrdmrs = fromListᵐ (((Spend , 6) , 1 , (5 , 5)) ∷ []) } ;
isValid = true ;
txAD = nothing }
evalScriptRedeemer : Bool
evalScriptRedeemer = evalScripts failTx (collectPhaseTwoScriptInputs (UTxOEnv.pparams initEnv) failTx initStateRedeemer)
exampleDatum' : List Datum
exampleDatum' = getDatum failTx initStateRedeemer (Spend (6 , 6))
opaque
unfolding collectPhaseTwoScriptInputs
unfolding setToList
unfolding outs
gotScript : lookupScriptHash 777 succeedTx initStateDatum ≡ just (inj₂ succeedIf1Datum)
gotScript = refl
_ : exampleDatum ≡ 1 ∷ []
_ = refl
_ : exampleDatum' ≡ []
_ = refl
_ : evalScriptDatum ≡ true
_ = refl
_ : evalScriptRedeemer ≡ true
_ = refl
succeedExample : ComputationResult String UTxOState
succeedExample = UTXO-step initEnv ⟦ initStateDatum , 0 , ∅ , 0 ⟧ succeedTx
_ : isSuccess succeedExample ≡ true
_ = refl
failExample : ComputationResult String UTxOState
failExample = UTXO-step initEnv ⟦ initStateRedeemer , 0 , ∅ , 0 ⟧ failTx
_ : isFailure failExample
_ = _ , refl
failExampleS : Bool
failExampleS = case compute Computational-UTXOS initEnv ⟦ initStateRedeemer , 0 , ∅ , 0 ⟧ failTx of λ where
(success x) → true
(failure x) → false
_ : failExampleS ≡ true
_ = refl
failExampleU : Bool
failExampleU = case compute Computational-UTXO initEnv ⟦ initStateRedeemer , 0 , ∅ , 0 ⟧ failTx of λ where
(success x) → true
(failure x) → false
_ : failExampleU ≡ false
_ = refl