Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
bdf9f7d
Allow to mint with the pre-signed signatures
Jan 12, 2023
320582d
Another try
Jan 12, 2023
a92dc15
WIP: test encoder
Jan 13, 2023
124d872
Fix the deposits
Jan 17, 2023
bb91166
Refactoring + tests + benchmarks
Jan 17, 2023
9f7e563
Add sp-core/runtime-benchmarks
Jan 17, 2023
a4c7e79
Remove sp-core from dev deps
Jan 17, 2023
09f86aa
Enable full_crypto for benchmarks
Jan 17, 2023
dc9ff18
Typo
Jan 20, 2023
55eeb12
Fix
Jan 21, 2023
e8ea9ec
Update frame/nfts/src/mock.rs
jsidorenko Jan 21, 2023
5f27ced
Merge branch 'master' of https://github.com/paritytech/substrate into…
Jan 21, 2023
62edf5f
".git/.scripts/commands/bench/bench.sh" pallet dev pallet_nfts
Jan 21, 2023
b119156
Add docs
Jan 22, 2023
781f834
Add attributes into the pre-signed object & track the deposit owner f…
Jan 31, 2023
839c37c
Update docs
Jan 31, 2023
4980270
Merge branch 'master' into js/offchain-mint
Jan 31, 2023
c2d7c99
Merge branch 'master' of https://github.com/paritytech/substrate into…
Jan 31, 2023
7120dd0
".git/.scripts/commands/bench/bench.sh" pallet dev pallet_nfts
Jan 31, 2023
088dddd
Add the number of attributes provided to weights
Jan 31, 2023
ad7b0e1
Merge branch 'master' into js/offchain-mint
Feb 1, 2023
603a194
Support pre-signed attributes
Feb 1, 2023
30b26a7
Update docs
Feb 2, 2023
22c176d
Merge branch 'master' into js/offchain-attributes
Feb 14, 2023
2c43623
Fix merge artifacts
Feb 14, 2023
1a9fdee
Update docs
Feb 15, 2023
2056b91
Add more tests
Feb 15, 2023
d519049
Merge branch 'master' of https://github.com/paritytech/substrate into…
Feb 15, 2023
0032b2e
".git/.scripts/commands/bench/bench.sh" pallet dev pallet_nfts
Feb 15, 2023
5e81316
Update frame/nfts/src/types.rs
jsidorenko Feb 22, 2023
72bcea2
Update types.rs
jsidorenko Feb 22, 2023
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
Prev Previous commit
Next Next commit
Update docs
  • Loading branch information
Jegor Sidorenko committed Feb 2, 2023
commit 30b26a7e66786df8a34d8c76b0e797bb871106d2
1 change: 1 addition & 0 deletions frame/nfts/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1808,6 +1808,7 @@ pub mod pallet {
/// - `signer`: The `data` object's signer. Should be an owner of the collection.
///
/// Emits `Issued` on success.
/// Emits `AttributeSet` if the attributes were provided.
/// Emits `ItemMetadataSet` if the metadata was not empty.
#[pallet::call_index(37)]
#[pallet::weight(T::WeightInfo::mint_pre_signed(data.attributes.len() as u32))]
Expand Down