-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: nep171 wip * feat: nep171 events are owned; some experiments for allowing approval extension * feat: some ideas for implementing approval extension (wip) * fix: crate name change * feat: nep171 macro progress * full nep171 implementation * chore: simplify nft_resolve_transfer * chore: finished nep171 macro * chore: cleanup, tests, renaming * chore: documentation comments * chore: workspaces tests & multiple token ids * feat: nep171 multiple token id transfer * chore: more tests + small fixes * fix: warnings * feat: predicate api improvements * feat: remove predicate, introduce check function * feat: nft events version 1.2.0 update * Nep177: NFT Metadata (#124) * feat: nep177 * chore: more function implementation * feat: nep177 macro * feat: non_fungible_token macro * feat: documentation comments * feat: switch to using #[serde(flatten)] for token metadata * feat: nep178 * chore: upgrade tests & organize libs * feat: nep178 macro integration * feat: nep178 testing * chore: docs * chore: more tests and examples in docs * chore: lots of docs * feat: switch hook state to associated type * feat: nep181 internals done, improved hooks * feat: nep181 macro, sanity test * chore: qol nft module * feat: docs * feat: further enumeration tests * feat: final (?) tests for enumeration * chore: update readme to mention nep-171 and related
- Loading branch information
Showing
38 changed files
with
4,590 additions
and
31 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
pub mod event; | ||
pub mod fungible_token; | ||
pub mod non_fungible_token; | ||
|
||
pub mod nep141; | ||
pub mod nep148; | ||
pub mod nep171; | ||
pub mod nep177; | ||
pub mod nep178; | ||
pub mod nep181; | ||
pub mod nep297; |
Oops, something went wrong.