Skip to content
This repository was archived by the owner on Dec 2, 2024. It is now read-only.

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

plutus-example

This library demonstrates end to end examples of creating and executing Plutus scripts on chain.

This is done roughly in the following steps:

  1. Write your Plutus on chain code.
  2. Serialize your Plutus on chain code to the text envelope format (cardano-cli expects this format).
  3. Create your transaction with the accompanying Plutus script(s).
  4. Submit transaction to execute Plutus script.

FAQ

Where is the off chain code?

The off chain code is used for transaction construction. In this case we construct the transaction with cardano-cli and therefore we don't need to write any off chain code.

Where can I learn about Plutus scripts in more detail?

Our education director, Lars Brünjes, has an excellent series of tutorials on youtube. Further relevant Plutus documentation can be found here.