This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 379
NFTs 2.0 on Statemine #2314
Merged
Merged
NFTs 2.0 on Statemine #2314
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ use sp_api::impl_runtime_apis; | |
use sp_core::{crypto::KeyTypeId, OpaqueMetadata}; | ||
use sp_runtime::{ | ||
create_runtime_str, generic, impl_opaque_keys, | ||
traits::{AccountIdLookup, BlakeTwo256, Block as BlockT, ConvertInto}, | ||
traits::{AccountIdLookup, BlakeTwo256, Block as BlockT, ConvertInto, Verify}, | ||
transaction_validity::{TransactionSource, TransactionValidity}, | ||
ApplyExtrinsicResult, | ||
}; | ||
|
@@ -57,11 +57,12 @@ use frame_system::{ | |
limits::{BlockLength, BlockWeights}, | ||
EnsureRoot, EnsureSigned, | ||
}; | ||
use pallet_nfts::PalletFeatures; | ||
pub use parachains_common as common; | ||
use parachains_common::{ | ||
impls::{AssetsToBlockAuthor, DealWithFees}, | ||
opaque, AccountId, AssetIdForTrustBackedAssets, AuraId, Balance, BlockNumber, Hash, Header, | ||
Index, Signature, AVERAGE_ON_INITIALIZE_RATIO, HOURS, MAXIMUM_BLOCK_WEIGHT, | ||
Index, Signature, AVERAGE_ON_INITIALIZE_RATIO, DAYS, HOURS, MAXIMUM_BLOCK_WEIGHT, | ||
NORMAL_DISPATCH_RATIO, SLOT_DURATION, | ||
}; | ||
use xcm_config::{KsmLocation, TrustBackedAssetsConvertedConcreteId, XcmConfig}; | ||
|
@@ -338,6 +339,7 @@ impl InstanceFilter<RuntimeCall> for ProxyType { | |
c, | ||
RuntimeCall::Balances { .. } | | ||
RuntimeCall::Assets { .. } | | ||
RuntimeCall::Nfts { .. } | | ||
RuntimeCall::Uniques { .. } | ||
), | ||
ProxyType::CancelProxy => matches!( | ||
|
@@ -352,7 +354,7 @@ impl InstanceFilter<RuntimeCall> for ProxyType { | |
RuntimeCall::Assets { .. } | | ||
RuntimeCall::Utility { .. } | | ||
RuntimeCall::Multisig { .. } | | ||
RuntimeCall::Uniques { .. } | ||
RuntimeCall::Nfts { .. } | RuntimeCall::Uniques { .. } | ||
) | ||
}, | ||
ProxyType::AssetOwner => matches!( | ||
|
@@ -366,6 +368,13 @@ impl InstanceFilter<RuntimeCall> for ProxyType { | |
RuntimeCall::Assets(TrustBackedAssetsCall::set_team { .. }) | | ||
RuntimeCall::Assets(TrustBackedAssetsCall::set_metadata { .. }) | | ||
RuntimeCall::Assets(TrustBackedAssetsCall::clear_metadata { .. }) | | ||
RuntimeCall::Nfts(pallet_nfts::Call::create { .. }) | | ||
RuntimeCall::Nfts(pallet_nfts::Call::destroy { .. }) | | ||
RuntimeCall::Nfts(pallet_nfts::Call::redeposit { .. }) | | ||
RuntimeCall::Nfts(pallet_nfts::Call::transfer_ownership { .. }) | | ||
RuntimeCall::Nfts(pallet_nfts::Call::set_team { .. }) | | ||
RuntimeCall::Nfts(pallet_nfts::Call::set_collection_max_supply { .. }) | | ||
RuntimeCall::Nfts(pallet_nfts::Call::lock_collection { .. }) | | ||
RuntimeCall::Uniques(pallet_uniques::Call::create { .. }) | | ||
RuntimeCall::Uniques(pallet_uniques::Call::destroy { .. }) | | ||
RuntimeCall::Uniques(pallet_uniques::Call::transfer_ownership { .. }) | | ||
|
@@ -388,6 +397,17 @@ impl InstanceFilter<RuntimeCall> for ProxyType { | |
RuntimeCall::Assets(TrustBackedAssetsCall::thaw { .. }) | | ||
RuntimeCall::Assets(TrustBackedAssetsCall::freeze_asset { .. }) | | ||
RuntimeCall::Assets(TrustBackedAssetsCall::thaw_asset { .. }) | | ||
RuntimeCall::Nfts(pallet_nfts::Call::force_mint { .. }) | | ||
RuntimeCall::Nfts(pallet_nfts::Call::update_mint_settings { .. }) | | ||
RuntimeCall::Nfts(pallet_nfts::Call::mint_pre_signed { .. }) | | ||
RuntimeCall::Nfts(pallet_nfts::Call::set_attributes_pre_signed { .. }) | | ||
RuntimeCall::Nfts(pallet_nfts::Call::lock_item_transfer { .. }) | | ||
RuntimeCall::Nfts(pallet_nfts::Call::unlock_item_transfer { .. }) | | ||
RuntimeCall::Nfts(pallet_nfts::Call::lock_item_properties { .. }) | | ||
RuntimeCall::Nfts(pallet_nfts::Call::set_metadata { .. }) | | ||
RuntimeCall::Nfts(pallet_nfts::Call::clear_metadata { .. }) | | ||
RuntimeCall::Nfts(pallet_nfts::Call::set_collection_metadata { .. }) | | ||
RuntimeCall::Nfts(pallet_nfts::Call::clear_collection_metadata { .. }) | | ||
RuntimeCall::Uniques(pallet_uniques::Call::mint { .. }) | | ||
RuntimeCall::Uniques(pallet_uniques::Call::burn { .. }) | | ||
RuntimeCall::Uniques(pallet_uniques::Call::freeze { .. }) | | ||
|
@@ -561,12 +581,12 @@ impl pallet_asset_tx_payment::Config for Runtime { | |
parameter_types! { | ||
pub const CollectionDeposit: Balance = UNITS / 10; // 1 / 10 UNIT deposit to create asset class | ||
pub const ItemDeposit: Balance = UNITS / 1_000; // 1 / 1000 UNIT deposit to create asset instance | ||
pub const KeyLimit: u32 = 32; // Max 32 bytes per key | ||
pub const ValueLimit: u32 = 64; // Max 64 bytes per value | ||
pub const KeyLimit: u32 = 64; // Max 64 bytes per key | ||
pub const ValueLimit: u32 = 256; // Max 256 bytes per value | ||
pub const UniquesMetadataDepositBase: Balance = deposit(1, 129); | ||
pub const AttributeDepositBase: Balance = deposit(1, 0); | ||
pub const DepositPerByte: Balance = deposit(0, 1); | ||
pub const UniquesStringLimit: u32 = 128; | ||
pub const UniquesStringLimit: u32 = 256; | ||
} | ||
|
||
impl pallet_uniques::Config for Runtime { | ||
|
@@ -590,6 +610,40 @@ impl pallet_uniques::Config for Runtime { | |
type Locker = (); | ||
} | ||
|
||
parameter_types! { | ||
pub NftsPalletFeatures: PalletFeatures = PalletFeatures::all_enabled(); | ||
pub const NftsMaxDeadlineDuration: BlockNumber = 12 * 30 * DAYS; | ||
} | ||
|
||
impl pallet_nfts::Config for Runtime { | ||
type RuntimeEvent = RuntimeEvent; | ||
type CollectionId = u32; | ||
type ItemId = u32; | ||
type Currency = Balances; | ||
type CreateOrigin = AsEnsureOriginWithArg<EnsureSigned<AccountId>>; | ||
type ForceOrigin = AssetsForceOrigin; | ||
type Locker = (); | ||
type CollectionDeposit = CollectionDeposit; | ||
type ItemDeposit = ItemDeposit; | ||
type MetadataDepositBase = UniquesMetadataDepositBase; | ||
jsidorenko marked this conversation as resolved.
Show resolved
Hide resolved
|
||
type AttributeDepositBase = AttributeDepositBase; | ||
type DepositPerByte = DepositPerByte; | ||
type StringLimit = UniquesStringLimit; | ||
type KeyLimit = KeyLimit; | ||
type ValueLimit = ValueLimit; | ||
type ApprovalsLimit = ConstU32<20>; | ||
type ItemAttributesApprovalsLimit = ConstU32<30>; | ||
type MaxTips = ConstU32<10>; | ||
type MaxDeadlineDuration = NftsMaxDeadlineDuration; | ||
type MaxAttributesPerCall = ConstU32<10>; | ||
type Features = NftsPalletFeatures; | ||
type OffchainSignature = Signature; | ||
type OffchainPublic = <Signature as Verify>::Signer; | ||
type WeightInfo = weights::pallet_nfts::WeightInfo<Runtime>; | ||
#[cfg(feature = "runtime-benchmarks")] | ||
type Helper = (); | ||
} | ||
|
||
// Create the runtime by composing the FRAME pallets that were previously configured. | ||
construct_runtime!( | ||
pub enum Runtime where | ||
|
@@ -632,6 +686,7 @@ construct_runtime!( | |
// The main stage. | ||
Assets: pallet_assets::<Instance1>::{Pallet, Call, Storage, Event<T>} = 50, | ||
Uniques: pallet_uniques::{Pallet, Call, Storage, Event<T>} = 51, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. so There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's going to stay for now until we get the UI support for the new pallet and make a decision on the proper migration path |
||
Nfts: pallet_nfts::{Pallet, Call, Storage, Event<T>} = 52, | ||
|
||
#[cfg(feature = "state-trie-version-1")] | ||
StateTrieMigration: pallet_state_trie_migration = 70, | ||
|
@@ -686,6 +741,7 @@ mod benches { | |
[pallet_assets, Assets] | ||
[pallet_balances, Balances] | ||
[pallet_multisig, Multisig] | ||
[pallet_nfts, Nfts] | ||
[pallet_proxy, Proxy] | ||
[pallet_session, SessionBench::<Runtime>] | ||
[pallet_uniques, Uniques] | ||
|
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should allow foreign origins as well, so that collectives can create collections.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could also be an upgrade.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's do this as an upgrade once we get to the integration with collectives