https://github.com/mujhtech/studentnft
https://github.com/mujhtech/studentnft
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mujhtech/studentnft
- Owner: Mujhtech
- Created: 2021-09-23T10:18:01.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-09-23T16:26:44.000Z (over 4 years ago)
- Last Synced: 2025-06-01T20:01:34.514Z (about 1 year ago)
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# StudentNFT
1. With CameLIGO
2. A smart contract for student to sell the properties
## Storage example
Map.literal [
(0n, {
id: 1;
out_of_stock = false;
user_address = ("Address of the MusicNFT" : address);
property_price = 12mutez;
sale_status = false;
property_name = "Wooden Chair";
property_description = "I love that chair";
});
(1n, {
id: 1;
out_of_stock = false;
user_address = ("Address of the MusicNFT" : address);
property_price = 20mutez;
sale_status = false;
property_name = "Shelf";
property_description = "I love that chair";
});
...
]