Skip to content

Commit b2c5126

Browse files
fix the numbering of the steps
1 parent efb9537 commit b2c5126

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/source/guides/plutus.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ Similar to `Transaction guide <../guides/transaction.html>`_, we build a chain c
121121
>>> from pycardano import BlockFrostChainContext
122122
>>> context = BlockFrostChainContext("your_blockfrost_project_id", base_url=ApiUrls.preprod.value)
123123

124-
Step 2
124+
Step 4
125125

126126
Create script address::
127127

@@ -150,7 +150,7 @@ Create script address::
150150
>>> network = Network.TESTNET
151151
>>> script_address = Address(script_hash, network=network)
152152

153-
Step 3
153+
Step 5
154154

155155
Giver/Locker sends funds to script address.
156156
We will attach the public key hash of a receiver address as datum to the utxo.
@@ -180,7 +180,7 @@ Build, sign and submit the transaction:
180180
>>> signed_tx = builder.build_and_sign([payment_skey], giver_address)
181181
>>> context.submit_tx(signed_tx.to_cbor())
182182

183-
Step 4
183+
Step 6
184184

185185
Taker/Unlocker sends transaction to consume funds. Here we specify the redeemer tag as spend and pass in no special redeemer, as it is being ignored by the contract.::
186186

0 commit comments

Comments
 (0)