Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NFT Royalty SC #1570

Merged
merged 26 commits into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
ec7529d
Add nft_royalty contract dir
HenriqueNogara Nov 28, 2023
c1047f2
Add the first draft for the following functions: royalty_percentage, …
HenriqueNogara Nov 29, 2023
9d60c9a
Add setup_legs first draft; Add NFTOffer type
HenriqueNogara Nov 29, 2023
a7b5b96
Move tests; Move types
HenriqueNogara Nov 29, 2023
a93adfd
Add royalty_portfolios to storage; Improve create_transfer draft; Add…
HenriqueNogara Nov 30, 2023
70c367d
Add metadata_keys mapping
HenriqueNogara Dec 1, 2023
5480c22
Fix clippy warnings
HenriqueNogara Dec 1, 2023
339049c
Add create_custody_portfolio draft
HenriqueNogara Dec 1, 2023
7cfd3ad
Add PolymeshInk
HenriqueNogara Dec 4, 2023
a39ba99
Fix compilation
HenriqueNogara Dec 4, 2023
090ba25
Fix toml; Remove unused dependency
HenriqueNogara Dec 5, 2023
0c9047b
Add PolymeshInk query calls
HenriqueNogara Dec 5, 2023
564d0a8
Add value to const; Fix error msg
HenriqueNogara Dec 5, 2023
69e4efe
Add PolymeshInk::get_our_did() call for updating the contract's did
HenriqueNogara Dec 6, 2023
157c6bc
Improve docs
HenriqueNogara Dec 6, 2023
391c828
Add readme file
HenriqueNogara Dec 6, 2023
37c73cc
Add contract initialization
HenriqueNogara Dec 7, 2023
de9a15f
Remove polymesh-api dependency; Improve readme; Add artist_identity t…
HenriqueNogara Dec 7, 2023
d3fe45b
Improve readme
HenriqueNogara Dec 9, 2023
e95efec
Add debug_println to create_transfer; Update .toml and .lock
HenriqueNogara Dec 11, 2023
36d0098
Solve merge conflicts - toolchain.toml
HenriqueNogara Dec 12, 2023
b6512e0
Merge branch 'develop' into nft-sc-draft
adamdossa Dec 15, 2023
a291ec5
Mesh 2133/return extrinsic errors (#1581)
HenriqueNogara Jan 16, 2024
e128e9d
Merge branch 'develop' into nft-sc-draft
adamdossa Jan 16, 2024
6b21b37
Add initialization flag; Remove api from storage; Deduct royalty from…
HenriqueNogara Jan 17, 2024
7d57369
Merge branch 'develop' into nft-sc-draft
Neopallium Jan 17, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions contracts/nft_royalty/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Ignore build artifacts from the local tests sub-crate.
/target/

# Ignore backup files creates by cargo fmt.
**/*.rs.bk
Loading