forked from marigold-dev/training-nft-1
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
1,251 additions
and
1,207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3fb1d854-fbaa-43e9-dd40-657be22fa39b | ||
0a3766d1-839c-491f-0c47-048c48b4c1d6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
#import "nft.jsligo" "Contract" | ||
|
||
// Define your parameter values as a list of LIGO variable definitions | ||
// When this file was created, the smart contract was defined with an entrypoint using `@entry` that was not within a namespace. As such, the examples below are written with that assumption in mind. | ||
|
||
// If your parameter is a simple value, you can define it directly | ||
// E.g. const default_parameter = 10 | ||
|
||
// For added type-safety, you can reference the type of your parameter from the contract | ||
// E.g. const default_parameter : parameter_of Contract = 10 | ||
// IMPORTANT: We suggest always explicitly typing your parameter values: | ||
// E.g.: `const parameter: int = 10` or `const parameter: Contract.parameter = 10` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,19 +14,19 @@ const default_storage: Contract.storage = { | |
"data", | ||
bytes | ||
`{ | ||
"name":"FA2 NFT Marketplace", | ||
"description":"Example of FA2 implementation", | ||
"version":"0.0.1", | ||
"license":{"name":"MIT"}, | ||
"authors":["Marigold<[email protected]>"], | ||
"homepage":"https://marigold.dev", | ||
"source":{ | ||
"tools":["Ligo"], | ||
"location":"https://github.com/ligolang/contract-catalogue/tree/main/lib/fa2"}, | ||
"interfaces":["TZIP-012"], | ||
"errors": [], | ||
"views": [] | ||
}` | ||
"name":"FA2 NFT Marketplace", | ||
"description":"Example of FA2 implementation", | ||
"version":"0.0.1", | ||
"license":{"name":"MIT"}, | ||
"authors":["Marigold<[email protected]>"], | ||
"homepage":"https://marigold.dev", | ||
"source":{ | ||
"tools":["Ligo"], | ||
"location":"https://github.com/ligolang/contract-catalogue/tree/main/lib/fa2"}, | ||
"interfaces":["TZIP-012"], | ||
"errors": [], | ||
"views": [] | ||
}` | ||
] | ||
] | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{ "name": "app", "dependencies": { "@ligo/fa": "^1.0.9" } } | ||
{ "dependencies": { "@ligo/fa": "^1.0.9" }, "name": "app" } |
Oops, something went wrong.