Skip to content

Commit

Permalink
Merge pull request #82 from riskrose/main
Browse files Browse the repository at this point in the history
chore: fix some comments
  • Loading branch information
uvd authored Sep 12, 2024
2 parents cde20ef + 93b6bcf commit ea12e0a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion unit-five/lessons/3_kiosk_basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ Sui Kiosk is created to answer these needs:
Sui Kiosk consists these 2 main components:

- `Kiosk` + `KioskOwnerCap`: `Kiosk` is the safe that will store our assets and display them for selling, it is implemented as a shared object allowing interactions between multiple parties. Each `Kiosk` will have a corresponding Kiosk Owner whoever holding the `KioskOwnerCap`. The Kiosk Owner still have the _logical ownership_ over their assets even when they are _physically_ placed in the kiosk.
- `TransferPolicy` + `TransferPolicyCap`: `TransferPolicy` is a shared object defines the conditions in which the assets can be traded or sold. Each `TransferPolicy` consists a set of _rules_, with each rule specifies the requirements every trade must satisfy. Rules can be enabled or disabled from the `TransferPolicy` by whoever owning the `TransferOwnerCap`. Great example of `TransferPolicy`'s rule is the royalty fees guarantee.

- `TransferPolicy` + `TransferPolicyCap`: `TransferPolicy` is a shared object defines the conditions in which the assets can be traded or sold. Each `TransferPolicy` consists a set of _rules_, with each rule specifies the requirements every trade must sastify. Rules can be enabled or disabled from the `TransferPolicy` by whoever owning the `TransferOwnerCap`. Greater example of `TransferPolicy`'s rule is the royalty fees guarantee.

## Sui Kiosk Users

Expand Down

0 comments on commit ea12e0a

Please sign in to comment.