updated README

This commit is contained in:
Lars Brünjes 2021-07-26 13:20:47 +02:00
parent 528928c8fb
commit d4270489d0
No known key found for this signature in database
GPG key ID: B488B9045DC1A087

View file

@ -30,12 +30,19 @@
- The `EmulatorTrace`-monad. - The `EmulatorTrace`-monad.
- The `Contract`-monad. - The `Contract`-monad.
- [Lecture #5](https://youtu.be/SsaVjSsPPcg)
- Values.
- Native Tokens.
- NFT's.
## Code Examples ## Code Examples
- Lecture #1: [English Auction](code/week01) - Lecture #1: [English Auction](code/week01)
- Lecture #2: [Simple validation](code/week02) - Lecture #2: [Simple validation](code/week02)
- Lecture #3: [Script Context & Parameterized Contracts](code/week03) - Lecture #3: [Script Context & Parameterized Contracts](code/week03)
- Lecture #4: [Monad, Traces & Contracts](code/week04) - Lecture #4: [Monad, Traces & Contracts](code/week04)
- Lecture #5: [Native Tokens](code/week05)
## Exercises ## Exercises
@ -68,6 +75,11 @@
- Implement function `payTrace` in the [Homework](code/week04/src/Week04/Homework.hs) module. - Implement function `payTrace` in the [Homework](code/week04/src/Week04/Homework.hs) module.
- Handle exceptions thrown by `submitTx` in function `payContract` in the same module. - Handle exceptions thrown by `submitTx` in function `payContract` in the same module.
- Week #5
- Add a deadline to the minting policy in the [Homework1](code/week05/src/Week05/Homework1.hs) module.
- Fix the token name to the empty ByteString in the NFT contract in the [Homework2](code/week05/src/Week05/Homework2.hs) module.
## Some Plutus Modules ## Some Plutus Modules
- [`Language.Marlowe.Semantics`](https://github.com/input-output-hk/plutus/blob/master/marlowe/src/Language/Marlowe/Semantics.hs), contains Marlowe types and semantics. - [`Language.Marlowe.Semantics`](https://github.com/input-output-hk/plutus/blob/master/marlowe/src/Language/Marlowe/Semantics.hs), contains Marlowe types and semantics.