mirror of
https://github.com/FiloSpaTeam/plutus-pioneer-program.git
synced 2024-11-13 02:12:34 +01:00
No description
code | ||
.gitignore | ||
README.md |
Plutus Pioneer Program
Lectures
-
- Welcome.
- The (E)UTxO-model.
- Building the example code.
- An auction contract in the EUTxO-model.
- A brief look at the auction code.
- Running an example auction contract on a local Playground.
- Homework.
-
- Triggering change.
- Low-level, untyped on-chain validation scripts.
- High-level, typed on-chain validation scripts.
-
- Script contexts.
- Time handling.
- Parameterized contracts.
-
- Monads.
- The
EmulatorTrace
-monad. - The
Contract
-monad.
-
- Values.
- Native Tokens.
- NFT's.
-
- Oracles.
- Using the PAB.
Code Examples
- Lecture #1: English Auction
- Lecture #2: Simple validation
- Lecture #3: Script Context & Parameterized Contracts
- Lecture #4: Monad, Traces & Contracts
- Lecture #5: Native Tokens
- Lecture #6: Oracles
Exercises
-
Week #1
- Clone the The Plutus repository, check out the correct commit as specified in cabal.project.
- Install NixOS cross-referencing the following resources.
- https://nixos.org/download.html
- https://docs.plutus-community.com
- A few resources to understand the what and why regarding NixOS
- Set-up IOHK binary caches How to set up the IOHK binary caches. "If you do not do this, you will end up building GHC, which takes several hours. If you find yourself building GHC, STOP and fix the cache."
- Enter a
nix-shell
. - Build the English Auction contract with
cabal build
(you may need to runcabal update
first). - Go to the
plutus-playground-client
folder. - Start the Playground server with
plutus-playground-server
. - Start the Playground client (in another
nix-shell
) withnpm run start
. - Copy-paste the auction contract into the Playground editor.
- Compile.
- Simulate various auction scenarios.
-
Week #2
-
Week #3
-
Week #4
- Implement function
payTrace
in the Homework module. - Handle exceptions thrown by
submitTx
in functionpayContract
in the same module.
- Implement function
-
Week #5
-
Week #6
- Get the Oracle demo running and extend it in some way.
Some Plutus Modules
Language.Marlowe.Semantics
, contains Marlowe types and semantics.Plutus.Contract.StateMachine
, contains types and functions for using state machines.Plutus.Contract.Test
, provides various ways to write tests for Plutus contracts.Plutus.Contract.Test.ContractModel
, support for property based testing of Plutus contracts.Plutus.Contracts.Uniswap
, an implementation of Uniswap in Plutus.Plutus.Ledger.TimeSlot
, conversions betweenSlot
andPOSIXTime
.Plutus.PAB.Webserver.API
, contains the HTTP-interface provided by the PAB.Plutus.Trace.Emulator
, contains types and functions related to traces.Plutus.V1.Ledger.Ada
, contains support for the Ada currency.Plutus.V1.Ledger.Contexts
, contains the definition of the context-related types.Plutus.V1.Ledger.Interval
, contains the definition of and helper functions for theInterval
type.Plutus.V1.Ledger.Slot
, contains the definition of theSlot
type.Plutus.V1.Ledger.Value
, contains the definition of and helper functions for theValue
type.PlutusTx.Builtins.Data
, contains the definition of theData
type.PlutusTx.IsData.Class
, defines theIsData
class.