@@ -24,6 +24,7 @@ import Hydra.Cardano.Api (
24
24
TxId ,
25
25
TxIn (.. ),
26
26
TxIx (.. ),
27
+ UTxO ,
27
28
WitCtx (.. ),
28
29
examplePlutusScriptAlwaysFails ,
29
30
getTxBody ,
@@ -55,6 +56,7 @@ import Hydra.Chain.CardanoClient (
55
56
import Hydra.Contract.Head qualified as Head
56
57
import Hydra.Ledger.Cardano (adjustUTxO )
57
58
import Hydra.Plutus (commitValidatorScript , initialValidatorScript )
59
+ import Hydra.Tx (txId )
58
60
import Hydra.Tx.ScriptRegistry (ScriptRegistry (.. ), newScriptRegistry )
59
61
60
62
-- | Query for 'TxIn's in the search for outputs containing all the reference
@@ -78,14 +80,16 @@ queryScriptRegistry ::
78
80
SocketPath ->
79
81
[TxId ] ->
80
82
m ScriptRegistry
81
- queryScriptRegistry networkId socketPath txIds = go 10
83
+ queryScriptRegistry networkId socketPath txIds =
84
+ -- FIXME: No need to change semantics by looping
85
+ go 10
82
86
where
83
87
go n = do
84
88
utxo <- liftIO $ queryUTxOByTxIn networkId socketPath QueryTip candidates
85
89
case newScriptRegistry utxo of
86
90
Left e -> if n == (0 :: Integer ) then throwIO e else threadDelay 1 >> go (n - 1 )
87
91
Right sr -> pure sr
88
- candidates = concatMap (\ txId -> [TxIn txId ix | ix <- [TxIx 0 .. TxIx 10 ]]) txIds -- Arbitrary but, high-enough.
92
+ candidates = concatMap (\ txid -> [TxIn txid ix | ix <- [TxIx 0 .. TxIx 10 ]]) txIds -- Arbitrary but, high-enough.
89
93
90
94
publishHydraScripts ::
91
95
-- | Expected network discriminant.
@@ -101,20 +105,23 @@ publishHydraScripts networkId socketPath sk = do
101
105
eraHistory <- queryEraHistory networkId socketPath QueryTip
102
106
stakePools <- queryStakePools networkId socketPath QueryTip
103
107
utxo <- queryUTxOFor networkId socketPath QueryTip vk
104
- flip evalStateT utxo $
105
- forM scripts $ \ script -> do
106
- nextUTxO <- get
107
- (tx, body, spentUTxO) <- liftIO $ buildScriptPublishingTx pparams systemStart networkId eraHistory stakePools changeAddress sk script nextUTxO
108
- _ <- lift $ submitTransaction networkId socketPath tx
109
- put $ pickKeyAddressUTxO $ adjustUTxO tx spentUTxO
110
- pure $ getTxId body
108
+ let txs = buildScriptPublishingTxs pparams systemStart networkId eraHistory stakePools utxo sk
109
+ forM txs $ \ tx -> do
110
+ submitTransaction networkId socketPath tx
111
+ pure $ txId tx
111
112
where
112
- pickKeyAddressUTxO utxo = maybe mempty UTxO. singleton $ UTxO. findBy (\ (_, txOut) -> isKeyAddress (txOutAddress txOut)) utxo
113
-
114
- scripts = [initialValidatorScript, commitValidatorScript, Head. validatorScript]
115
113
vk = getVerificationKey sk
116
114
117
- changeAddress = mkVkAddress networkId vk
115
+ buildScriptPublishingTxs ::
116
+ PParams LedgerEra ->
117
+ SystemStart ->
118
+ NetworkId ->
119
+ EraHistory ->
120
+ Set PoolId ->
121
+ UTxO ->
122
+ SigningKey PaymentKey ->
123
+ [Tx ]
124
+ buildScriptPublishingTxs = undefined
118
125
119
126
buildScriptPublishingTx ::
120
127
PParams LedgerEra ->
0 commit comments