difftreelog
Merge branch 'develop' into feature/NFTPAR-240
in: master
33 files changed
Cargo.lockdiffbeforeafterboth--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1228,6 +1228,26 @@
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
[[package]]
+name = "enumflags2"
+version = "0.6.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "83c8d82922337cd23a15f88b70d8e4ef5f11da38dd7cdb55e84dd5de99695da0"
+dependencies = [
+ "enumflags2_derive",
+]
+
+[[package]]
+name = "enumflags2_derive"
+version = "0.6.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "946ee94e3dbf58fdd324f9ce245c7b238d46a66f00e86a020b71996349e46cce"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn",
+]
+
+[[package]]
name = "env_logger"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -3502,6 +3522,8 @@
"sc-rpc-api",
"sc-service",
"sc-transaction-pool",
+ "serde",
+ "serde_json",
"sp-api",
"sp-block-builder",
"sp-blockchain",
@@ -3541,6 +3563,7 @@
"pallet-transaction-payment",
"pallet-transaction-payment-rpc-runtime-api",
"pallet-treasury",
+ "pallet-vesting",
"parity-scale-codec",
"serde",
"sp-api",
@@ -4020,6 +4043,20 @@
]
[[package]]
+name = "pallet-vesting"
+version = "2.0.0"
+source = "git+https://github.com/usetech-llc/substrate.git?branch=release_flexi#59646c902484d9c5e8933a80cbed551228b81274"
+dependencies = [
+ "enumflags2",
+ "frame-support",
+ "frame-system",
+ "parity-scale-codec",
+ "serde",
+ "sp-runtime",
+ "sp-std",
+]
+
+[[package]]
name = "parity-db"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
LICENSEdiffbeforeafterboth--- a/LICENSE
+++ b/LICENSE
@@ -1,24 +1,15 @@
-This is free and unencumbered software released into the public domain.
-
-Anyone is free to copy, modify, publish, use, compile, sell, or
-distribute this software, either in source code form or as a compiled
-binary, for any purpose, commercial or non-commercial, and by any
-means.
-
-In jurisdictions that recognize copyright laws, the author or authors
-of this software dedicate any and all copyright interest in the
-software to the public domain. We make this dedication for the benefit
-of the public at large and to the detriment of our heirs and
-successors. We intend this dedication to be an overt act of
-relinquishment in perpetuity of all present and future rights to this
-software under copyright law.
+USETECH PROFESSIONAL CONFIDENTIAL
+__________________
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
-OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
-ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
-OTHER DEALINGS IN THE SOFTWARE.
+ [2019] - [2020] UseTech Professional LTD.
+ All Rights Reserved.
-For more information, please refer to <http://unlicense.org>
+NOTICE: All information contained herein is, and remains
+the property of UseTech Professional LTD. and its suppliers,
+if any. The intellectual and technical concepts contained
+herein are proprietary to UseTech Professional LTD.
+and its suppliers and may be covered by U.S. and Foreign Patents,
+patents in process, and are protected by trade secret or copyright law.
+Dissemination of this information or reproduction of this material
+is strictly forbidden unless prior written permission is obtained
+from UseTech Professional LTD..
README.mddiffbeforeafterboth--- a/README.md
+++ b/README.md
@@ -52,28 +52,27 @@
2. Remove all installed toolchains with `rustup toolchain list` and `rustup toolchain uninstall <toolchain>`.
-3. Install Rust Toolchain 1.44.0:
+3. Install Toolchain and make it default:
```bash
-rustup install 1.44.0
+rustup toolchain install nightly-2020-10-01
+rustup default nightly-2020-10-01
```
-4. Make it default (actual toochain version may be different, so do a `rustup toolchain list` first)
+4. Add wasm target for default toolchain:
+
```bash
-rustup toolchain list
-rustup default 1.44.0-x86_64-unknown-linux-gnu
+rustup target add wasm32-unknown-unknown
```
-5. Install nightly toolchain and add wasm target for it:
-
+5. Build:
```bash
-rustup toolchain install nightly-2020-05-01
-rustup target add wasm32-unknown-unknown --toolchain nightly-2020-05-01-x86_64-unknown-linux-gnu
+cargo build
```
-6. Build:
+optionally, build in release:
```bash
-cargo build
+cargo build --release
```
## Run
@@ -134,4 +133,8 @@
## UI custom types
-Moved to [runtime_types.json](./runtime_types.json).
\ No newline at end of file
+Moved to [runtime_types.json](./runtime_types.json).
+
+## Running Integration Tests
+
+See [tests/README.md](./tests/README.md).
\ No newline at end of file
node/Cargo.tomldiffbeforeafterboth--- a/node/Cargo.toml
+++ b/node/Cargo.toml
@@ -58,6 +58,9 @@
substrate-frame-rpc-system = {version = '2.0.0', git = 'https://github.com/usetech-llc/substrate.git', branch = 'release_flexi'}
pallet-contracts-rpc = {version = '0.8.0', git = 'https://github.com/usetech-llc/substrate.git', branch = 'release_flexi'}
+serde = { version = "1.0.102", features = ["derive"] }
+serde_json = "1.0.41"
+
[features]
default = []
runtime-benchmarks = ['nft-runtime/runtime-benchmarks']
node/build.rsdiffbeforeafterboth--- a/node/build.rs
+++ b/node/build.rs
@@ -1,3 +1,8 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
use substrate_build_script_utils::{generate_cargo_keys, rerun_if_git_head_changed};
fn main() {
node/src/chain_spec.rsdiffbeforeafterboth--- a/node/src/chain_spec.rs
+++ b/node/src/chain_spec.rs
@@ -1,3 +1,8 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
// use nft_runtime::{
// AccountId, AuraConfig, BalancesConfig, GenesisConfig, GrandpaConfig, Signature, SudoConfig,
// SystemConfig, WASM_BINARY,
@@ -9,6 +14,7 @@
use sp_core::{sr25519, Pair, Public};
use sp_finality_grandpa::AuthorityId as GrandpaId;
use sp_runtime::traits::{IdentifyAccount, Verify};
+use serde_json::map::Map;
// Note this is the URL for the telemetry server
//const STAGING_TELEMETRY_URL: &str = "wss://telemetry.polkadot.io/submit/";
@@ -41,6 +47,11 @@
pub fn development_config() -> Result<ChainSpec, String> {
let wasm_binary = WASM_BINARY.ok_or("Development wasm binary not available".to_string())?;
+ let mut properties = Map::new();
+ properties.insert("tokenSymbol".into(), "UniqueTest".into());
+ properties.insert("tokenDecimals".into(), 15.into());
+ properties.insert("ss58Format".into(), 42.into()); // Generic Substrate wildcard (SS58 checksum preimage)
+
Ok(ChainSpec::from_genesis(
// Name
"Development",
@@ -71,7 +82,7 @@
// Protocol ID
None,
// Properties
- None,
+ Some(properties),
// Extensions
None,
))
@@ -132,6 +143,11 @@
endowed_accounts: Vec<AccountId>,
enable_println: bool,
) -> GenesisConfig {
+
+ let vested_accounts = vec![
+ get_account_id_from_seed::<sr25519::Public>("Bob"),
+ ];
+
GenesisConfig {
system: Some(SystemConfig {
code: wasm_binary.to_vec(),
@@ -154,7 +170,14 @@
.collect(),
}),
pallet_treasury: Some(Default::default()),
- pallet_sudo: Some(SudoConfig { key: root_key }),
+ pallet_sudo: Some(SudoConfig { key: root_key }),
+ pallet_vesting: Some(VestingConfig {
+ vesting: vested_accounts
+ .iter()
+ .cloned()
+ .map(|k| (k, 1000, 100, 1 << 98))
+ .collect(),
+ }),
pallet_nft: Some(NftConfig {
collection: vec![(
1,
node/src/main.rsdiffbeforeafterboth--- a/node/src/main.rs
+++ b/node/src/main.rs
@@ -1,3 +1,8 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
//! Substrate Node Template CLI library.
#![warn(missing_docs)]
node/src/service.rsdiffbeforeafterboth--- a/node/src/service.rs
+++ b/node/src/service.rs
@@ -1,5 +1,10 @@
//! Service and ServiceFactory implementation. Specialized wrapper over substrate service.
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
use std::sync::Arc;
use std::time::Duration;
use sc_client_api::{ExecutorProvider, RemoteBackend};
pallets/nft/src/lib.rsdiffbeforeafterboth1#![recursion_limit = "1024"]23#![cfg_attr(not(feature = "std"), no_std)]45#[cfg(feature = "std")]6pub use std::*;78#[cfg(feature = "std")]9pub use serde::*;1011use codec::{Decode, Encode};12pub use frame_support::{13 construct_runtime, decl_event, decl_module, decl_storage, decl_error,14 dispatch::DispatchResult,15 ensure, fail, parameter_types,16 traits::{17 Currency, ExistenceRequirement, Get, Imbalance, KeyOwnerProofSystem, OnUnbalanced,18 Randomness, WithdrawReason,19 },20 weights::{21 constants::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, WEIGHT_PER_SECOND},22 DispatchInfo, GetDispatchInfo, IdentityFee, Pays, PostDispatchInfo, Weight,23 WeightToFeePolynomial,24 },25 IsSubType, StorageValue,26};2728use frame_system::{self as system, ensure_signed, ensure_root};29use sp_runtime::sp_std::prelude::Vec;30use sp_runtime::{31 traits::{32 DispatchInfoOf, Dispatchable, PostDispatchInfoOf, Saturating, SaturatedConversion, SignedExtension, Zero,33 },34 transaction_validity::{35 TransactionPriority, InvalidTransaction, TransactionValidity, TransactionValidityError, ValidTransaction,36 },37 FixedPointOperand, FixedU128,38};39use pallet_contracts::ContractAddressFor;40use sp_runtime::traits::StaticLookup;4142#[cfg(test)]43mod mock;4445#[cfg(test)]46mod tests;4748mod default_weights;4950pub const MAX_DECIMAL_POINTS: DecimalPoints = 30;51pub const MAX_SPONSOR_TIMEOUT: u32 = 10_368_000;52pub const MAX_TOKEN_OWNERSHIP: u32 = 10_000_000;5354// Structs55// #region5657pub type CollectionId = u32;58pub type TokenId = u32;59pub type DecimalPoints = u8;6061#[derive(Encode, Decode, Eq, Debug, Clone, PartialEq)]62#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]63pub enum CollectionMode {64 Invalid,65 NFT,66 // decimal points67 Fungible(DecimalPoints),68 // decimal points69 ReFungible(DecimalPoints),70}7172impl Into<u8> for CollectionMode {73 fn into(self) -> u8 {74 match self {75 CollectionMode::Invalid => 0,76 CollectionMode::NFT => 1,77 CollectionMode::Fungible(_) => 2,78 CollectionMode::ReFungible(_) => 3,79 }80 }81}8283#[derive(Encode, Decode, Eq, Debug, Clone, PartialEq)]84#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]85pub enum AccessMode {86 Normal,87 WhiteList,88}89impl Default for AccessMode {90 fn default() -> Self {91 Self::Normal92 }93}9495impl Default for CollectionMode {96 fn default() -> Self {97 Self::Invalid98 }99}100101#[derive(Encode, Decode, Eq, Debug, Clone, PartialEq)]102#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]103pub enum SchemaVersion {104 ImageURL,105 Unique,106}107impl Default for SchemaVersion {108 fn default() -> Self {109 Self::ImageURL110 }111}112113#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]114#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]115pub struct Ownership<AccountId> {116 pub owner: AccountId,117 pub fraction: u128,118}119120#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]121#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]122pub struct CollectionType<AccountId> {123 pub owner: AccountId,124 pub mode: CollectionMode,125 pub access: AccessMode,126 pub decimal_points: DecimalPoints,127 pub name: Vec<u16>, // 64 include null escape char128 pub description: Vec<u16>, // 256 include null escape char129 pub token_prefix: Vec<u8>, // 16 include null escape char130 pub mint_mode: bool,131 pub offchain_schema: Vec<u8>,132 pub schema_version: SchemaVersion,133 pub sponsor: AccountId, // Who pays fees. If set to default address, the fees are applied to the transaction sender134 pub unconfirmed_sponsor: AccountId, // Sponsor address that has not yet confirmed sponsorship135 pub limits: CollectionLimits, // Collection private restrictions 136 pub variable_on_chain_schema: Vec<u8>, //137 pub const_on_chain_schema: Vec<u8>, //138}139140#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]141#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]142pub struct NftItemType<AccountId> {143 pub collection: CollectionId,144 pub owner: AccountId,145 pub const_data: Vec<u8>,146 pub variable_data: Vec<u8>,147}148149#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]150#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]151pub struct FungibleItemType<AccountId> {152 pub collection: CollectionId,153 pub owner: AccountId,154 pub value: u128,155}156157#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]158#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]159pub struct ReFungibleItemType<AccountId> {160 pub collection: CollectionId,161 pub owner: Vec<Ownership<AccountId>>,162 pub const_data: Vec<u8>,163 pub variable_data: Vec<u8>,164}165166#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]167#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]168pub struct ApprovePermissions<AccountId> {169 pub approved: AccountId,170 pub amount: u128,171}172173#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]174#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]175pub struct VestingItem<AccountId, Moment> {176 pub sender: AccountId,177 pub recipient: AccountId,178 pub collection_id: CollectionId,179 pub item_id: TokenId,180 pub amount: u64,181 pub vesting_date: Moment,182}183184#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]185#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]186pub struct BasketItem<AccountId, BlockNumber> {187 pub address: AccountId,188 pub start_block: BlockNumber,189}190191#[derive(Encode, Decode, Debug, Clone, PartialEq)]192#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]193pub struct CollectionLimits {194 pub account_token_ownership_limit: u32,195 pub sponsored_data_size: u32,196 pub token_limit: u32,197198 // Timeouts for item types in passed blocks199 pub sponsor_transfer_timeout: u32,200}201202impl Default for CollectionLimits {203 fn default() -> CollectionLimits {204 CollectionLimits { 205 account_token_ownership_limit: 10_000_000, 206 token_limit: u32::max_value(),207 sponsored_data_size: u32::max_value(), 208 sponsor_transfer_timeout: 14400 }209 }210}211212#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]213#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]214pub struct ChainLimits {215 pub collection_numbers_limit: u32,216 pub account_token_ownership_limit: u32,217 pub collections_admins_limit: u64,218 pub custom_data_limit: u32,219220 // Timeouts for item types in passed blocks221 pub nft_sponsor_transfer_timeout: u32,222 pub fungible_sponsor_transfer_timeout: u32,223 pub refungible_sponsor_transfer_timeout: u32,224}225226pub trait WeightInfo {227 fn create_collection() -> Weight;228 fn destroy_collection() -> Weight;229 fn add_to_white_list() -> Weight;230 fn remove_from_white_list() -> Weight;231 fn set_public_access_mode() -> Weight;232 fn set_mint_permission() -> Weight;233 fn change_collection_owner() -> Weight;234 fn add_collection_admin() -> Weight;235 fn remove_collection_admin() -> Weight;236 fn set_collection_sponsor() -> Weight;237 fn confirm_sponsorship() -> Weight;238 fn remove_collection_sponsor() -> Weight;239 fn create_item(s: usize) -> Weight;240 fn burn_item() -> Weight;241 fn transfer() -> Weight;242 fn approve() -> Weight;243 fn transfer_from() -> Weight;244 fn set_offchain_schema() -> Weight;245 fn set_const_on_chain_schema() -> Weight;246 fn set_variable_on_chain_schema() -> Weight;247 fn set_variable_meta_data() -> Weight;248 fn enable_contract_sponsoring() -> Weight;249}250251#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]252#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]253pub struct CreateNftData {254 pub const_data: Vec<u8>,255 pub variable_data: Vec<u8>,256}257258#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]259#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]260pub struct CreateFungibleData {261}262263#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]264#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]265pub struct CreateReFungibleData {266 pub const_data: Vec<u8>,267 pub variable_data: Vec<u8>,268}269270#[derive(Encode, Decode, Debug, Clone, PartialEq)]271#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]272pub enum CreateItemData {273 NFT(CreateNftData),274 Fungible(CreateFungibleData),275 ReFungible(CreateReFungibleData),276}277278impl CreateItemData {279 pub fn len(&self) -> usize {280 let len = match self {281 CreateItemData::NFT(data) => data.variable_data.len() + data.const_data.len(),282 CreateItemData::ReFungible(data) => data.variable_data.len() + data.const_data.len(),283 _ => 0284 };285 286 return len;287 }288}289290impl From<CreateNftData> for CreateItemData {291 fn from(item: CreateNftData) -> Self {292 CreateItemData::NFT(item)293 }294}295296impl From<CreateReFungibleData> for CreateItemData {297 fn from(item: CreateReFungibleData) -> Self {298 CreateItemData::ReFungible(item)299 }300}301302impl From<CreateFungibleData> for CreateItemData {303 fn from(item: CreateFungibleData) -> Self {304 CreateItemData::Fungible(item)305 }306}307308309decl_error! {310 /// Error for non-fungible-token module.311 pub enum Error for Module<T: Trait> {312 /// Total collections bound exceeded.313 TotalCollectionsLimitExceeded,314 /// Decimal_points parameter must be lower than MAX_DECIMAL_POINTS constant, currently it is 30.315 CollectionDecimalPointLimitExceeded, 316 /// Collection name can not be longer than 63 char.317 CollectionNameLimitExceeded, 318 /// Collection description can not be longer than 255 char.319 CollectionDescriptionLimitExceeded, 320 /// Token prefix can not be longer than 15 char.321 CollectionTokenPrefixLimitExceeded,322 /// This collection does not exist.323 CollectionNotFound,324 /// Item not exists.325 TokenNotFound,326 /// Arithmetic calculation overflow.327 NumOverflow, 328 /// Account already has admin role.329 AlreadyAdmin, 330 /// You do not own this collection.331 NoPermission,332 /// This address is not set as sponsor, use setCollectionSponsor first.333 ConfirmUnsetSponsorFail,334 /// Collection is not in mint mode.335 PublicMintingNotAllowed,336 /// Sender parameter and item owner must be equal.337 MustBeTokenOwner,338 /// Item balance not enough.339 TokenValueTooLow,340 /// Size of item is too large.341 NftSizeLimitExceeded,342 /// No approve found343 ApproveNotFound,344 /// Requested value more than approved.345 TokenValueNotEnough,346 /// Only approved addresses can call this method.347 ApproveRequired,348 /// Address is not in white list.349 AddresNotInWhiteList,350 /// Number of collection admins bound exceeded.351 CollectionAdminsLimitExceeded,352 /// Owned tokens by a single address bound exceeded.353 AddressOwnershipLimitExceeded,354 /// Length of items properties must be greater than 0.355 EmptyArgument,356 /// const_data exceeded data limit.357 TokenConstDataLimitExceeded,358 /// variable_data exceeded data limit.359 TokenVariableDataLimitExceeded,360 /// Not NFT item data used to mint in NFT collection.361 NotNftDataUsedToMintNftCollectionToken,362 /// Not Fungible item data used to mint in Fungible collection.363 NotFungibleDataUsedToMintFungibleCollectionToken,364 /// Not Re Fungible item data used to mint in Re Fungible collection.365 NotReFungibleDataUsedToMintReFungibleCollectionToken,366 /// Unexpected collection type.367 UnexpectedCollectionType,368 /// Can't store metadata in fungible tokens.369 CantStoreMetadataInFungibleTokens,370 /// Collection token limit exceeded371 CollectionTokenLimitExceeded,372 /// Account token limit exceeded per collection373 AccountTokenLimitExceeded,374 /// Collection limit bounds per collection exceeded375 CollectionLimitBoundsExceeded376 }377}378379pub trait Trait: system::Trait + Sized + transaction_payment::Trait + pallet_contracts::Trait {380 type Event: From<Event<Self>> + Into<<Self as system::Trait>::Event>;381382 /// Weight information for extrinsics in this pallet.383 type WeightInfo: WeightInfo;384}385386#[cfg(feature = "runtime-benchmarks")]387mod benchmarking;388389// #endregion390391decl_storage! {392 trait Store for Module<T: Trait> as Nft {393394 // Private members395 NextCollectionID: CollectionId;396 CreatedCollectionCount: u32;397 ChainVersion: u64;398 ItemListIndex: map hasher(identity) CollectionId => TokenId;399400 // Chain limits struct401 pub ChainLimit get(fn chain_limit) config(): ChainLimits;402403 // Bound counters404 CollectionCount: u32;405 pub AccountItemCount get(fn account_item_count): map hasher(twox_64_concat) T::AccountId => u32;406407 // Basic collections408 pub Collection get(fn collection) config(): map hasher(identity) CollectionId => CollectionType<T::AccountId>;409 pub AdminList get(fn admin_list_collection): map hasher(identity) CollectionId => Vec<T::AccountId>;410 pub WhiteList get(fn white_list): map hasher(identity) CollectionId => Vec<T::AccountId>;411412 /// Balance owner per collection map413 pub Balance get(fn balance_count): double_map hasher(identity) CollectionId, hasher(twox_64_concat) T::AccountId => u128;414415 /// second parameter: item id + owner account id416 pub ApprovedList get(fn approved): double_map hasher(identity) CollectionId, hasher(twox_64_concat) (TokenId, T::AccountId) => Vec<ApprovePermissions<T::AccountId>>;417418 /// Item collections419 pub NftItemList get(fn nft_item_id) config(): double_map hasher(identity) CollectionId, hasher(identity) TokenId => NftItemType<T::AccountId>;420 pub FungibleItemList get(fn fungible_item_id) config(): double_map hasher(identity) CollectionId, hasher(identity) TokenId => FungibleItemType<T::AccountId>;421 pub ReFungibleItemList get(fn refungible_item_id) config(): double_map hasher(identity) CollectionId, hasher(identity) TokenId => ReFungibleItemType<T::AccountId>;422423 /// Index list424 pub AddressTokens get(fn address_tokens): double_map hasher(identity) CollectionId, hasher(twox_64_concat) T::AccountId => Vec<TokenId>;425426 /// Tokens transfer baskets427 pub NftTransferBasket get(fn nft_transfer_basket): double_map hasher(identity) CollectionId, hasher(identity) TokenId => T::BlockNumber;428 pub FungibleTransferBasket get(fn fungible_transfer_basket): double_map hasher(identity) CollectionId, hasher(identity) TokenId => Vec<BasketItem<T::AccountId, T::BlockNumber>>;429 pub ReFungibleTransferBasket get(fn refungible_transfer_basket): double_map hasher(identity) CollectionId, hasher(identity) TokenId => T::BlockNumber;430431 // Contract Sponsorship and Ownership432 pub ContractOwner get(fn contract_owner): map hasher(twox_64_concat) T::AccountId => T::AccountId;433 pub ContractSelfSponsoring get(fn contract_self_sponsoring): map hasher(twox_64_concat) T::AccountId => bool;434 pub ContractSponsorBasket get(fn contract_sponsor_basket): map hasher(twox_64_concat) (T::AccountId, T::AccountId) => T::BlockNumber;435 pub ContractSponsoringRateLimit get(fn contract_sponsoring_rate_limit): map hasher(twox_64_concat) T::AccountId => T::BlockNumber;436 }437 add_extra_genesis {438 build(|config: &GenesisConfig<T>| {439 // Modification of storage440 for (_num, _c) in &config.collection {441 <Module<T>>::init_collection(_c);442 }443444 for (_num, _q, _i) in &config.nft_item_id {445 <Module<T>>::init_nft_token(_i);446 }447448 for (_num, _q, _i) in &config.fungible_item_id {449 <Module<T>>::init_fungible_token(_i);450 }451452 for (_num, _q, _i) in &config.refungible_item_id {453 <Module<T>>::init_refungible_token(_i);454 }455 })456 }457}458459decl_event!(460 pub enum Event<T>461 where462 AccountId = <T as system::Trait>::AccountId,463 {464 /// New collection was created465 /// 466 /// # Arguments467 /// 468 /// * collection_id: Globally unique identifier of newly created collection.469 /// 470 /// * mode: [CollectionMode] converted into u8.471 /// 472 /// * account_id: Collection owner.473 Created(CollectionId, u8, AccountId),474475 /// New item was created.476 /// 477 /// # Arguments478 /// 479 /// * collection_id: Id of the collection where item was created.480 /// 481 /// * item_id: Id of an item. Unique within the collection.482 ItemCreated(CollectionId, TokenId),483484 /// Collection item was burned.485 /// 486 /// # Arguments487 /// 488 /// collection_id.489 /// 490 /// item_id: Identifier of burned NFT.491 ItemDestroyed(CollectionId, TokenId),492 }493);494495decl_module! {496 pub struct Module<T: Trait> for enum Call where origin: T::Origin {497498 fn deposit_event() = default;499 type Error = Error<T>;500501 fn on_initialize(now: T::BlockNumber) -> Weight {502503 if ChainVersion::get() < 2504 {505 let value = NextCollectionID::get();506 CreatedCollectionCount::put(value);507 ChainVersion::put(2);508 }509510 0511 }512513 /// This method creates a Collection of NFTs. Each Token may have multiple properties encoded as an array of bytes of certain length. The initial owner and admin of the collection are set to the address that signed the transaction. Both addresses can be changed later.514 /// 515 /// # Permissions516 /// 517 /// * Anyone.518 /// 519 /// # Arguments520 /// 521 /// * collection_name: UTF-16 string with collection name (limit 64 characters), will be stored as zero-terminated.522 /// 523 /// * collection_description: UTF-16 string with collection description (limit 256 characters), will be stored as zero-terminated.524 /// 525 /// * token_prefix: UTF-8 string with token prefix.526 /// 527 /// * mode: [CollectionMode] collection type and type dependent data.528 // returns collection ID529 #[weight = T::WeightInfo::create_collection()]530 pub fn create_collection(origin,531 collection_name: Vec<u16>,532 collection_description: Vec<u16>,533 token_prefix: Vec<u8>,534 mode: CollectionMode) -> DispatchResult {535536 // Anyone can create a collection537 let who = ensure_signed(origin)?;538539 let decimal_points = match mode {540 CollectionMode::Fungible(points) => points,541 CollectionMode::ReFungible(points) => points,542 _ => 0543 };544545 // bound Total number of collections546 ensure!(CollectionCount::get() < ChainLimit::get().collection_numbers_limit, Error::<T>::TotalCollectionsLimitExceeded);547548 // check params549 ensure!(decimal_points <= MAX_DECIMAL_POINTS, Error::<T>::CollectionDecimalPointLimitExceeded);550551 let mut name = collection_name.to_vec();552 name.push(0);553 ensure!(name.len() <= 64, Error::<T>::CollectionNameLimitExceeded);554555 let mut description = collection_description.to_vec();556 description.push(0);557 ensure!(name.len() <= 256, Error::<T>::CollectionDescriptionLimitExceeded);558559 let mut prefix = token_prefix.to_vec();560 prefix.push(0);561 ensure!(prefix.len() <= 16, Error::<T>::CollectionTokenPrefixLimitExceeded);562563 // Generate next collection ID564 let next_id = CreatedCollectionCount::get()565 .checked_add(1)566 .ok_or(Error::<T>::NumOverflow)?;567568 // bound counter569 let total = CollectionCount::get()570 .checked_add(1)571 .ok_or(Error::<T>::NumOverflow)?;572573 CreatedCollectionCount::put(next_id);574 CollectionCount::put(total);575576 // Create new collection577 let new_collection = CollectionType {578 owner: who.clone(),579 name: name,580 mode: mode.clone(),581 mint_mode: false,582 access: AccessMode::Normal,583 description: description,584 decimal_points: decimal_points,585 token_prefix: prefix,586 offchain_schema: Vec::new(),587 schema_version: SchemaVersion::ImageURL,588 sponsor: T::AccountId::default(),589 unconfirmed_sponsor: T::AccountId::default(),590 variable_on_chain_schema: Vec::new(),591 const_on_chain_schema: Vec::new(),592 limits: CollectionLimits::default(),593 };594595 // Add new collection to map596 <Collection<T>>::insert(next_id, new_collection);597598 // call event599 Self::deposit_event(RawEvent::Created(next_id, mode.into(), who.clone()));600601 Ok(())602 }603604 /// **DANGEROUS**: Destroys collection and all NFTs within this collection. Users irrecoverably lose their assets and may lose real money.605 /// 606 /// # Permissions607 /// 608 /// * Collection Owner.609 /// 610 /// # Arguments611 /// 612 /// * collection_id: collection to destroy.613 #[weight = T::WeightInfo::destroy_collection()]614 pub fn destroy_collection(origin, collection_id: CollectionId) -> DispatchResult {615616 let sender = ensure_signed(origin)?;617 Self::check_owner_permissions(collection_id, sender)?;618619 <AddressTokens<T>>::remove_prefix(collection_id);620 <ApprovedList<T>>::remove_prefix(collection_id);621 <Balance<T>>::remove_prefix(collection_id);622 <ItemListIndex>::remove(collection_id);623 <AdminList<T>>::remove(collection_id);624 <Collection<T>>::remove(collection_id);625 <WhiteList<T>>::remove(collection_id);626627 <NftItemList<T>>::remove_prefix(collection_id);628 <FungibleItemList<T>>::remove_prefix(collection_id);629 <ReFungibleItemList<T>>::remove_prefix(collection_id);630631 <NftTransferBasket<T>>::remove_prefix(collection_id);632 <FungibleTransferBasket<T>>::remove_prefix(collection_id);633 <ReFungibleTransferBasket<T>>::remove_prefix(collection_id);634635 if CollectionCount::get() > 0636 {637 // bound couter638 let total = CollectionCount::get()639 .checked_sub(1)640 .ok_or(Error::<T>::NumOverflow)?;641642 CollectionCount::put(total);643 }644645 Ok(())646 }647648 /// Add an address to white list.649 /// 650 /// # Permissions651 /// 652 /// * Collection Owner653 /// * Collection Admin654 /// 655 /// # Arguments656 /// 657 /// * collection_id.658 /// 659 /// * address.660 #[weight = T::WeightInfo::add_to_white_list()]661 pub fn add_to_white_list(origin, collection_id: CollectionId, address: T::AccountId) -> DispatchResult{662663 let sender = ensure_signed(origin)?;664 Self::check_owner_or_admin_permissions(collection_id, sender)?;665666 let mut white_list_collection: Vec<T::AccountId>;667 if <WhiteList<T>>::contains_key(collection_id) {668 white_list_collection = <WhiteList<T>>::get(collection_id);669 if !white_list_collection.contains(&address.clone())670 {671 white_list_collection.push(address.clone());672 }673 }674 else {675 white_list_collection = Vec::new();676 white_list_collection.push(address.clone());677 }678679 <WhiteList<T>>::insert(collection_id, white_list_collection);680 Ok(())681 }682683 /// Remove an address from white list.684 /// 685 /// # Permissions686 /// 687 /// * Collection Owner688 /// * Collection Admin689 /// 690 /// # Arguments691 /// 692 /// * collection_id.693 /// 694 /// * address.695 #[weight = T::WeightInfo::remove_from_white_list()]696 pub fn remove_from_white_list(origin, collection_id: CollectionId, address: T::AccountId) -> DispatchResult{697698 let sender = ensure_signed(origin)?;699 Self::check_owner_or_admin_permissions(collection_id, sender)?;700701 if <WhiteList<T>>::contains_key(collection_id) {702 let mut white_list_collection = <WhiteList<T>>::get(collection_id);703 if white_list_collection.contains(&address.clone())704 {705 white_list_collection.retain(|i| *i != address.clone());706 <WhiteList<T>>::insert(collection_id, white_list_collection);707 }708 }709710 Ok(())711 }712713 /// Toggle between normal and white list access for the methods with access for `Anyone`.714 /// 715 /// # Permissions716 /// 717 /// * Collection Owner.718 /// 719 /// # Arguments720 /// 721 /// * collection_id.722 /// 723 /// * mode: [AccessMode]724 #[weight = T::WeightInfo::set_public_access_mode()]725 pub fn set_public_access_mode(origin, collection_id: CollectionId, mode: AccessMode) -> DispatchResult726 {727 let sender = ensure_signed(origin)?;728729 Self::check_owner_permissions(collection_id, sender)?;730 let mut target_collection = <Collection<T>>::get(collection_id);731 target_collection.access = mode;732 <Collection<T>>::insert(collection_id, target_collection);733734 Ok(())735 }736737 /// Allows Anyone to create tokens if:738 /// * White List is enabled, and739 /// * Address is added to white list, and740 /// * This method was called with True parameter741 /// 742 /// # Permissions743 /// * Collection Owner744 ///745 /// # Arguments746 /// 747 /// * collection_id.748 /// 749 /// * mint_permission: Boolean parameter. If True, allows minting to Anyone with conditions above.750 #[weight = T::WeightInfo::set_mint_permission()]751 pub fn set_mint_permission(origin, collection_id: CollectionId, mint_permission: bool) -> DispatchResult752 {753 let sender = ensure_signed(origin)?;754755 Self::check_owner_permissions(collection_id, sender)?;756 let mut target_collection = <Collection<T>>::get(collection_id);757 target_collection.mint_mode = mint_permission;758 <Collection<T>>::insert(collection_id, target_collection);759760 Ok(())761 }762763 /// Change the owner of the collection.764 /// 765 /// # Permissions766 /// 767 /// * Collection Owner.768 /// 769 /// # Arguments770 /// 771 /// * collection_id.772 /// 773 /// * new_owner.774 #[weight = T::WeightInfo::change_collection_owner()]775 pub fn change_collection_owner(origin, collection_id: CollectionId, new_owner: T::AccountId) -> DispatchResult {776777 let sender = ensure_signed(origin)?;778 Self::check_owner_permissions(collection_id, sender)?;779 let mut target_collection = <Collection<T>>::get(collection_id);780 target_collection.owner = new_owner;781 <Collection<T>>::insert(collection_id, target_collection);782783 Ok(())784 }785786 /// Adds an admin of the Collection.787 /// NFT Collection can be controlled by multiple admin addresses (some which can also be servers, for example). Admins can issue and burn NFTs, as well as add and remove other admins, but cannot change NFT or Collection ownership. 788 /// 789 /// # Permissions790 /// 791 /// * Collection Owner.792 /// * Collection Admin.793 /// 794 /// # Arguments795 /// 796 /// * collection_id: ID of the Collection to add admin for.797 /// 798 /// * new_admin_id: Address of new admin to add.799 #[weight = T::WeightInfo::add_collection_admin()]800 pub fn add_collection_admin(origin, collection_id: CollectionId, new_admin_id: T::AccountId) -> DispatchResult {801802 let sender = ensure_signed(origin)?;803 Self::check_owner_or_admin_permissions(collection_id, sender)?;804 let mut admin_arr: Vec<T::AccountId> = Vec::new();805806 if <AdminList<T>>::contains_key(collection_id)807 {808 admin_arr = <AdminList<T>>::get(collection_id);809 ensure!(!admin_arr.contains(&new_admin_id), Error::<T>::AlreadyAdmin);810 }811812 // Number of collection admins813 ensure!((admin_arr.len() as u64) < ChainLimit::get().collections_admins_limit, Error::<T>::CollectionAdminsLimitExceeded);814815 admin_arr.push(new_admin_id);816 <AdminList<T>>::insert(collection_id, admin_arr);817818 Ok(())819 }820821 /// Remove admin address of the Collection. An admin address can remove itself. List of admins may become empty, in which case only Collection Owner will be able to add an Admin.822 ///823 /// # Permissions824 /// 825 /// * Collection Owner.826 /// * Collection Admin.827 /// 828 /// # Arguments829 /// 830 /// * collection_id: ID of the Collection to remove admin for.831 /// 832 /// * account_id: Address of admin to remove.833 #[weight = T::WeightInfo::remove_collection_admin()]834 pub fn remove_collection_admin(origin, collection_id: CollectionId, account_id: T::AccountId) -> DispatchResult {835836 let sender = ensure_signed(origin)?;837 Self::check_owner_or_admin_permissions(collection_id, sender)?;838839 if <AdminList<T>>::contains_key(collection_id)840 {841 let mut admin_arr = <AdminList<T>>::get(collection_id);842 admin_arr.retain(|i| *i != account_id);843 <AdminList<T>>::insert(collection_id, admin_arr);844 }845846 Ok(())847 }848849 /// # Permissions850 /// 851 /// * Collection Owner852 /// 853 /// # Arguments854 /// 855 /// * collection_id.856 /// 857 /// * new_sponsor.858 #[weight = T::WeightInfo::set_collection_sponsor()]859 pub fn set_collection_sponsor(origin, collection_id: CollectionId, new_sponsor: T::AccountId) -> DispatchResult {860861 let sender = ensure_signed(origin)?;862 ensure!(<Collection<T>>::contains_key(collection_id), Error::<T>::CollectionNotFound);863864 let mut target_collection = <Collection<T>>::get(collection_id);865 ensure!(sender == target_collection.owner, Error::<T>::NoPermission);866867 target_collection.unconfirmed_sponsor = new_sponsor;868 <Collection<T>>::insert(collection_id, target_collection);869870 Ok(())871 }872873 /// # Permissions874 /// 875 /// * Sponsor.876 /// 877 /// # Arguments878 /// 879 /// * collection_id.880 #[weight = T::WeightInfo::confirm_sponsorship()]881 pub fn confirm_sponsorship(origin, collection_id: CollectionId) -> DispatchResult {882883 let sender = ensure_signed(origin)?;884 ensure!(<Collection<T>>::contains_key(collection_id), Error::<T>::CollectionNotFound);885886 let mut target_collection = <Collection<T>>::get(collection_id);887 ensure!(sender == target_collection.unconfirmed_sponsor, Error::<T>::ConfirmUnsetSponsorFail);888889 target_collection.sponsor = target_collection.unconfirmed_sponsor;890 target_collection.unconfirmed_sponsor = T::AccountId::default();891 <Collection<T>>::insert(collection_id, target_collection);892893 Ok(())894 }895896 /// Switch back to pay-per-own-transaction model.897 ///898 /// # Permissions899 ///900 /// * Collection owner.901 /// 902 /// # Arguments903 /// 904 /// * collection_id.905 #[weight = T::WeightInfo::remove_collection_sponsor()]906 pub fn remove_collection_sponsor(origin, collection_id: CollectionId) -> DispatchResult {907908 let sender = ensure_signed(origin)?;909 ensure!(<Collection<T>>::contains_key(collection_id), Error::<T>::CollectionNotFound);910911 let mut target_collection = <Collection<T>>::get(collection_id);912 ensure!(sender == target_collection.owner, Error::<T>::NoPermission);913914 target_collection.sponsor = T::AccountId::default();915 <Collection<T>>::insert(collection_id, target_collection);916917 Ok(())918 }919920 /// This method creates a concrete instance of NFT Collection created with CreateCollection method.921 /// 922 /// # Permissions923 /// 924 /// * Collection Owner.925 /// * Collection Admin.926 /// * Anyone if927 /// * White List is enabled, and928 /// * Address is added to white list, and929 /// * MintPermission is enabled (see SetMintPermission method)930 /// 931 /// # Arguments932 /// 933 /// * collection_id: ID of the collection.934 /// 935 /// * owner: Address, initial owner of the NFT.936 ///937 /// * data: Token data to store on chain.938 // #[weight =939 // (130_000_000 as Weight)940 // .saturating_add((2135 as Weight).saturating_mul((properties.len() as u64) as Weight))941 // .saturating_add(RocksDbWeight::get().reads(10 as Weight))942 // .saturating_add(RocksDbWeight::get().writes(8 as Weight))]943944 #[weight = T::WeightInfo::create_item(data.len())]945 pub fn create_item(origin, collection_id: CollectionId, owner: T::AccountId, data: CreateItemData) -> DispatchResult {946947 let sender = ensure_signed(origin)?;948949 Self::collection_exists(collection_id)?;950951 let target_collection = <Collection<T>>::get(collection_id);952953 Self::can_create_items_in_collection(collection_id, &target_collection, &sender, &owner)?;954 Self::validate_create_item_args(&target_collection, &data)?;955 Self::create_item_no_validation(collection_id, &target_collection, owner, data)?;956957 Ok(())958 }959960 /// This method creates multiple instances of NFT Collection created with CreateCollection method.961 /// 962 /// # Permissions963 /// 964 /// * Collection Owner.965 /// * Collection Admin.966 /// * Anyone if967 /// * White List is enabled, and968 /// * Address is added to white list, and969 /// * MintPermission is enabled (see SetMintPermission method)970 /// 971 /// # Arguments972 /// 973 /// * collection_id: ID of the collection.974 /// 975 /// * itemsData: Array items properties. Each property is an array of bytes itself, see [create_item].976 /// 977 /// * owner: Address, initial owner of the NFT.978 #[weight = T::WeightInfo::create_item(items_data.into_iter()979 .map(|data| { data.len() })980 .sum())]981 pub fn create_multiple_items(origin, collection_id: CollectionId, owner: T::AccountId, items_data: Vec<CreateItemData>) -> DispatchResult {982983 ensure!(items_data.len() > 0, Error::<T>::EmptyArgument);984 let sender = ensure_signed(origin)?;985986 Self::collection_exists(collection_id)?;987 let target_collection = <Collection<T>>::get(collection_id);988989 Self::can_create_items_in_collection(collection_id, &target_collection, &sender, &owner)?;990991 for data in &items_data {992 Self::validate_create_item_args(&target_collection, data)?;993 }994 for data in &items_data {995 Self::create_item_no_validation(collection_id, &target_collection, owner.clone(), data.clone())?;996 }997998 Ok(())999 }10001001 /// Destroys a concrete instance of NFT.1002 /// 1003 /// # Permissions1004 /// 1005 /// * Collection Owner.1006 /// * Collection Admin.1007 /// * Current NFT Owner.1008 /// 1009 /// # Arguments1010 /// 1011 /// * collection_id: ID of the collection.1012 /// 1013 /// * item_id: ID of NFT to burn.1014 #[weight = T::WeightInfo::burn_item()]1015 pub fn burn_item(origin, collection_id: CollectionId, item_id: TokenId) -> DispatchResult {10161017 let sender = ensure_signed(origin)?;1018 Self::collection_exists(collection_id)?;10191020 // Transfer permissions check1021 let target_collection = <Collection<T>>::get(collection_id);1022 ensure!(Self::is_item_owner(sender.clone(), collection_id, item_id) ||1023 Self::is_owner_or_admin_permissions(collection_id, sender.clone()),1024 Error::<T>::NoPermission);10251026 if target_collection.access == AccessMode::WhiteList {1027 Self::check_white_list(collection_id, &sender)?;1028 }10291030 match target_collection.mode1031 {1032 CollectionMode::NFT => Self::burn_nft_item(collection_id, item_id)?,1033 CollectionMode::Fungible(_) => Self::burn_fungible_item(collection_id, item_id)?,1034 CollectionMode::ReFungible(_) => Self::burn_refungible_item(collection_id, item_id, sender.clone())?,1035 _ => ()1036 };10371038 // call event1039 Self::deposit_event(RawEvent::ItemDestroyed(collection_id, item_id));10401041 Ok(())1042 }10431044 /// Change ownership of the token.1045 /// 1046 /// # Permissions1047 /// 1048 /// * Collection Owner1049 /// * Collection Admin1050 /// * Current NFT owner1051 ///1052 /// # Arguments1053 /// 1054 /// * recipient: Address of token recipient.1055 /// 1056 /// * collection_id.1057 /// 1058 /// * item_id: ID of the item1059 /// * Non-Fungible Mode: Required.1060 /// * Fungible Mode: Ignored.1061 /// * Re-Fungible Mode: Required.1062 /// 1063 /// * value: Amount to transfer.1064 /// * Non-Fungible Mode: Ignored1065 /// * Fungible Mode: Must specify transferred amount1066 /// * Re-Fungible Mode: Must specify transferred portion (between 0 and 1)1067 #[weight = T::WeightInfo::transfer()]1068 pub fn transfer(origin, recipient: T::AccountId, collection_id: CollectionId, item_id: TokenId, value: u128) -> DispatchResult {10691070 let sender = ensure_signed(origin)?;1071 let target_collection = <Collection<T>>::get(collection_id);10721073 // Limits check1074 Self::is_correct_transfer(collection_id, &target_collection, &recipient)?;10751076 // Transfer permissions check1077 ensure!(Self::is_item_owner(sender.clone(), collection_id, item_id) ||1078 Self::is_owner_or_admin_permissions(collection_id, sender.clone()),1079 Error::<T>::NoPermission);10801081 if target_collection.access == AccessMode::WhiteList {1082 Self::check_white_list(collection_id, &sender)?;1083 Self::check_white_list(collection_id, &recipient)?;1084 }10851086 match target_collection.mode1087 {1088 CollectionMode::NFT => Self::transfer_nft(collection_id, item_id, sender.clone(), recipient)?,1089 CollectionMode::Fungible(_) => Self::transfer_fungible(collection_id, item_id, value, sender.clone(), recipient)?,1090 CollectionMode::ReFungible(_) => Self::transfer_refungible(collection_id, item_id, value, sender.clone(), recipient)?,1091 _ => ()1092 };10931094 Ok(())1095 }10961097 /// Set, change, or remove approved address to transfer the ownership of the NFT.1098 /// 1099 /// # Permissions1100 /// 1101 /// * Collection Owner1102 /// * Collection Admin1103 /// * Current NFT owner1104 /// 1105 /// # Arguments1106 /// 1107 /// * approved: Address that is approved to transfer this NFT or zero (if needed to remove approval).1108 /// 1109 /// * collection_id.1110 /// 1111 /// * item_id: ID of the item.1112 #[weight = T::WeightInfo::approve()]1113 pub fn approve(origin, approved: T::AccountId, collection_id: CollectionId, item_id: TokenId) -> DispatchResult {11141115 let sender = ensure_signed(origin)?;11161117 // Transfer permissions check1118 let target_collection = <Collection<T>>::get(collection_id);1119 ensure!(Self::is_item_owner(sender.clone(), collection_id, item_id) ||1120 Self::is_owner_or_admin_permissions(collection_id, sender.clone()),1121 Error::<T>::NoPermission);11221123 if target_collection.access == AccessMode::WhiteList {1124 Self::check_white_list(collection_id, &sender)?;1125 Self::check_white_list(collection_id, &approved)?;1126 }11271128 // amount param stub1129 let amount = 100000000;11301131 let list_exists = <ApprovedList<T>>::contains_key(collection_id, (item_id, sender.clone()));1132 if list_exists {11331134 let mut list = <ApprovedList<T>>::get(collection_id, (item_id, sender.clone()));1135 let item_contains = list.iter().any(|i| i.approved == approved);11361137 if !item_contains {1138 list.push(ApprovePermissions { approved: approved.clone(), amount: amount });1139 <ApprovedList<T>>::insert(collection_id, (item_id, sender.clone()), list);1140 }1141 } else {11421143 let mut list = Vec::new();1144 list.push(ApprovePermissions { approved: approved.clone(), amount: amount });1145 <ApprovedList<T>>::insert(collection_id, (item_id, sender.clone()), list);1146 }11471148 Ok(())1149 }1150 1151 /// Change ownership of a NFT on behalf of the owner. See Approve method for additional information. After this method executes, the approval is removed so that the approved address will not be able to transfer this NFT again from this owner.1152 /// 1153 /// # Permissions1154 /// * Collection Owner1155 /// * Collection Admin1156 /// * Current NFT owner1157 /// * Address approved by current NFT owner1158 /// 1159 /// # Arguments1160 /// 1161 /// * from: Address that owns token.1162 /// 1163 /// * recipient: Address of token recipient.1164 /// 1165 /// * collection_id.1166 /// 1167 /// * item_id: ID of the item.1168 /// 1169 /// * value: Amount to transfer.1170 #[weight = T::WeightInfo::transfer_from()]1171 pub fn transfer_from(origin, from: T::AccountId, recipient: T::AccountId, collection_id: CollectionId, item_id: TokenId, value: u128 ) -> DispatchResult {11721173 let sender = ensure_signed(origin)?;1174 let mut appoved_transfer = false;11751176 // Check approve1177 if <ApprovedList<T>>::contains_key(collection_id, (item_id, from.clone())) {1178 let list_itm = <ApprovedList<T>>::get(collection_id, (item_id, from.clone()));1179 let opt_item = list_itm.iter().find(|i| i.approved == sender.clone());1180 if opt_item.is_some()1181 {1182 appoved_transfer = true;1183 ensure!(opt_item.unwrap().amount >= value, Error::<T>::TokenValueNotEnough);1184 }1185 }11861187 let target_collection = <Collection<T>>::get(collection_id);11881189 // Limits check1190 Self::is_correct_transfer(collection_id, &target_collection, &recipient)?;11911192 // Transfer permissions check 1193 ensure!(appoved_transfer || Self::is_owner_or_admin_permissions(collection_id, sender.clone()),1194 Error::<T>::NoPermission);11951196 if target_collection.access == AccessMode::WhiteList {1197 Self::check_white_list(collection_id, &sender)?;1198 Self::check_white_list(collection_id, &recipient)?;1199 }12001201 // remove approve1202 let approve_list: Vec<ApprovePermissions<T::AccountId>> = <ApprovedList<T>>::get(collection_id, (item_id, from.clone()))1203 .into_iter().filter(|i| i.approved != sender.clone()).collect();1204 <ApprovedList<T>>::insert(collection_id, (item_id, from.clone()), approve_list);120512061207 match target_collection.mode1208 {1209 CollectionMode::NFT => Self::transfer_nft(collection_id, item_id, from, recipient)?,1210 CollectionMode::Fungible(_) => Self::transfer_fungible(collection_id, item_id, value, from.clone(), recipient)?,1211 CollectionMode::ReFungible(_) => Self::transfer_refungible(collection_id, item_id, value, from.clone(), recipient)?,1212 _ => ()1213 };12141215 Ok(())1216 }12171218 #[weight = 0]1219 pub fn safe_transfer_from(origin, collection_id: CollectionId, item_id: TokenId, new_owner: T::AccountId) -> DispatchResult {12201221 // let no_perm_mes = "You do not have permissions to modify this collection";1222 // ensure!(<ApprovedList<T>>::contains_key((collection_id, item_id)), no_perm_mes);1223 // let list_itm = <ApprovedList<T>>::get((collection_id, item_id));1224 // ensure!(list_itm.contains(&new_owner.clone()), no_perm_mes);12251226 // // on_nft_received call12271228 // Self::transfer(origin, collection_id, item_id, new_owner)?;12291230 Ok(())1231 }12321233 /// Set off-chain data schema.1234 /// 1235 /// # Permissions1236 /// 1237 /// * Collection Owner1238 /// * Collection Admin1239 /// 1240 /// # Arguments1241 /// 1242 /// * collection_id.1243 /// 1244 /// * schema: String representing the offchain data schema.1245 #[weight = T::WeightInfo::set_variable_meta_data()]1246 pub fn set_variable_meta_data (1247 origin,1248 collection_id: CollectionId,1249 item_id: TokenId,1250 data: Vec<u8>1251 ) -> DispatchResult {1252 let sender = ensure_signed(origin)?;1253 1254 Self::collection_exists(collection_id)?;1255 1256 ensure!(ChainLimit::get().custom_data_limit >= data.len() as u32, Error::<T>::TokenVariableDataLimitExceeded);12571258 // Modify permissions check1259 let target_collection = <Collection<T>>::get(collection_id);1260 ensure!(Self::is_item_owner(sender.clone(), collection_id, item_id) ||1261 Self::is_owner_or_admin_permissions(collection_id, sender.clone()),1262 Error::<T>::NoPermission);12631264 Self::item_exists(collection_id, item_id, &target_collection.mode)?;12651266 match target_collection.mode1267 {1268 CollectionMode::NFT => Self::set_nft_variable_data(collection_id, item_id, data)?,1269 CollectionMode::ReFungible(_) => Self::set_re_fungible_variable_data(collection_id, item_id, data)?,1270 CollectionMode::Fungible(_) => fail!(Error::<T>::CantStoreMetadataInFungibleTokens),1271 _ => fail!(Error::<T>::UnexpectedCollectionType)1272 };12731274 Ok(())1275 }1276 1277 /// Set schema standard1278 /// ImageURL1279 /// Unique1280 /// 1281 /// # Permissions1282 /// 1283 /// * Collection Owner1284 /// * Collection Admin1285 /// 1286 /// # Arguments1287 /// 1288 /// * collection_id.1289 /// 1290 /// * schema: SchemaVersion: enum1291 #[weight = 0]1292 pub fn set_schema_version(1293 origin,1294 collection_id: CollectionId,1295 version: SchemaVersion1296 ) -> DispatchResult {1297 let sender = ensure_signed(origin)?;1298 Self::check_owner_or_admin_permissions(collection_id, sender.clone())?;1299 let mut target_collection = <Collection<T>>::get(collection_id);1300 target_collection.schema_version = version;1301 <Collection<T>>::insert(collection_id, target_collection);13021303 Ok(())1304 }13051306 /// Set off-chain data schema.1307 /// 1308 /// # Permissions1309 /// 1310 /// * Collection Owner1311 /// * Collection Admin1312 /// 1313 /// # Arguments1314 /// 1315 /// * collection_id.1316 /// 1317 /// * schema: String representing the offchain data schema.1318 #[weight = T::WeightInfo::set_offchain_schema()]1319 pub fn set_offchain_schema(1320 origin,1321 collection_id: CollectionId,1322 schema: Vec<u8>1323 ) -> DispatchResult {1324 let sender = ensure_signed(origin)?;1325 Self::check_owner_or_admin_permissions(collection_id, sender.clone())?;13261327 let mut target_collection = <Collection<T>>::get(collection_id);1328 target_collection.offchain_schema = schema;1329 <Collection<T>>::insert(collection_id, target_collection);13301331 Ok(())1332 }13331334 /// Set const on-chain data schema.1335 /// 1336 /// # Permissions1337 /// 1338 /// * Collection Owner1339 /// * Collection Admin1340 /// 1341 /// # Arguments1342 /// 1343 /// * collection_id.1344 /// 1345 /// * schema: String representing the const on-chain data schema.1346 #[weight = T::WeightInfo::set_const_on_chain_schema()]1347 pub fn set_const_on_chain_schema (1348 origin,1349 collection_id: CollectionId,1350 schema: Vec<u8>1351 ) -> DispatchResult {1352 let sender = ensure_signed(origin)?;1353 Self::check_owner_or_admin_permissions(collection_id, sender.clone())?;13541355 let mut target_collection = <Collection<T>>::get(collection_id);1356 target_collection.const_on_chain_schema = schema;1357 <Collection<T>>::insert(collection_id, target_collection);13581359 Ok(())1360 }13611362 /// Set variable on-chain data schema.1363 /// 1364 /// # Permissions1365 /// 1366 /// * Collection Owner1367 /// * Collection Admin1368 /// 1369 /// # Arguments1370 /// 1371 /// * collection_id.1372 /// 1373 /// * schema: String representing the variable on-chain data schema.1374 #[weight = T::WeightInfo::set_const_on_chain_schema()]1375 pub fn set_variable_on_chain_schema (1376 origin,1377 collection_id: CollectionId,1378 schema: Vec<u8>1379 ) -> DispatchResult {1380 let sender = ensure_signed(origin)?;1381 Self::check_owner_or_admin_permissions(collection_id, sender.clone())?;13821383 let mut target_collection = <Collection<T>>::get(collection_id);1384 target_collection.variable_on_chain_schema = schema;1385 <Collection<T>>::insert(collection_id, target_collection);13861387 Ok(())1388 }13891390 // Sudo permissions function1391 #[weight = 0]1392 pub fn set_chain_limits(1393 origin,1394 limits: ChainLimits1395 ) -> DispatchResult {1396 ensure_root(origin)?;1397 <ChainLimit>::put(limits);1398 Ok(())1399 }14001401 /// Enable smart contract self-sponsoring.1402 /// 1403 /// # Permissions1404 /// 1405 /// * Contract Owner1406 /// 1407 /// # Arguments1408 /// 1409 /// * contract address1410 /// * enable flag1411 /// 1412 #[weight = T::WeightInfo::enable_contract_sponsoring()]1413 pub fn enable_contract_sponsoring(1414 origin,1415 contract_address: T::AccountId,1416 enable: bool1417 ) -> DispatchResult {14181419 let sender = ensure_signed(origin)?;14201421 #[cfg(feature = "runtime-benchmarks")]1422 <ContractOwner<T>>::insert(contract_address.clone(), sender.clone());14231424 let mut is_owner = false;1425 if <ContractOwner<T>>::contains_key(contract_address.clone()) {1426 let owner = <ContractOwner<T>>::get(&contract_address);1427 is_owner = sender == owner;1428 }1429 ensure!(is_owner, Error::<T>::NoPermission);14301431 <ContractSelfSponsoring<T>>::insert(contract_address, enable);1432 Ok(())1433 }14341435 /// Set the rate limit for contract sponsoring to specified number of blocks.1436 /// 1437 /// If not set (has the default value of 0 blocks), the sponsoring will be disabled. 1438 /// If set to the number B (for blocks), the transactions will be sponsored with a rate 1439 /// limit of B, i.e. fees for every transaction sent to this smart contract will be paid 1440 /// from contract endowment if there are at least B blocks between such transactions. 1441 /// Nonetheless, if transactions are sent more frequently, the fees are paid by the sender.1442 /// 1443 /// # Permissions1444 /// 1445 /// * Contract Owner1446 /// 1447 /// # Arguments1448 /// 1449 /// -`contract_address`: Address of the contract to sponsor1450 /// -`rate_limit`: Number of blocks to wait until the next sponsored transaction is allowed1451 /// 1452 #[weight = 0]1453 pub fn set_contract_sponsoring_rate_limit(1454 origin,1455 contract_address: T::AccountId,1456 rate_limit: T::BlockNumber1457 ) -> DispatchResult {1458 let sender = ensure_signed(origin)?;1459 let mut is_owner = false;1460 if <ContractOwner<T>>::contains_key(contract_address.clone()) {1461 let owner = <ContractOwner<T>>::get(&contract_address);1462 is_owner = sender == owner;1463 }1464 ensure!(is_owner, Error::<T>::NoPermission);14651466 <ContractSponsoringRateLimit<T>>::insert(contract_address, rate_limit);1467 Ok(())1468 }14691470 #[weight = 0]1471 pub fn set_collection_limits(1472 origin,1473 collection_id: u32,1474 limits: CollectionLimits,1475 ) -> DispatchResult {1476 let sender = ensure_signed(origin)?;1477 Self::check_owner_permissions(collection_id, sender.clone())?;1478 let mut target_collection = <Collection<T>>::get(collection_id);1479 let chain_limits = ChainLimit::get();1480 let climits = target_collection.limits;14811482 // collection bounds1483 ensure!(limits.sponsor_transfer_timeout <= MAX_SPONSOR_TIMEOUT &&1484 limits.account_token_ownership_limit <= MAX_TOKEN_OWNERSHIP, 1485 Error::<T>::CollectionLimitBoundsExceeded);14861487 // token_limit check prev1488 ensure!(climits.token_limit > limits.token_limit && 1489 limits.token_limit <= chain_limits.account_token_ownership_limit, 1490 Error::<T>::AccountTokenLimitExceeded);14911492 target_collection.limits = limits;1493 <Collection<T>>::insert(collection_id, target_collection);14941495 Ok(())1496 } 1497 }1498}14991500impl<T: Trait> Module<T> {15011502 fn is_correct_transfer(collection_id: CollectionId, collection: &CollectionType<T::AccountId>, recipient: &T::AccountId) -> DispatchResult {15031504 // check token limit and account token limit1505 let account_items: u32 = <AddressTokens<T>>::get(collection_id, recipient).len() as u32;1506 ensure!(collection.limits.account_token_ownership_limit > account_items, Error::<T>::AccountTokenLimitExceeded);1507 1508 Ok(())1509 }15101511 fn can_create_items_in_collection(collection_id: CollectionId, collection: &CollectionType<T::AccountId>, sender: &T::AccountId, owner: &T::AccountId) -> DispatchResult {15121513 // check token limit and account token limit1514 let total_items: u32 = ItemListIndex::get(collection_id);1515 let account_items: u32 = <AddressTokens<T>>::get(collection_id, owner).len() as u32;1516 ensure!(collection.limits.token_limit > total_items, Error::<T>::CollectionTokenLimitExceeded);1517 ensure!(collection.limits.account_token_ownership_limit > account_items, Error::<T>::AccountTokenLimitExceeded);15181519 if !Self::is_owner_or_admin_permissions(collection_id, sender.clone()) {1520 ensure!(collection.mint_mode == true, Error::<T>::PublicMintingNotAllowed);1521 Self::check_white_list(collection_id, owner)?;1522 Self::check_white_list(collection_id, sender)?;1523 }15241525 Ok(())1526 }15271528 fn validate_create_item_args(target_collection: &CollectionType<T::AccountId>, data: &CreateItemData) -> DispatchResult {1529 match target_collection.mode1530 {1531 CollectionMode::NFT => {1532 if let CreateItemData::NFT(data) = data {1533 // check sizes1534 ensure!(ChainLimit::get().custom_data_limit >= data.const_data.len() as u32, Error::<T>::TokenConstDataLimitExceeded);1535 ensure!(ChainLimit::get().custom_data_limit >= data.variable_data.len() as u32, Error::<T>::TokenVariableDataLimitExceeded);1536 } else {1537 fail!(Error::<T>::NotNftDataUsedToMintNftCollectionToken);1538 }1539 },1540 CollectionMode::Fungible(_) => {1541 if let CreateItemData::Fungible(_) = data {1542 } else {1543 fail!(Error::<T>::NotFungibleDataUsedToMintFungibleCollectionToken);1544 }1545 },1546 CollectionMode::ReFungible(_) => {1547 if let CreateItemData::ReFungible(data) = data {15481549 // check sizes1550 ensure!(ChainLimit::get().custom_data_limit >= data.const_data.len() as u32, Error::<T>::TokenConstDataLimitExceeded);1551 ensure!(ChainLimit::get().custom_data_limit >= data.variable_data.len() as u32, Error::<T>::TokenVariableDataLimitExceeded);1552 } else {1553 fail!(Error::<T>::NotReFungibleDataUsedToMintReFungibleCollectionToken);1554 }1555 },1556 _ => { fail!(Error::<T>::UnexpectedCollectionType); }1557 };15581559 Ok(())1560 }15611562 fn create_item_no_validation(collection_id: CollectionId, collection: &CollectionType<T::AccountId>, owner: T::AccountId, data: CreateItemData) -> DispatchResult {1563 match data1564 {1565 CreateItemData::NFT(data) => {1566 let item = NftItemType {1567 collection: collection_id,1568 owner,1569 const_data: data.const_data,1570 variable_data: data.variable_data1571 };15721573 Self::add_nft_item(item)?;1574 },1575 CreateItemData::Fungible(_) => {1576 let item = FungibleItemType {1577 collection: collection_id,1578 owner,1579 value: (10 as u128).pow(collection.decimal_points as u32)1580 };15811582 Self::add_fungible_item(item)?;1583 },1584 CreateItemData::ReFungible(data) => {1585 let mut owner_list = Vec::new();1586 let value = (10 as u128).pow(collection.decimal_points as u32);1587 owner_list.push(Ownership {owner: owner.clone(), fraction: value});15881589 let item = ReFungibleItemType {1590 collection: collection_id,1591 owner: owner_list,1592 const_data: data.const_data,1593 variable_data: data.variable_data1594 };15951596 Self::add_refungible_item(item)?;1597 }1598 };15991600 // call event1601 Self::deposit_event(RawEvent::ItemCreated(collection_id, <ItemListIndex>::get(collection_id)));16021603 Ok(())1604 }16051606 fn add_fungible_item(item: FungibleItemType<T::AccountId>) -> DispatchResult {1607 let current_index = <ItemListIndex>::get(item.collection)1608 .checked_add(1)1609 .ok_or(Error::<T>::NumOverflow)?;1610 let itemcopy = item.clone();1611 let owner = item.owner.clone();16121613 Self::add_token_index(item.collection, current_index, owner.clone())?;16141615 <ItemListIndex>::insert(item.collection, current_index);1616 <FungibleItemList<T>>::insert(item.collection, current_index, itemcopy);16171618 // Add current block1619 let v: Vec<BasketItem<T::AccountId, T::BlockNumber>> = Vec::new();1620 <FungibleTransferBasket<T>>::insert(item.collection, current_index, v);1621 1622 // Update balance1623 let new_balance = <Balance<T>>::get(item.collection, owner.clone())1624 .checked_add(item.value)1625 .ok_or(Error::<T>::NumOverflow)?;1626 <Balance<T>>::insert(item.collection, owner.clone(), new_balance);16271628 Ok(())1629 }16301631 fn add_refungible_item(item: ReFungibleItemType<T::AccountId>) -> DispatchResult {1632 let current_index = <ItemListIndex>::get(item.collection)1633 .checked_add(1)1634 .ok_or(Error::<T>::NumOverflow)?;1635 let itemcopy = item.clone();16361637 let value = item.owner.first().unwrap().fraction;1638 let owner = item.owner.first().unwrap().owner.clone();16391640 Self::add_token_index(item.collection, current_index, owner.clone())?;16411642 <ItemListIndex>::insert(item.collection, current_index);1643 <ReFungibleItemList<T>>::insert(item.collection, current_index, itemcopy);16441645 // Add current block1646 let block_number: T::BlockNumber = 0.into();1647 <ReFungibleTransferBasket<T>>::insert(item.collection, current_index, block_number);16481649 // Update balance1650 let new_balance = <Balance<T>>::get(item.collection, owner.clone())1651 .checked_add(value)1652 .ok_or(Error::<T>::NumOverflow)?;1653 <Balance<T>>::insert(item.collection, owner.clone(), new_balance);16541655 Ok(())1656 }16571658 fn add_nft_item(item: NftItemType<T::AccountId>) -> DispatchResult {1659 let current_index = <ItemListIndex>::get(item.collection)1660 .checked_add(1)1661 .ok_or(Error::<T>::NumOverflow)?;16621663 let item_owner = item.owner.clone();1664 let collection_id = item.collection.clone();1665 Self::add_token_index(collection_id, current_index, item.owner.clone())?;16661667 <ItemListIndex>::insert(collection_id, current_index);1668 <NftItemList<T>>::insert(collection_id, current_index, item);16691670 // Add current block1671 let block_number: T::BlockNumber = 0.into();1672 <NftTransferBasket<T>>::insert(collection_id, current_index, block_number);16731674 // Update balance1675 let new_balance = <Balance<T>>::get(collection_id, item_owner.clone())1676 .checked_add(1)1677 .ok_or(Error::<T>::NumOverflow)?;1678 <Balance<T>>::insert(collection_id, item_owner.clone(), new_balance);16791680 Ok(())1681 }16821683 fn burn_refungible_item(1684 collection_id: CollectionId,1685 item_id: TokenId,1686 owner: T::AccountId,1687 ) -> DispatchResult {1688 ensure!(1689 <ReFungibleItemList<T>>::contains_key(collection_id, item_id),1690 Error::<T>::TokenNotFound1691 );1692 let collection = <ReFungibleItemList<T>>::get(collection_id, item_id);1693 let item = collection1694 .owner1695 .iter()1696 .filter(|&i| i.owner == owner)1697 .next()1698 .unwrap();1699 Self::remove_token_index(collection_id, item_id, owner.clone())?;17001701 // remove approve list1702 <ApprovedList<T>>::remove(collection_id, (item_id, owner.clone()));17031704 // update balance1705 let new_balance = <Balance<T>>::get(collection_id, item.owner.clone())1706 .checked_sub(item.fraction)1707 .ok_or(Error::<T>::NumOverflow)?;1708 <Balance<T>>::insert(collection_id, item.owner.clone(), new_balance);17091710 <ReFungibleItemList<T>>::remove(collection_id, item_id);17111712 Ok(())1713 }17141715 fn burn_nft_item(collection_id: CollectionId, item_id: TokenId) -> DispatchResult {1716 ensure!(1717 <NftItemList<T>>::contains_key(collection_id, item_id),1718 Error::<T>::TokenNotFound1719 );1720 let item = <NftItemList<T>>::get(collection_id, item_id);1721 Self::remove_token_index(collection_id, item_id, item.owner.clone())?;17221723 // remove approve list1724 <ApprovedList<T>>::remove(collection_id, (item_id, item.owner.clone()));17251726 // update balance1727 let new_balance = <Balance<T>>::get(collection_id, item.owner.clone())1728 .checked_sub(1)1729 .ok_or(Error::<T>::NumOverflow)?;1730 <Balance<T>>::insert(collection_id, item.owner.clone(), new_balance);1731 <NftItemList<T>>::remove(collection_id, item_id);17321733 Ok(())1734 }17351736 fn burn_fungible_item(collection_id: CollectionId, item_id: TokenId) -> DispatchResult {1737 ensure!(1738 <FungibleItemList<T>>::contains_key(collection_id, item_id),1739 Error::<T>::TokenNotFound1740 );1741 let item = <FungibleItemList<T>>::get(collection_id, item_id);1742 Self::remove_token_index(collection_id, item_id, item.owner.clone())?;17431744 // remove approve list1745 <ApprovedList<T>>::remove(collection_id, (item_id, item.owner.clone()));17461747 // update balance1748 let new_balance = <Balance<T>>::get(collection_id, item.owner.clone())1749 .checked_sub(item.value)1750 .ok_or(Error::<T>::NumOverflow)?;1751 <Balance<T>>::insert(collection_id, item.owner.clone(), new_balance);17521753 <FungibleItemList<T>>::remove(collection_id, item_id);17541755 Ok(())1756 }17571758 fn collection_exists(collection_id: CollectionId) -> DispatchResult {1759 ensure!(1760 <Collection<T>>::contains_key(collection_id),1761 Error::<T>::CollectionNotFound1762 );1763 Ok(())1764 }17651766 fn check_owner_permissions(collection_id: CollectionId, subject: T::AccountId) -> DispatchResult {1767 Self::collection_exists(collection_id)?;17681769 let target_collection = <Collection<T>>::get(collection_id);1770 ensure!(1771 subject == target_collection.owner,1772 Error::<T>::NoPermission1773 );17741775 Ok(())1776 }17771778 fn is_owner_or_admin_permissions(collection_id: CollectionId, subject: T::AccountId) -> bool {1779 let target_collection = <Collection<T>>::get(collection_id);1780 let mut result: bool = subject == target_collection.owner;1781 let exists = <AdminList<T>>::contains_key(collection_id);17821783 if !result & exists {1784 if <AdminList<T>>::get(collection_id).contains(&subject) {1785 result = true1786 }1787 }17881789 result1790 }17911792 fn check_owner_or_admin_permissions(1793 collection_id: CollectionId,1794 subject: T::AccountId,1795 ) -> DispatchResult {1796 Self::collection_exists(collection_id)?;1797 let result = Self::is_owner_or_admin_permissions(collection_id, subject.clone());17981799 ensure!(1800 result,1801 Error::<T>::NoPermission1802 );1803 Ok(())1804 }18051806 fn is_item_owner(subject: T::AccountId, collection_id: CollectionId, item_id: TokenId) -> bool {1807 let target_collection = <Collection<T>>::get(collection_id);18081809 match target_collection.mode {1810 CollectionMode::NFT => {1811 <NftItemList<T>>::get(collection_id, item_id).owner == subject1812 }1813 CollectionMode::Fungible(_) => {1814 <FungibleItemList<T>>::get(collection_id, item_id).owner == subject1815 }1816 CollectionMode::ReFungible(_) => {1817 <ReFungibleItemList<T>>::get(collection_id, item_id)1818 .owner1819 .iter()1820 .any(|i| i.owner == subject)1821 }1822 CollectionMode::Invalid => false,1823 }1824 }18251826 fn check_white_list(collection_id: CollectionId, address: &T::AccountId) -> DispatchResult {1827 let mes = Error::<T>::AddresNotInWhiteList;1828 ensure!(<WhiteList<T>>::contains_key(collection_id), mes);1829 let wl = <WhiteList<T>>::get(collection_id);1830 ensure!(wl.contains(address), mes);18311832 Ok(())1833 }18341835 fn transfer_fungible(1836 collection_id: CollectionId,1837 item_id: TokenId,1838 value: u128,1839 owner: T::AccountId,1840 new_owner: T::AccountId,1841 ) -> DispatchResult {1842 ensure!(1843 <FungibleItemList<T>>::contains_key(collection_id, item_id),1844 Error::<T>::TokenNotFound1845 );18461847 let full_item = <FungibleItemList<T>>::get(collection_id, item_id);1848 let amount = full_item.value;18491850 ensure!(amount >= value, Error::<T>::TokenValueTooLow);18511852 // update balance1853 let balance_old_owner = <Balance<T>>::get(collection_id, owner.clone())1854 .checked_sub(value)1855 .ok_or(Error::<T>::NumOverflow)?;1856 <Balance<T>>::insert(collection_id, owner.clone(), balance_old_owner);18571858 let mut new_owner_account_id = 0;1859 let new_owner_items = <AddressTokens<T>>::get(collection_id, new_owner.clone());1860 if new_owner_items.len() > 0 {1861 new_owner_account_id = new_owner_items[0];1862 }18631864 // transfer1865 if amount == value && new_owner_account_id == 0 {1866 // change owner1867 // new owner do not have account1868 let mut new_full_item = full_item.clone();1869 new_full_item.owner = new_owner.clone();1870 <FungibleItemList<T>>::insert(collection_id, item_id, new_full_item);18711872 // update balance1873 let balance_new_owner = <Balance<T>>::get(collection_id, new_owner.clone())1874 .checked_add(value)1875 .ok_or(Error::<T>::NumOverflow)?;1876 <Balance<T>>::insert(collection_id, new_owner.clone(), balance_new_owner);18771878 // update index collection1879 Self::move_token_index(collection_id, item_id, owner.clone(), new_owner.clone())?;1880 } else {1881 let mut new_full_item = full_item.clone();1882 new_full_item.value -= value;18831884 // separate amount1885 if new_owner_account_id > 0 {1886 // new owner has account1887 let mut item = <FungibleItemList<T>>::get(collection_id, new_owner_account_id);1888 item.value += value;18891890 // update balance1891 let balance_new_owner = <Balance<T>>::get(collection_id, new_owner.clone())1892 .checked_add(value)1893 .ok_or(Error::<T>::NumOverflow)?;1894 <Balance<T>>::insert(collection_id, new_owner.clone(), balance_new_owner);18951896 <FungibleItemList<T>>::insert(collection_id, new_owner_account_id, item);1897 } else {1898 // new owner do not have account1899 let item = FungibleItemType {1900 collection: collection_id,1901 owner: new_owner.clone(),1902 value1903 };19041905 Self::add_fungible_item(item)?;1906 }19071908 if amount == value {1909 Self::remove_token_index(collection_id, item_id, full_item.owner.clone())?;19101911 // remove approve list1912 <ApprovedList<T>>::remove(collection_id, (item_id, full_item.owner.clone()));1913 <FungibleItemList<T>>::remove(collection_id, item_id);1914 }19151916 <FungibleItemList<T>>::insert(collection_id, item_id, new_full_item);1917 }19181919 Ok(())1920 }19211922 fn transfer_refungible(1923 collection_id: CollectionId,1924 item_id: TokenId,1925 value: u128,1926 owner: T::AccountId,1927 new_owner: T::AccountId,1928 ) -> DispatchResult {1929 ensure!(1930 <ReFungibleItemList<T>>::contains_key(collection_id, item_id),1931 Error::<T>::TokenNotFound1932 );19331934 let full_item = <ReFungibleItemList<T>>::get(collection_id, item_id);1935 let item = full_item1936 .owner1937 .iter()1938 .filter(|i| i.owner == owner)1939 .next()1940 .ok_or(Error::<T>::NumOverflow)?;1941 let amount = item.fraction;19421943 ensure!(amount >= value, Error::<T>::TokenValueTooLow);19441945 // update balance1946 let balance_old_owner = <Balance<T>>::get(collection_id, item.owner.clone())1947 .checked_sub(value)1948 .ok_or(Error::<T>::NumOverflow)?;1949 <Balance<T>>::insert(collection_id, item.owner.clone(), balance_old_owner);19501951 let balance_new_owner = <Balance<T>>::get(collection_id, new_owner.clone())1952 .checked_add(value)1953 .ok_or(Error::<T>::NumOverflow)?;1954 <Balance<T>>::insert(collection_id, new_owner.clone(), balance_new_owner);19551956 let old_owner = item.owner.clone();1957 let new_owner_has_account = full_item.owner.iter().any(|i| i.owner == new_owner);19581959 // transfer1960 if amount == value && !new_owner_has_account {1961 // change owner1962 // new owner do not have account1963 let mut new_full_item = full_item.clone();1964 new_full_item1965 .owner1966 .iter_mut()1967 .find(|i| i.owner == owner)1968 .unwrap()1969 .owner = new_owner.clone();1970 <ReFungibleItemList<T>>::insert(collection_id, item_id, new_full_item);19711972 // update index collection1973 Self::move_token_index(collection_id, item_id, old_owner.clone(), new_owner.clone())?;1974 } else {1975 let mut new_full_item = full_item.clone();1976 new_full_item1977 .owner1978 .iter_mut()1979 .find(|i| i.owner == owner)1980 .unwrap()1981 .fraction -= value;19821983 // separate amount1984 if new_owner_has_account {1985 // new owner has account1986 new_full_item1987 .owner1988 .iter_mut()1989 .find(|i| i.owner == new_owner)1990 .unwrap()1991 .fraction += value;1992 } else {1993 // new owner do not have account1994 new_full_item.owner.push(Ownership {1995 owner: new_owner.clone(),1996 fraction: value,1997 });1998 Self::add_token_index(collection_id, item_id, new_owner.clone())?;1999 }20002001 <ReFungibleItemList<T>>::insert(collection_id, item_id, new_full_item);2002 }20032004 Ok(())2005 }20062007 fn transfer_nft(2008 collection_id: CollectionId,2009 item_id: TokenId,2010 sender: T::AccountId,2011 new_owner: T::AccountId,2012 ) -> DispatchResult {2013 ensure!(2014 <NftItemList<T>>::contains_key(collection_id, item_id),2015 Error::<T>::TokenNotFound2016 );20172018 let mut item = <NftItemList<T>>::get(collection_id, item_id);20192020 ensure!(2021 sender == item.owner,2022 Error::<T>::MustBeTokenOwner2023 );20242025 // update balance2026 let balance_old_owner = <Balance<T>>::get(collection_id, item.owner.clone())2027 .checked_sub(1)2028 .ok_or(Error::<T>::NumOverflow)?;2029 <Balance<T>>::insert(collection_id, item.owner.clone(), balance_old_owner);20302031 let balance_new_owner = <Balance<T>>::get(collection_id, new_owner.clone())2032 .checked_add(1)2033 .ok_or(Error::<T>::NumOverflow)?;2034 <Balance<T>>::insert(collection_id, new_owner.clone(), balance_new_owner);20352036 // change owner2037 let old_owner = item.owner.clone();2038 item.owner = new_owner.clone();2039 <NftItemList<T>>::insert(collection_id, item_id, item);20402041 // update index collection2042 Self::move_token_index(collection_id, item_id, old_owner.clone(), new_owner.clone())?;20432044 // reset approved list2045 <ApprovedList<T>>::remove(collection_id, (item_id, old_owner));2046 Ok(())2047 }2048 2049 fn item_exists(2050 collection_id: CollectionId,2051 item_id: TokenId,2052 mode: &CollectionMode2053 ) -> DispatchResult {2054 match mode {2055 CollectionMode::NFT => ensure!(<NftItemList<T>>::contains_key(collection_id, item_id), Error::<T>::TokenNotFound),2056 CollectionMode::ReFungible(_) => ensure!(<ReFungibleItemList<T>>::contains_key(collection_id, item_id), Error::<T>::TokenNotFound),2057 CollectionMode::Fungible(_) => ensure!(<FungibleItemList<T>>::contains_key(collection_id, item_id), Error::<T>::TokenNotFound),2058 _ => ()2059 };2060 2061 Ok(())2062 }20632064 fn set_re_fungible_variable_data(2065 collection_id: CollectionId,2066 item_id: TokenId,2067 data: Vec<u8>2068 ) -> DispatchResult {2069 let mut item = <ReFungibleItemList<T>>::get(collection_id, item_id);20702071 item.variable_data = data;20722073 <ReFungibleItemList<T>>::insert(collection_id, item_id, item);20742075 Ok(())2076 }20772078 fn set_nft_variable_data(2079 collection_id: CollectionId,2080 item_id: TokenId,2081 data: Vec<u8>2082 ) -> DispatchResult {2083 let mut item = <NftItemList<T>>::get(collection_id, item_id);2084 2085 item.variable_data = data;20862087 <NftItemList<T>>::insert(collection_id, item_id, item);2088 2089 Ok(())2090 }20912092 fn init_collection(item: &CollectionType<T::AccountId>) {2093 // check params2094 assert!(2095 item.decimal_points <= MAX_DECIMAL_POINTS,2096 "decimal_points parameter must be lower than MAX_DECIMAL_POINTS"2097 );2098 assert!(2099 item.name.len() <= 64,2100 "Collection name can not be longer than 63 char"2101 );2102 assert!(2103 item.name.len() <= 256,2104 "Collection description can not be longer than 255 char"2105 );2106 assert!(2107 item.token_prefix.len() <= 16,2108 "Token prefix can not be longer than 15 char"2109 );21102111 // Generate next collection ID2112 let next_id = CreatedCollectionCount::get()2113 .checked_add(1)2114 .unwrap();21152116 CreatedCollectionCount::put(next_id);2117 }21182119 fn init_nft_token(item: &NftItemType<T::AccountId>) {2120 let current_index = <ItemListIndex>::get(item.collection)2121 .checked_add(1)2122 .unwrap();21232124 let item_owner = item.owner.clone();2125 let collection_id = item.collection.clone();2126 Self::add_token_index(collection_id, current_index, item.owner.clone()).unwrap();21272128 <ItemListIndex>::insert(collection_id, current_index);21292130 // Update balance2131 let new_balance = <Balance<T>>::get(collection_id, item_owner.clone())2132 .checked_add(1)2133 .unwrap();2134 <Balance<T>>::insert(collection_id, item_owner.clone(), new_balance);2135 }21362137 fn init_fungible_token(item: &FungibleItemType<T::AccountId>) {2138 let current_index = <ItemListIndex>::get(item.collection)2139 .checked_add(1)2140 .unwrap();2141 let owner = item.owner.clone();21422143 Self::add_token_index(item.collection, current_index, owner.clone()).unwrap();21442145 <ItemListIndex>::insert(item.collection, current_index);21462147 // Update balance2148 let new_balance = <Balance<T>>::get(item.collection, owner.clone())2149 .checked_add(item.value)2150 .unwrap();2151 <Balance<T>>::insert(item.collection, owner.clone(), new_balance);2152 }21532154 fn init_refungible_token(item: &ReFungibleItemType<T::AccountId>) {2155 let current_index = <ItemListIndex>::get(item.collection)2156 .checked_add(1)2157 .unwrap();21582159 let value = item.owner.first().unwrap().fraction;2160 let owner = item.owner.first().unwrap().owner.clone();21612162 Self::add_token_index(item.collection, current_index, owner.clone()).unwrap();21632164 <ItemListIndex>::insert(item.collection, current_index);21652166 // Update balance2167 let new_balance = <Balance<T>>::get(item.collection, owner.clone())2168 .checked_add(value)2169 .unwrap();2170 <Balance<T>>::insert(item.collection, owner.clone(), new_balance);2171 }21722173 fn add_token_index(collection_id: CollectionId, item_index: TokenId, owner: T::AccountId) -> DispatchResult {21742175 // add to account limit2176 if <AccountItemCount<T>>::contains_key(owner.clone()) {21772178 // bound Owned tokens by a single address2179 let count = <AccountItemCount<T>>::get(owner.clone());2180 ensure!(count < ChainLimit::get().account_token_ownership_limit, Error::<T>::AddressOwnershipLimitExceeded);21812182 <AccountItemCount<T>>::insert(owner.clone(), count2183 .checked_add(1)2184 .ok_or(Error::<T>::NumOverflow)?);2185 }2186 else {2187 <AccountItemCount<T>>::insert(owner.clone(), 1);2188 }21892190 let list_exists = <AddressTokens<T>>::contains_key(collection_id, owner.clone());2191 if list_exists {2192 let mut list = <AddressTokens<T>>::get(collection_id, owner.clone());2193 let item_contains = list.contains(&item_index.clone());21942195 if !item_contains {2196 list.push(item_index.clone());2197 }21982199 <AddressTokens<T>>::insert(collection_id, owner.clone(), list);2200 } else {2201 let mut itm = Vec::new();2202 itm.push(item_index.clone());2203 <AddressTokens<T>>::insert(collection_id, owner, itm);2204 2205 }22062207 Ok(())2208 }22092210 fn remove_token_index(2211 collection_id: CollectionId,2212 item_index: TokenId,2213 owner: T::AccountId,2214 ) -> DispatchResult {22152216 // update counter2217 <AccountItemCount<T>>::insert(owner.clone(), 2218 <AccountItemCount<T>>::get(owner.clone())2219 .checked_sub(1)2220 .ok_or(Error::<T>::NumOverflow)?);222122222223 let list_exists = <AddressTokens<T>>::contains_key(collection_id, owner.clone());2224 if list_exists {2225 let mut list = <AddressTokens<T>>::get(collection_id, owner.clone());2226 let item_contains = list.contains(&item_index.clone());22272228 if item_contains {2229 list.retain(|&item| item != item_index);2230 <AddressTokens<T>>::insert(collection_id, owner, list);2231 }2232 }22332234 Ok(())2235 }22362237 fn move_token_index(2238 collection_id: CollectionId,2239 item_index: TokenId,2240 old_owner: T::AccountId,2241 new_owner: T::AccountId,2242 ) -> DispatchResult {2243 Self::remove_token_index(collection_id, item_index, old_owner)?;2244 Self::add_token_index(collection_id, item_index, new_owner)?;22452246 Ok(())2247 }2248}22492250////////////////////////////////////////////////////////////////////////////////////////////////////2251// Economic models2252// #region22532254/// Fee multiplier.2255pub type Multiplier = FixedU128;22562257type BalanceOf<T> = <<T as transaction_payment::Trait>::Currency as Currency<2258 <T as system::Trait>::AccountId,2259>>::Balance;2260type NegativeImbalanceOf<T> = <<T as transaction_payment::Trait>::Currency as Currency<2261 <T as system::Trait>::AccountId,2262>>::NegativeImbalance;22632264/// Require the transactor pay for themselves and maybe include a tip to gain additional priority2265/// in the queue.2266#[derive(Encode, Decode, Clone, Eq, PartialEq)]2267pub struct ChargeTransactionPayment<T: Trait + Send + Sync>(2268 #[codec(compact)] BalanceOf<T>2269);22702271impl<T: Trait + Send + Sync> sp_std::fmt::Debug2272 for ChargeTransactionPayment<T>2273{2274 #[cfg(feature = "std")]2275 fn fmt(&self, f: &mut sp_std::fmt::Formatter) -> sp_std::fmt::Result {2276 write!(f, "ChargeTransactionPayment<{:?}>", self.0)2277 }2278 #[cfg(not(feature = "std"))]2279 fn fmt(&self, _: &mut sp_std::fmt::Formatter) -> sp_std::fmt::Result {2280 Ok(())2281 }2282}22832284impl<T: Trait + Send + Sync> ChargeTransactionPayment<T>2285where2286 T::Call: Dispatchable<Info = DispatchInfo, PostInfo = PostDispatchInfo> + IsSubType<Call<T>> + IsSubType<pallet_contracts::Call<T>>,2287 BalanceOf<T>: Send + Sync + FixedPointOperand,2288{2289 /// utility constructor. Used only in client/factory code.2290 pub fn from(fee: BalanceOf<T>) -> Self {2291 Self(fee)2292 }22932294 pub fn traditional_fee(2295 len: usize,2296 info: &DispatchInfoOf<T::Call>,2297 tip: BalanceOf<T>,2298 ) -> BalanceOf<T>2299 where2300 T::Call: Dispatchable<Info = DispatchInfo>,2301 {2302 <transaction_payment::Module<T>>::compute_fee(len as u32, info, tip)2303 }23042305 fn get_priority(len: usize, info: &DispatchInfoOf<T::Call>, final_fee: BalanceOf<T>) -> TransactionPriority {2306 let weight_saturation = T::MaximumBlockWeight::get() / info.weight.max(1);2307 let len_saturation = T::MaximumBlockLength::get() as u64 / (len as u64).max(1);2308 let coefficient: BalanceOf<T> = weight_saturation.min(len_saturation).saturated_into::<BalanceOf<T>>();2309 final_fee.saturating_mul(coefficient).saturated_into::<TransactionPriority>()2310 }23112312 fn withdraw_fee(2313 &self,2314 who: &T::AccountId,2315 call: &T::Call,2316 info: &DispatchInfoOf<T::Call>,2317 len: usize,2318 ) -> Result<(BalanceOf<T>, Option<NegativeImbalanceOf<T>>), TransactionValidityError> {2319 let tip = self.0;23202321 // Set fee based on call type. Creating collection costs 1 Unique.2322 // All other transactions have traditional fees so far2323 // let fee = match call.is_sub_type() {2324 // Some(Call::create_collection(..)) => <BalanceOf<T>>::from(1_000_000_000),2325 // _ => Self::traditional_fee(len, info, tip), // Flat fee model, use only for testing purposes2326 // // _ => <BalanceOf<T>>::from(100)2327 // };2328 let fee = Self::traditional_fee(len, info, tip);23292330 // Determine who is paying transaction fee based on ecnomic model2331 // Parse call to extract collection ID and access collection sponsor2332 let mut sponsor: T::AccountId = match IsSubType::<Call<T>>::is_sub_type(call) {2333 Some(Call::create_item(collection_id, _owner, _properties)) => {23342335 // check free create limit2336 if <Collection<T>>::get(collection_id).limits.sponsored_data_size >= (_properties.len() as u32)2337 {2338 <Collection<T>>::get(collection_id).sponsor2339 } else {2340 T::AccountId::default()2341 }2342 }2343 Some(Call::transfer(_new_owner, collection_id, _item_id, _value)) => {2344 2345 let _collection_limits = <Collection<T>>::get(collection_id).limits;2346 let _collection_mode = <Collection<T>>::get(collection_id).mode;23472348 // sponsor timeout2349 let sponsor_transfer = match _collection_mode {2350 CollectionMode::NFT => {23512352 // get correct limit2353 let limit: u32 = if _collection_limits.sponsor_transfer_timeout > 0 {2354 _collection_limits.sponsor_transfer_timeout2355 } else {2356 ChainLimit::get().nft_sponsor_transfer_timeout2357 };23582359 let basket = <NftTransferBasket<T>>::get(collection_id, _item_id);2360 let block_number = <system::Module<T>>::block_number() as T::BlockNumber;2361 let limit_time = basket + limit.into();2362 if block_number >= limit_time {2363 <NftTransferBasket<T>>::insert(collection_id, _item_id, block_number);2364 true2365 }2366 else {2367 false2368 }2369 }2370 CollectionMode::Fungible(_) => {23712372 // get correct limit2373 let limit: u32 = if _collection_limits.sponsor_transfer_timeout > 0 {2374 _collection_limits.sponsor_transfer_timeout2375 } else {2376 ChainLimit::get().fungible_sponsor_transfer_timeout2377 };23782379 let mut basket = <FungibleTransferBasket<T>>::get(collection_id, _item_id);2380 let block_number = <system::Module<T>>::block_number() as T::BlockNumber;2381 if basket.iter().any(|i| i.address == _new_owner.clone())2382 {2383 let item = basket.iter_mut().find(|i| i.address == _new_owner.clone()).unwrap().clone();2384 let limit_time = item.start_block + limit.into();2385 if block_number >= limit_time {2386 basket.retain(|x| x.address == item.address);2387 basket.push(BasketItem { start_block: block_number, address: _new_owner.clone() });2388 <FungibleTransferBasket<T>>::insert(collection_id, _item_id, basket);2389 true2390 }2391 else {2392 false2393 }2394 }2395 else {2396 basket.push(BasketItem { start_block: block_number, address: _new_owner.clone()});2397 true2398 }2399 }2400 CollectionMode::ReFungible(_) => {24012402 // get correct limit2403 let limit: u32 = if _collection_limits.sponsor_transfer_timeout > 0 {2404 _collection_limits.sponsor_transfer_timeout2405 } else {2406 ChainLimit::get().refungible_sponsor_transfer_timeout2407 };24082409 let basket = <ReFungibleTransferBasket<T>>::get(collection_id, _item_id);2410 let block_number = <system::Module<T>>::block_number() as T::BlockNumber;2411 let limit_time = basket + limit.into();2412 if block_number >= limit_time {2413 <ReFungibleTransferBasket<T>>::insert(collection_id, _item_id, block_number);2414 true2415 } else {2416 false2417 }2418 }2419 _ => {2420 false2421 },2422 };24232424 if !sponsor_transfer {2425 T::AccountId::default()2426 } else {2427 <Collection<T>>::get(collection_id).sponsor2428 }2429 }24302431 _ => T::AccountId::default(),2432 };24332434 // Sponsor smart contracts2435 sponsor = match IsSubType::<pallet_contracts::Call<T>>::is_sub_type(call) {24362437 // On instantiation: set the contract owner2438 Some(pallet_contracts::Call::instantiate(_endowment, _gas_limit, code_hash, data)) => {24392440 let new_contract_address = <T as pallet_contracts::Trait>::DetermineContractAddress::contract_address_for(2441 code_hash,2442 &data,2443 &who,2444 );2445 <ContractOwner<T>>::insert(new_contract_address.clone(), who.clone());24462447 T::AccountId::default()2448 },24492450 // When the contract is called, check if the sponsoring is enabled and pay fees from contract endowment if it is2451 Some(pallet_contracts::Call::call(dest, _value, _gas_limit, _data)) => {24522453 let called_contract: T::AccountId = T::Lookup::lookup((*dest).clone()).unwrap_or(T::AccountId::default());24542455 let mut sponsor_transfer = false;2456 if <ContractSponsoringRateLimit<T>>::contains_key(called_contract.clone()) {2457 let last_tx_block = <ContractSponsorBasket<T>>::get((&called_contract, &who));2458 let block_number = <system::Module<T>>::block_number() as T::BlockNumber;2459 let rate_limit = <ContractSponsoringRateLimit<T>>::get(&called_contract);2460 let limit_time = last_tx_block + rate_limit;24612462 if block_number >= limit_time {2463 <ContractSponsorBasket<T>>::insert((called_contract.clone(), who.clone()), block_number);2464 sponsor_transfer = true;2465 }2466 } else {2467 sponsor_transfer = false;2468 }2469 2470 2471 let mut sp = T::AccountId::default();2472 if sponsor_transfer {2473 if <ContractSelfSponsoring<T>>::contains_key(called_contract.clone()) {2474 if <ContractSelfSponsoring<T>>::get(called_contract.clone()) {2475 sp = called_contract;2476 }2477 }2478 }24792480 sp2481 },24822483 _ => sponsor,2484 };24852486 let mut who_pays_fee: T::AccountId = sponsor.clone();2487 if sponsor == T::AccountId::default() {2488 who_pays_fee = who.clone();2489 }24902491 // Only mess with balances if fee is not zero.2492 if fee.is_zero() {2493 return Ok((fee, None));2494 }24952496 match <T as transaction_payment::Trait>::Currency::withdraw(2497 &who_pays_fee,2498 fee,2499 if tip.is_zero() {2500 WithdrawReason::TransactionPayment.into()2501 } else {2502 WithdrawReason::TransactionPayment | WithdrawReason::Tip2503 },2504 ExistenceRequirement::KeepAlive,2505 ) {2506 Ok(imbalance) => Ok((fee, Some(imbalance))),2507 Err(_) => Err(InvalidTransaction::Payment.into()),2508 }2509 }2510}251125122513impl<T: Trait + Send + Sync> SignedExtension2514 for ChargeTransactionPayment<T>2515where2516 BalanceOf<T>: Send + Sync + From<u64> + FixedPointOperand,2517 T::Call: Dispatchable<Info = DispatchInfo, PostInfo = PostDispatchInfo> + IsSubType<Call<T>> + IsSubType<pallet_contracts::Call<T>>,2518{2519 const IDENTIFIER: &'static str = "ChargeTransactionPayment";2520 type AccountId = T::AccountId;2521 type Call = T::Call;2522 type AdditionalSigned = ();2523 type Pre = (2524 BalanceOf<T>,2525 Self::AccountId,2526 Option<NegativeImbalanceOf<T>>,2527 BalanceOf<T>,2528 );2529 fn additional_signed(&self) -> sp_std::result::Result<(), TransactionValidityError> {2530 Ok(())2531 }25322533 fn validate(2534 &self,2535 who: &Self::AccountId,2536 call: &Self::Call,2537 info: &DispatchInfoOf<Self::Call>,2538 len: usize,2539 ) -> TransactionValidity {2540 let (fee, _) = self.withdraw_fee(who, call, info, len)?;2541 Ok(ValidTransaction {2542 priority: Self::get_priority(len, info, fee),2543 ..Default::default()2544 })2545 }25462547 fn pre_dispatch(2548 self,2549 who: &Self::AccountId,2550 call: &Self::Call,2551 info: &DispatchInfoOf<Self::Call>,2552 len: usize,2553 ) -> Result<Self::Pre, TransactionValidityError> {2554 let (fee, imbalance) = self.withdraw_fee(who, call, info, len)?;2555 Ok((self.0, who.clone(), imbalance, fee))2556 }25572558 fn post_dispatch(2559 pre: Self::Pre,2560 info: &DispatchInfoOf<Self::Call>,2561 post_info: &PostDispatchInfoOf<Self::Call>,2562 len: usize,2563 _result: &DispatchResult,2564 ) -> Result<(), TransactionValidityError> {2565 let (tip, who, imbalance, fee) = pre;2566 if let Some(payed) = imbalance {2567 let actual_fee = <transaction_payment::Module<T>>::compute_actual_fee(2568 len as u32, info, post_info, tip,2569 );2570 let refund = fee.saturating_sub(actual_fee);2571 let actual_payment =2572 match <T as transaction_payment::Trait>::Currency::deposit_into_existing(2573 &who, refund,2574 ) {2575 Ok(refund_imbalance) => {2576 // The refund cannot be larger than the up front payed max weight.2577 // `PostDispatchInfo::calc_unspent` guards against such a case.2578 match payed.offset(refund_imbalance) {2579 Ok(actual_payment) => actual_payment,2580 Err(_) => return Err(InvalidTransaction::Payment.into()),2581 }2582 }2583 // We do not recreate the account using the refund. The up front payment2584 // is gone in that case.2585 Err(_) => payed,2586 };2587 let imbalances = actual_payment.split(tip);2588 <T as transaction_payment::Trait>::OnTransactionPayment::on_unbalanceds(2589 Some(imbalances.0).into_iter().chain(Some(imbalances.1)),2590 );2591 }2592 Ok(())2593 }2594}25952596// #endregion1//2// This file is subject to the terms and conditions defined in3// file 'LICENSE', which is part of this source code package.4//56#![recursion_limit = "1024"]78#![cfg_attr(not(feature = "std"), no_std)]910#[cfg(feature = "std")]11pub use std::*;1213#[cfg(feature = "std")]14pub use serde::*;1516use codec::{Decode, Encode};17pub use frame_support::{18 construct_runtime, decl_event, decl_module, decl_storage, decl_error,19 dispatch::DispatchResult,20 ensure, fail, parameter_types,21 traits::{22 Currency, ExistenceRequirement, Get, Imbalance, KeyOwnerProofSystem, OnUnbalanced,23 Randomness, WithdrawReason,24 },25 weights::{26 constants::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, WEIGHT_PER_SECOND},27 DispatchInfo, GetDispatchInfo, IdentityFee, Pays, PostDispatchInfo, Weight,28 WeightToFeePolynomial,29 },30 IsSubType, StorageValue,31};3233use frame_system::{self as system, ensure_signed, ensure_root};34use sp_runtime::sp_std::prelude::Vec;35use sp_runtime::{36 traits::{37 DispatchInfoOf, Dispatchable, PostDispatchInfoOf, Saturating, SaturatedConversion, SignedExtension, Zero,38 },39 transaction_validity::{40 TransactionPriority, InvalidTransaction, TransactionValidity, TransactionValidityError, ValidTransaction,41 },42 FixedPointOperand, FixedU128,43};44use pallet_contracts::ContractAddressFor;45use sp_runtime::traits::StaticLookup;4647#[cfg(test)]48mod mock;4950#[cfg(test)]51mod tests;5253mod default_weights;5455pub const MAX_DECIMAL_POINTS: DecimalPoints = 30;56pub const MAX_SPONSOR_TIMEOUT: u32 = 10_368_000;57pub const MAX_TOKEN_OWNERSHIP: u32 = 10_000_000;5859// Structs60// #region6162pub type CollectionId = u32;63pub type TokenId = u32;64pub type DecimalPoints = u8;6566#[derive(Encode, Decode, Eq, Debug, Clone, PartialEq)]67#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]68pub enum CollectionMode {69 Invalid,70 NFT,71 // decimal points72 Fungible(DecimalPoints),73 // decimal points74 ReFungible(DecimalPoints),75}7677impl Into<u8> for CollectionMode {78 fn into(self) -> u8 {79 match self {80 CollectionMode::Invalid => 0,81 CollectionMode::NFT => 1,82 CollectionMode::Fungible(_) => 2,83 CollectionMode::ReFungible(_) => 3,84 }85 }86}8788#[derive(Encode, Decode, Eq, Debug, Clone, PartialEq)]89#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]90pub enum AccessMode {91 Normal,92 WhiteList,93}94impl Default for AccessMode {95 fn default() -> Self {96 Self::Normal97 }98}99100impl Default for CollectionMode {101 fn default() -> Self {102 Self::Invalid103 }104}105106#[derive(Encode, Decode, Eq, Debug, Clone, PartialEq)]107#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]108pub enum SchemaVersion {109 ImageURL,110 Unique,111}112impl Default for SchemaVersion {113 fn default() -> Self {114 Self::ImageURL115 }116}117118#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]119#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]120pub struct Ownership<AccountId> {121 pub owner: AccountId,122 pub fraction: u128,123}124125#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]126#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]127pub struct CollectionType<AccountId> {128 pub owner: AccountId,129 pub mode: CollectionMode,130 pub access: AccessMode,131 pub decimal_points: DecimalPoints,132 pub name: Vec<u16>, // 64 include null escape char133 pub description: Vec<u16>, // 256 include null escape char134 pub token_prefix: Vec<u8>, // 16 include null escape char135 pub mint_mode: bool,136 pub offchain_schema: Vec<u8>,137 pub schema_version: SchemaVersion,138 pub sponsor: AccountId, // Who pays fees. If set to default address, the fees are applied to the transaction sender139 pub unconfirmed_sponsor: AccountId, // Sponsor address that has not yet confirmed sponsorship140 pub limits: CollectionLimits, // Collection private restrictions 141 pub variable_on_chain_schema: Vec<u8>, //142 pub const_on_chain_schema: Vec<u8>, //143}144145#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]146#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]147pub struct NftItemType<AccountId> {148 pub collection: CollectionId,149 pub owner: AccountId,150 pub const_data: Vec<u8>,151 pub variable_data: Vec<u8>,152}153154#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]155#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]156pub struct FungibleItemType<AccountId> {157 pub collection: CollectionId,158 pub owner: AccountId,159 pub value: u128,160}161162#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]163#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]164pub struct ReFungibleItemType<AccountId> {165 pub collection: CollectionId,166 pub owner: Vec<Ownership<AccountId>>,167 pub const_data: Vec<u8>,168 pub variable_data: Vec<u8>,169}170171#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]172#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]173pub struct ApprovePermissions<AccountId> {174 pub approved: AccountId,175 pub amount: u128,176}177178#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]179#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]180pub struct VestingItem<AccountId, Moment> {181 pub sender: AccountId,182 pub recipient: AccountId,183 pub collection_id: CollectionId,184 pub item_id: TokenId,185 pub amount: u64,186 pub vesting_date: Moment,187}188189#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]190#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]191pub struct BasketItem<AccountId, BlockNumber> {192 pub address: AccountId,193 pub start_block: BlockNumber,194}195196#[derive(Encode, Decode, Debug, Clone, PartialEq)]197#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]198pub struct CollectionLimits {199 pub account_token_ownership_limit: u32,200 pub sponsored_data_size: u32,201 pub token_limit: u32,202203 // Timeouts for item types in passed blocks204 pub sponsor_transfer_timeout: u32,205}206207impl Default for CollectionLimits {208 fn default() -> CollectionLimits {209 CollectionLimits { 210 account_token_ownership_limit: 10_000_000, 211 token_limit: u32::max_value(),212 sponsored_data_size: u32::max_value(), 213 sponsor_transfer_timeout: 14400 }214 }215}216217#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]218#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]219pub struct ChainLimits {220 pub collection_numbers_limit: u32,221 pub account_token_ownership_limit: u32,222 pub collections_admins_limit: u64,223 pub custom_data_limit: u32,224225 // Timeouts for item types in passed blocks226 pub nft_sponsor_transfer_timeout: u32,227 pub fungible_sponsor_transfer_timeout: u32,228 pub refungible_sponsor_transfer_timeout: u32,229}230231pub trait WeightInfo {232 fn create_collection() -> Weight;233 fn destroy_collection() -> Weight;234 fn add_to_white_list() -> Weight;235 fn remove_from_white_list() -> Weight;236 fn set_public_access_mode() -> Weight;237 fn set_mint_permission() -> Weight;238 fn change_collection_owner() -> Weight;239 fn add_collection_admin() -> Weight;240 fn remove_collection_admin() -> Weight;241 fn set_collection_sponsor() -> Weight;242 fn confirm_sponsorship() -> Weight;243 fn remove_collection_sponsor() -> Weight;244 fn create_item(s: usize) -> Weight;245 fn burn_item() -> Weight;246 fn transfer() -> Weight;247 fn approve() -> Weight;248 fn transfer_from() -> Weight;249 fn set_offchain_schema() -> Weight;250 fn set_const_on_chain_schema() -> Weight;251 fn set_variable_on_chain_schema() -> Weight;252 fn set_variable_meta_data() -> Weight;253 fn enable_contract_sponsoring() -> Weight;254}255256#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]257#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]258pub struct CreateNftData {259 pub const_data: Vec<u8>,260 pub variable_data: Vec<u8>,261}262263#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]264#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]265pub struct CreateFungibleData {266}267268#[derive(Encode, Decode, Default, Debug, Clone, PartialEq)]269#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]270pub struct CreateReFungibleData {271 pub const_data: Vec<u8>,272 pub variable_data: Vec<u8>,273}274275#[derive(Encode, Decode, Debug, Clone, PartialEq)]276#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]277pub enum CreateItemData {278 NFT(CreateNftData),279 Fungible(CreateFungibleData),280 ReFungible(CreateReFungibleData),281}282283impl CreateItemData {284 pub fn len(&self) -> usize {285 let len = match self {286 CreateItemData::NFT(data) => data.variable_data.len() + data.const_data.len(),287 CreateItemData::ReFungible(data) => data.variable_data.len() + data.const_data.len(),288 _ => 0289 };290 291 return len;292 }293}294295impl From<CreateNftData> for CreateItemData {296 fn from(item: CreateNftData) -> Self {297 CreateItemData::NFT(item)298 }299}300301impl From<CreateReFungibleData> for CreateItemData {302 fn from(item: CreateReFungibleData) -> Self {303 CreateItemData::ReFungible(item)304 }305}306307impl From<CreateFungibleData> for CreateItemData {308 fn from(item: CreateFungibleData) -> Self {309 CreateItemData::Fungible(item)310 }311}312313314decl_error! {315 /// Error for non-fungible-token module.316 pub enum Error for Module<T: Trait> {317 /// Total collections bound exceeded.318 TotalCollectionsLimitExceeded,319 /// Decimal_points parameter must be lower than MAX_DECIMAL_POINTS constant, currently it is 30.320 CollectionDecimalPointLimitExceeded, 321 /// Collection name can not be longer than 63 char.322 CollectionNameLimitExceeded, 323 /// Collection description can not be longer than 255 char.324 CollectionDescriptionLimitExceeded, 325 /// Token prefix can not be longer than 15 char.326 CollectionTokenPrefixLimitExceeded,327 /// This collection does not exist.328 CollectionNotFound,329 /// Item not exists.330 TokenNotFound,331 /// Arithmetic calculation overflow.332 NumOverflow, 333 /// Account already has admin role.334 AlreadyAdmin, 335 /// You do not own this collection.336 NoPermission,337 /// This address is not set as sponsor, use setCollectionSponsor first.338 ConfirmUnsetSponsorFail,339 /// Collection is not in mint mode.340 PublicMintingNotAllowed,341 /// Sender parameter and item owner must be equal.342 MustBeTokenOwner,343 /// Item balance not enough.344 TokenValueTooLow,345 /// Size of item is too large.346 NftSizeLimitExceeded,347 /// No approve found348 ApproveNotFound,349 /// Requested value more than approved.350 TokenValueNotEnough,351 /// Only approved addresses can call this method.352 ApproveRequired,353 /// Address is not in white list.354 AddresNotInWhiteList,355 /// Number of collection admins bound exceeded.356 CollectionAdminsLimitExceeded,357 /// Owned tokens by a single address bound exceeded.358 AddressOwnershipLimitExceeded,359 /// Length of items properties must be greater than 0.360 EmptyArgument,361 /// const_data exceeded data limit.362 TokenConstDataLimitExceeded,363 /// variable_data exceeded data limit.364 TokenVariableDataLimitExceeded,365 /// Not NFT item data used to mint in NFT collection.366 NotNftDataUsedToMintNftCollectionToken,367 /// Not Fungible item data used to mint in Fungible collection.368 NotFungibleDataUsedToMintFungibleCollectionToken,369 /// Not Re Fungible item data used to mint in Re Fungible collection.370 NotReFungibleDataUsedToMintReFungibleCollectionToken,371 /// Unexpected collection type.372 UnexpectedCollectionType,373 /// Can't store metadata in fungible tokens.374 CantStoreMetadataInFungibleTokens,375 /// Collection token limit exceeded376 CollectionTokenLimitExceeded,377 /// Account token limit exceeded per collection378 AccountTokenLimitExceeded,379 /// Collection limit bounds per collection exceeded380 CollectionLimitBoundsExceeded381 }382}383384pub trait Trait: system::Trait + Sized + transaction_payment::Trait + pallet_contracts::Trait {385 type Event: From<Event<Self>> + Into<<Self as system::Trait>::Event>;386387 /// Weight information for extrinsics in this pallet.388 type WeightInfo: WeightInfo;389}390391#[cfg(feature = "runtime-benchmarks")]392mod benchmarking;393394// #endregion395396decl_storage! {397 trait Store for Module<T: Trait> as Nft {398399 // Private members400 NextCollectionID: CollectionId;401 CreatedCollectionCount: u32;402 ChainVersion: u64;403 ItemListIndex: map hasher(identity) CollectionId => TokenId;404405 // Chain limits struct406 pub ChainLimit get(fn chain_limit) config(): ChainLimits;407408 // Bound counters409 CollectionCount: u32;410 pub AccountItemCount get(fn account_item_count): map hasher(twox_64_concat) T::AccountId => u32;411412 // Basic collections413 pub Collection get(fn collection) config(): map hasher(identity) CollectionId => CollectionType<T::AccountId>;414 pub AdminList get(fn admin_list_collection): map hasher(identity) CollectionId => Vec<T::AccountId>;415 pub WhiteList get(fn white_list): map hasher(identity) CollectionId => Vec<T::AccountId>;416417 /// Balance owner per collection map418 pub Balance get(fn balance_count): double_map hasher(identity) CollectionId, hasher(twox_64_concat) T::AccountId => u128;419420 /// second parameter: item id + owner account id421 pub ApprovedList get(fn approved): double_map hasher(identity) CollectionId, hasher(twox_64_concat) (TokenId, T::AccountId) => Vec<ApprovePermissions<T::AccountId>>;422423 /// Item collections424 pub NftItemList get(fn nft_item_id) config(): double_map hasher(identity) CollectionId, hasher(identity) TokenId => NftItemType<T::AccountId>;425 pub FungibleItemList get(fn fungible_item_id) config(): double_map hasher(identity) CollectionId, hasher(identity) TokenId => FungibleItemType<T::AccountId>;426 pub ReFungibleItemList get(fn refungible_item_id) config(): double_map hasher(identity) CollectionId, hasher(identity) TokenId => ReFungibleItemType<T::AccountId>;427428 /// Index list429 pub AddressTokens get(fn address_tokens): double_map hasher(identity) CollectionId, hasher(twox_64_concat) T::AccountId => Vec<TokenId>;430431 /// Tokens transfer baskets432 pub NftTransferBasket get(fn nft_transfer_basket): double_map hasher(identity) CollectionId, hasher(identity) TokenId => T::BlockNumber;433 pub FungibleTransferBasket get(fn fungible_transfer_basket): double_map hasher(identity) CollectionId, hasher(identity) TokenId => Vec<BasketItem<T::AccountId, T::BlockNumber>>;434 pub ReFungibleTransferBasket get(fn refungible_transfer_basket): double_map hasher(identity) CollectionId, hasher(identity) TokenId => T::BlockNumber;435436 // Contract Sponsorship and Ownership437 pub ContractOwner get(fn contract_owner): map hasher(twox_64_concat) T::AccountId => T::AccountId;438 pub ContractSelfSponsoring get(fn contract_self_sponsoring): map hasher(twox_64_concat) T::AccountId => bool;439 pub ContractSponsorBasket get(fn contract_sponsor_basket): map hasher(twox_64_concat) (T::AccountId, T::AccountId) => T::BlockNumber;440 pub ContractSponsoringRateLimit get(fn contract_sponsoring_rate_limit): map hasher(twox_64_concat) T::AccountId => T::BlockNumber;441 }442 add_extra_genesis {443 build(|config: &GenesisConfig<T>| {444 // Modification of storage445 for (_num, _c) in &config.collection {446 <Module<T>>::init_collection(_c);447 }448449 for (_num, _q, _i) in &config.nft_item_id {450 <Module<T>>::init_nft_token(_i);451 }452453 for (_num, _q, _i) in &config.fungible_item_id {454 <Module<T>>::init_fungible_token(_i);455 }456457 for (_num, _q, _i) in &config.refungible_item_id {458 <Module<T>>::init_refungible_token(_i);459 }460 })461 }462}463464decl_event!(465 pub enum Event<T>466 where467 AccountId = <T as system::Trait>::AccountId,468 {469 /// New collection was created470 /// 471 /// # Arguments472 /// 473 /// * collection_id: Globally unique identifier of newly created collection.474 /// 475 /// * mode: [CollectionMode] converted into u8.476 /// 477 /// * account_id: Collection owner.478 Created(CollectionId, u8, AccountId),479480 /// New item was created.481 /// 482 /// # Arguments483 /// 484 /// * collection_id: Id of the collection where item was created.485 /// 486 /// * item_id: Id of an item. Unique within the collection.487 ItemCreated(CollectionId, TokenId),488489 /// Collection item was burned.490 /// 491 /// # Arguments492 /// 493 /// collection_id.494 /// 495 /// item_id: Identifier of burned NFT.496 ItemDestroyed(CollectionId, TokenId),497 }498);499500decl_module! {501 pub struct Module<T: Trait> for enum Call where origin: T::Origin {502503 fn deposit_event() = default;504 type Error = Error<T>;505506 fn on_initialize(now: T::BlockNumber) -> Weight {507508 if ChainVersion::get() < 2509 {510 let value = NextCollectionID::get();511 CreatedCollectionCount::put(value);512 ChainVersion::put(2);513 }514515 0516 }517518 /// This method creates a Collection of NFTs. Each Token may have multiple properties encoded as an array of bytes of certain length. The initial owner and admin of the collection are set to the address that signed the transaction. Both addresses can be changed later.519 /// 520 /// # Permissions521 /// 522 /// * Anyone.523 /// 524 /// # Arguments525 /// 526 /// * collection_name: UTF-16 string with collection name (limit 64 characters), will be stored as zero-terminated.527 /// 528 /// * collection_description: UTF-16 string with collection description (limit 256 characters), will be stored as zero-terminated.529 /// 530 /// * token_prefix: UTF-8 string with token prefix.531 /// 532 /// * mode: [CollectionMode] collection type and type dependent data.533 // returns collection ID534 #[weight = T::WeightInfo::create_collection()]535 pub fn create_collection(origin,536 collection_name: Vec<u16>,537 collection_description: Vec<u16>,538 token_prefix: Vec<u8>,539 mode: CollectionMode) -> DispatchResult {540541 // Anyone can create a collection542 let who = ensure_signed(origin)?;543544 let decimal_points = match mode {545 CollectionMode::Fungible(points) => points,546 CollectionMode::ReFungible(points) => points,547 _ => 0548 };549550 // bound Total number of collections551 ensure!(CollectionCount::get() < ChainLimit::get().collection_numbers_limit, Error::<T>::TotalCollectionsLimitExceeded);552553 // check params554 ensure!(decimal_points <= MAX_DECIMAL_POINTS, Error::<T>::CollectionDecimalPointLimitExceeded);555556 let mut name = collection_name.to_vec();557 name.push(0);558 ensure!(name.len() <= 64, Error::<T>::CollectionNameLimitExceeded);559560 let mut description = collection_description.to_vec();561 description.push(0);562 ensure!(name.len() <= 256, Error::<T>::CollectionDescriptionLimitExceeded);563564 let mut prefix = token_prefix.to_vec();565 prefix.push(0);566 ensure!(prefix.len() <= 16, Error::<T>::CollectionTokenPrefixLimitExceeded);567568 // Generate next collection ID569 let next_id = CreatedCollectionCount::get()570 .checked_add(1)571 .ok_or(Error::<T>::NumOverflow)?;572573 // bound counter574 let total = CollectionCount::get()575 .checked_add(1)576 .ok_or(Error::<T>::NumOverflow)?;577578 CreatedCollectionCount::put(next_id);579 CollectionCount::put(total);580581 // Create new collection582 let new_collection = CollectionType {583 owner: who.clone(),584 name: name,585 mode: mode.clone(),586 mint_mode: false,587 access: AccessMode::Normal,588 description: description,589 decimal_points: decimal_points,590 token_prefix: prefix,591 offchain_schema: Vec::new(),592 schema_version: SchemaVersion::ImageURL,593 sponsor: T::AccountId::default(),594 unconfirmed_sponsor: T::AccountId::default(),595 variable_on_chain_schema: Vec::new(),596 const_on_chain_schema: Vec::new(),597 limits: CollectionLimits::default(),598 };599600 // Add new collection to map601 <Collection<T>>::insert(next_id, new_collection);602603 // call event604 Self::deposit_event(RawEvent::Created(next_id, mode.into(), who.clone()));605606 Ok(())607 }608609 /// **DANGEROUS**: Destroys collection and all NFTs within this collection. Users irrecoverably lose their assets and may lose real money.610 /// 611 /// # Permissions612 /// 613 /// * Collection Owner.614 /// 615 /// # Arguments616 /// 617 /// * collection_id: collection to destroy.618 #[weight = T::WeightInfo::destroy_collection()]619 pub fn destroy_collection(origin, collection_id: CollectionId) -> DispatchResult {620621 let sender = ensure_signed(origin)?;622 Self::check_owner_permissions(collection_id, sender)?;623624 <AddressTokens<T>>::remove_prefix(collection_id);625 <ApprovedList<T>>::remove_prefix(collection_id);626 <Balance<T>>::remove_prefix(collection_id);627 <ItemListIndex>::remove(collection_id);628 <AdminList<T>>::remove(collection_id);629 <Collection<T>>::remove(collection_id);630 <WhiteList<T>>::remove(collection_id);631632 <NftItemList<T>>::remove_prefix(collection_id);633 <FungibleItemList<T>>::remove_prefix(collection_id);634 <ReFungibleItemList<T>>::remove_prefix(collection_id);635636 <NftTransferBasket<T>>::remove_prefix(collection_id);637 <FungibleTransferBasket<T>>::remove_prefix(collection_id);638 <ReFungibleTransferBasket<T>>::remove_prefix(collection_id);639640 if CollectionCount::get() > 0641 {642 // bound couter643 let total = CollectionCount::get()644 .checked_sub(1)645 .ok_or(Error::<T>::NumOverflow)?;646647 CollectionCount::put(total);648 }649650 Ok(())651 }652653 /// Add an address to white list.654 /// 655 /// # Permissions656 /// 657 /// * Collection Owner658 /// * Collection Admin659 /// 660 /// # Arguments661 /// 662 /// * collection_id.663 /// 664 /// * address.665 #[weight = T::WeightInfo::add_to_white_list()]666 pub fn add_to_white_list(origin, collection_id: CollectionId, address: T::AccountId) -> DispatchResult{667668 let sender = ensure_signed(origin)?;669 Self::check_owner_or_admin_permissions(collection_id, sender)?;670671 let mut white_list_collection: Vec<T::AccountId>;672 if <WhiteList<T>>::contains_key(collection_id) {673 white_list_collection = <WhiteList<T>>::get(collection_id);674 if !white_list_collection.contains(&address.clone())675 {676 white_list_collection.push(address.clone());677 }678 }679 else {680 white_list_collection = Vec::new();681 white_list_collection.push(address.clone());682 }683684 <WhiteList<T>>::insert(collection_id, white_list_collection);685 Ok(())686 }687688 /// Remove an address from white list.689 /// 690 /// # Permissions691 /// 692 /// * Collection Owner693 /// * Collection Admin694 /// 695 /// # Arguments696 /// 697 /// * collection_id.698 /// 699 /// * address.700 #[weight = T::WeightInfo::remove_from_white_list()]701 pub fn remove_from_white_list(origin, collection_id: CollectionId, address: T::AccountId) -> DispatchResult{702703 let sender = ensure_signed(origin)?;704 Self::check_owner_or_admin_permissions(collection_id, sender)?;705706 if <WhiteList<T>>::contains_key(collection_id) {707 let mut white_list_collection = <WhiteList<T>>::get(collection_id);708 if white_list_collection.contains(&address.clone())709 {710 white_list_collection.retain(|i| *i != address.clone());711 <WhiteList<T>>::insert(collection_id, white_list_collection);712 }713 }714715 Ok(())716 }717718 /// Toggle between normal and white list access for the methods with access for `Anyone`.719 /// 720 /// # Permissions721 /// 722 /// * Collection Owner.723 /// 724 /// # Arguments725 /// 726 /// * collection_id.727 /// 728 /// * mode: [AccessMode]729 #[weight = T::WeightInfo::set_public_access_mode()]730 pub fn set_public_access_mode(origin, collection_id: CollectionId, mode: AccessMode) -> DispatchResult731 {732 let sender = ensure_signed(origin)?;733734 Self::check_owner_permissions(collection_id, sender)?;735 let mut target_collection = <Collection<T>>::get(collection_id);736 target_collection.access = mode;737 <Collection<T>>::insert(collection_id, target_collection);738739 Ok(())740 }741742 /// Allows Anyone to create tokens if:743 /// * White List is enabled, and744 /// * Address is added to white list, and745 /// * This method was called with True parameter746 /// 747 /// # Permissions748 /// * Collection Owner749 ///750 /// # Arguments751 /// 752 /// * collection_id.753 /// 754 /// * mint_permission: Boolean parameter. If True, allows minting to Anyone with conditions above.755 #[weight = T::WeightInfo::set_mint_permission()]756 pub fn set_mint_permission(origin, collection_id: CollectionId, mint_permission: bool) -> DispatchResult757 {758 let sender = ensure_signed(origin)?;759760 Self::check_owner_permissions(collection_id, sender)?;761 let mut target_collection = <Collection<T>>::get(collection_id);762 target_collection.mint_mode = mint_permission;763 <Collection<T>>::insert(collection_id, target_collection);764765 Ok(())766 }767768 /// Change the owner of the collection.769 /// 770 /// # Permissions771 /// 772 /// * Collection Owner.773 /// 774 /// # Arguments775 /// 776 /// * collection_id.777 /// 778 /// * new_owner.779 #[weight = T::WeightInfo::change_collection_owner()]780 pub fn change_collection_owner(origin, collection_id: CollectionId, new_owner: T::AccountId) -> DispatchResult {781782 let sender = ensure_signed(origin)?;783 Self::check_owner_permissions(collection_id, sender)?;784 let mut target_collection = <Collection<T>>::get(collection_id);785 target_collection.owner = new_owner;786 <Collection<T>>::insert(collection_id, target_collection);787788 Ok(())789 }790791 /// Adds an admin of the Collection.792 /// NFT Collection can be controlled by multiple admin addresses (some which can also be servers, for example). Admins can issue and burn NFTs, as well as add and remove other admins, but cannot change NFT or Collection ownership. 793 /// 794 /// # Permissions795 /// 796 /// * Collection Owner.797 /// * Collection Admin.798 /// 799 /// # Arguments800 /// 801 /// * collection_id: ID of the Collection to add admin for.802 /// 803 /// * new_admin_id: Address of new admin to add.804 #[weight = T::WeightInfo::add_collection_admin()]805 pub fn add_collection_admin(origin, collection_id: CollectionId, new_admin_id: T::AccountId) -> DispatchResult {806807 let sender = ensure_signed(origin)?;808 Self::check_owner_or_admin_permissions(collection_id, sender)?;809 let mut admin_arr: Vec<T::AccountId> = Vec::new();810811 if <AdminList<T>>::contains_key(collection_id)812 {813 admin_arr = <AdminList<T>>::get(collection_id);814 ensure!(!admin_arr.contains(&new_admin_id), Error::<T>::AlreadyAdmin);815 }816817 // Number of collection admins818 ensure!((admin_arr.len() as u64) < ChainLimit::get().collections_admins_limit, Error::<T>::CollectionAdminsLimitExceeded);819820 admin_arr.push(new_admin_id);821 <AdminList<T>>::insert(collection_id, admin_arr);822823 Ok(())824 }825826 /// Remove admin address of the Collection. An admin address can remove itself. List of admins may become empty, in which case only Collection Owner will be able to add an Admin.827 ///828 /// # Permissions829 /// 830 /// * Collection Owner.831 /// * Collection Admin.832 /// 833 /// # Arguments834 /// 835 /// * collection_id: ID of the Collection to remove admin for.836 /// 837 /// * account_id: Address of admin to remove.838 #[weight = T::WeightInfo::remove_collection_admin()]839 pub fn remove_collection_admin(origin, collection_id: CollectionId, account_id: T::AccountId) -> DispatchResult {840841 let sender = ensure_signed(origin)?;842 Self::check_owner_or_admin_permissions(collection_id, sender)?;843844 if <AdminList<T>>::contains_key(collection_id)845 {846 let mut admin_arr = <AdminList<T>>::get(collection_id);847 admin_arr.retain(|i| *i != account_id);848 <AdminList<T>>::insert(collection_id, admin_arr);849 }850851 Ok(())852 }853854 /// # Permissions855 /// 856 /// * Collection Owner857 /// 858 /// # Arguments859 /// 860 /// * collection_id.861 /// 862 /// * new_sponsor.863 #[weight = T::WeightInfo::set_collection_sponsor()]864 pub fn set_collection_sponsor(origin, collection_id: CollectionId, new_sponsor: T::AccountId) -> DispatchResult {865866 let sender = ensure_signed(origin)?;867 ensure!(<Collection<T>>::contains_key(collection_id), Error::<T>::CollectionNotFound);868869 let mut target_collection = <Collection<T>>::get(collection_id);870 ensure!(sender == target_collection.owner, Error::<T>::NoPermission);871872 target_collection.unconfirmed_sponsor = new_sponsor;873 <Collection<T>>::insert(collection_id, target_collection);874875 Ok(())876 }877878 /// # Permissions879 /// 880 /// * Sponsor.881 /// 882 /// # Arguments883 /// 884 /// * collection_id.885 #[weight = T::WeightInfo::confirm_sponsorship()]886 pub fn confirm_sponsorship(origin, collection_id: CollectionId) -> DispatchResult {887888 let sender = ensure_signed(origin)?;889 ensure!(<Collection<T>>::contains_key(collection_id), Error::<T>::CollectionNotFound);890891 let mut target_collection = <Collection<T>>::get(collection_id);892 ensure!(sender == target_collection.unconfirmed_sponsor, Error::<T>::ConfirmUnsetSponsorFail);893894 target_collection.sponsor = target_collection.unconfirmed_sponsor;895 target_collection.unconfirmed_sponsor = T::AccountId::default();896 <Collection<T>>::insert(collection_id, target_collection);897898 Ok(())899 }900901 /// Switch back to pay-per-own-transaction model.902 ///903 /// # Permissions904 ///905 /// * Collection owner.906 /// 907 /// # Arguments908 /// 909 /// * collection_id.910 #[weight = T::WeightInfo::remove_collection_sponsor()]911 pub fn remove_collection_sponsor(origin, collection_id: CollectionId) -> DispatchResult {912913 let sender = ensure_signed(origin)?;914 ensure!(<Collection<T>>::contains_key(collection_id), Error::<T>::CollectionNotFound);915916 let mut target_collection = <Collection<T>>::get(collection_id);917 ensure!(sender == target_collection.owner, Error::<T>::NoPermission);918919 target_collection.sponsor = T::AccountId::default();920 <Collection<T>>::insert(collection_id, target_collection);921922 Ok(())923 }924925 /// This method creates a concrete instance of NFT Collection created with CreateCollection method.926 /// 927 /// # Permissions928 /// 929 /// * Collection Owner.930 /// * Collection Admin.931 /// * Anyone if932 /// * White List is enabled, and933 /// * Address is added to white list, and934 /// * MintPermission is enabled (see SetMintPermission method)935 /// 936 /// # Arguments937 /// 938 /// * collection_id: ID of the collection.939 /// 940 /// * owner: Address, initial owner of the NFT.941 ///942 /// * data: Token data to store on chain.943 // #[weight =944 // (130_000_000 as Weight)945 // .saturating_add((2135 as Weight).saturating_mul((properties.len() as u64) as Weight))946 // .saturating_add(RocksDbWeight::get().reads(10 as Weight))947 // .saturating_add(RocksDbWeight::get().writes(8 as Weight))]948949 #[weight = T::WeightInfo::create_item(data.len())]950 pub fn create_item(origin, collection_id: CollectionId, owner: T::AccountId, data: CreateItemData) -> DispatchResult {951952 let sender = ensure_signed(origin)?;953954 Self::collection_exists(collection_id)?;955956 let target_collection = <Collection<T>>::get(collection_id);957958 Self::can_create_items_in_collection(collection_id, &target_collection, &sender, &owner)?;959 Self::validate_create_item_args(&target_collection, &data)?;960 Self::create_item_no_validation(collection_id, &target_collection, owner, data)?;961962 Ok(())963 }964965 /// This method creates multiple instances of NFT Collection created with CreateCollection method.966 /// 967 /// # Permissions968 /// 969 /// * Collection Owner.970 /// * Collection Admin.971 /// * Anyone if972 /// * White List is enabled, and973 /// * Address is added to white list, and974 /// * MintPermission is enabled (see SetMintPermission method)975 /// 976 /// # Arguments977 /// 978 /// * collection_id: ID of the collection.979 /// 980 /// * itemsData: Array items properties. Each property is an array of bytes itself, see [create_item].981 /// 982 /// * owner: Address, initial owner of the NFT.983 #[weight = T::WeightInfo::create_item(items_data.into_iter()984 .map(|data| { data.len() })985 .sum())]986 pub fn create_multiple_items(origin, collection_id: CollectionId, owner: T::AccountId, items_data: Vec<CreateItemData>) -> DispatchResult {987988 ensure!(items_data.len() > 0, Error::<T>::EmptyArgument);989 let sender = ensure_signed(origin)?;990991 Self::collection_exists(collection_id)?;992 let target_collection = <Collection<T>>::get(collection_id);993994 Self::can_create_items_in_collection(collection_id, &target_collection, &sender, &owner)?;995996 for data in &items_data {997 Self::validate_create_item_args(&target_collection, data)?;998 }999 for data in &items_data {1000 Self::create_item_no_validation(collection_id, &target_collection, owner.clone(), data.clone())?;1001 }10021003 Ok(())1004 }10051006 /// Destroys a concrete instance of NFT.1007 /// 1008 /// # Permissions1009 /// 1010 /// * Collection Owner.1011 /// * Collection Admin.1012 /// * Current NFT Owner.1013 /// 1014 /// # Arguments1015 /// 1016 /// * collection_id: ID of the collection.1017 /// 1018 /// * item_id: ID of NFT to burn.1019 #[weight = T::WeightInfo::burn_item()]1020 pub fn burn_item(origin, collection_id: CollectionId, item_id: TokenId) -> DispatchResult {10211022 let sender = ensure_signed(origin)?;1023 Self::collection_exists(collection_id)?;10241025 // Transfer permissions check1026 let target_collection = <Collection<T>>::get(collection_id);1027 ensure!(Self::is_item_owner(sender.clone(), collection_id, item_id) ||1028 Self::is_owner_or_admin_permissions(collection_id, sender.clone()),1029 Error::<T>::NoPermission);10301031 if target_collection.access == AccessMode::WhiteList {1032 Self::check_white_list(collection_id, &sender)?;1033 }10341035 match target_collection.mode1036 {1037 CollectionMode::NFT => Self::burn_nft_item(collection_id, item_id)?,1038 CollectionMode::Fungible(_) => Self::burn_fungible_item(collection_id, item_id)?,1039 CollectionMode::ReFungible(_) => Self::burn_refungible_item(collection_id, item_id, sender.clone())?,1040 _ => ()1041 };10421043 // call event1044 Self::deposit_event(RawEvent::ItemDestroyed(collection_id, item_id));10451046 Ok(())1047 }10481049 /// Change ownership of the token.1050 /// 1051 /// # Permissions1052 /// 1053 /// * Collection Owner1054 /// * Collection Admin1055 /// * Current NFT owner1056 ///1057 /// # Arguments1058 /// 1059 /// * recipient: Address of token recipient.1060 /// 1061 /// * collection_id.1062 /// 1063 /// * item_id: ID of the item1064 /// * Non-Fungible Mode: Required.1065 /// * Fungible Mode: Ignored.1066 /// * Re-Fungible Mode: Required.1067 /// 1068 /// * value: Amount to transfer.1069 /// * Non-Fungible Mode: Ignored1070 /// * Fungible Mode: Must specify transferred amount1071 /// * Re-Fungible Mode: Must specify transferred portion (between 0 and 1)1072 #[weight = T::WeightInfo::transfer()]1073 pub fn transfer(origin, recipient: T::AccountId, collection_id: CollectionId, item_id: TokenId, value: u128) -> DispatchResult {10741075 let sender = ensure_signed(origin)?;1076 let target_collection = <Collection<T>>::get(collection_id);10771078 // Limits check1079 Self::is_correct_transfer(collection_id, &target_collection, &recipient)?;10801081 // Transfer permissions check1082 ensure!(Self::is_item_owner(sender.clone(), collection_id, item_id) ||1083 Self::is_owner_or_admin_permissions(collection_id, sender.clone()),1084 Error::<T>::NoPermission);10851086 if target_collection.access == AccessMode::WhiteList {1087 Self::check_white_list(collection_id, &sender)?;1088 Self::check_white_list(collection_id, &recipient)?;1089 }10901091 match target_collection.mode1092 {1093 CollectionMode::NFT => Self::transfer_nft(collection_id, item_id, sender.clone(), recipient)?,1094 CollectionMode::Fungible(_) => Self::transfer_fungible(collection_id, item_id, value, sender.clone(), recipient)?,1095 CollectionMode::ReFungible(_) => Self::transfer_refungible(collection_id, item_id, value, sender.clone(), recipient)?,1096 _ => ()1097 };10981099 Ok(())1100 }11011102 /// Set, change, or remove approved address to transfer the ownership of the NFT.1103 /// 1104 /// # Permissions1105 /// 1106 /// * Collection Owner1107 /// * Collection Admin1108 /// * Current NFT owner1109 /// 1110 /// # Arguments1111 /// 1112 /// * approved: Address that is approved to transfer this NFT or zero (if needed to remove approval).1113 /// 1114 /// * collection_id.1115 /// 1116 /// * item_id: ID of the item.1117 #[weight = T::WeightInfo::approve()]1118 pub fn approve(origin, approved: T::AccountId, collection_id: CollectionId, item_id: TokenId) -> DispatchResult {11191120 let sender = ensure_signed(origin)?;11211122 // Transfer permissions check1123 let target_collection = <Collection<T>>::get(collection_id);1124 ensure!(Self::is_item_owner(sender.clone(), collection_id, item_id) ||1125 Self::is_owner_or_admin_permissions(collection_id, sender.clone()),1126 Error::<T>::NoPermission);11271128 if target_collection.access == AccessMode::WhiteList {1129 Self::check_white_list(collection_id, &sender)?;1130 Self::check_white_list(collection_id, &approved)?;1131 }11321133 // amount param stub1134 let amount = 100000000;11351136 let list_exists = <ApprovedList<T>>::contains_key(collection_id, (item_id, sender.clone()));1137 if list_exists {11381139 let mut list = <ApprovedList<T>>::get(collection_id, (item_id, sender.clone()));1140 let item_contains = list.iter().any(|i| i.approved == approved);11411142 if !item_contains {1143 list.push(ApprovePermissions { approved: approved.clone(), amount: amount });1144 <ApprovedList<T>>::insert(collection_id, (item_id, sender.clone()), list);1145 }1146 } else {11471148 let mut list = Vec::new();1149 list.push(ApprovePermissions { approved: approved.clone(), amount: amount });1150 <ApprovedList<T>>::insert(collection_id, (item_id, sender.clone()), list);1151 }11521153 Ok(())1154 }1155 1156 /// Change ownership of a NFT on behalf of the owner. See Approve method for additional information. After this method executes, the approval is removed so that the approved address will not be able to transfer this NFT again from this owner.1157 /// 1158 /// # Permissions1159 /// * Collection Owner1160 /// * Collection Admin1161 /// * Current NFT owner1162 /// * Address approved by current NFT owner1163 /// 1164 /// # Arguments1165 /// 1166 /// * from: Address that owns token.1167 /// 1168 /// * recipient: Address of token recipient.1169 /// 1170 /// * collection_id.1171 /// 1172 /// * item_id: ID of the item.1173 /// 1174 /// * value: Amount to transfer.1175 #[weight = T::WeightInfo::transfer_from()]1176 pub fn transfer_from(origin, from: T::AccountId, recipient: T::AccountId, collection_id: CollectionId, item_id: TokenId, value: u128 ) -> DispatchResult {11771178 let sender = ensure_signed(origin)?;1179 let mut appoved_transfer = false;11801181 // Check approve1182 if <ApprovedList<T>>::contains_key(collection_id, (item_id, from.clone())) {1183 let list_itm = <ApprovedList<T>>::get(collection_id, (item_id, from.clone()));1184 let opt_item = list_itm.iter().find(|i| i.approved == sender.clone());1185 if opt_item.is_some()1186 {1187 appoved_transfer = true;1188 ensure!(opt_item.unwrap().amount >= value, Error::<T>::TokenValueNotEnough);1189 }1190 }11911192 let target_collection = <Collection<T>>::get(collection_id);11931194 // Limits check1195 Self::is_correct_transfer(collection_id, &target_collection, &recipient)?;11961197 // Transfer permissions check 1198 ensure!(appoved_transfer || Self::is_owner_or_admin_permissions(collection_id, sender.clone()),1199 Error::<T>::NoPermission);12001201 if target_collection.access == AccessMode::WhiteList {1202 Self::check_white_list(collection_id, &sender)?;1203 Self::check_white_list(collection_id, &recipient)?;1204 }12051206 // remove approve1207 let approve_list: Vec<ApprovePermissions<T::AccountId>> = <ApprovedList<T>>::get(collection_id, (item_id, from.clone()))1208 .into_iter().filter(|i| i.approved != sender.clone()).collect();1209 <ApprovedList<T>>::insert(collection_id, (item_id, from.clone()), approve_list);121012111212 match target_collection.mode1213 {1214 CollectionMode::NFT => Self::transfer_nft(collection_id, item_id, from, recipient)?,1215 CollectionMode::Fungible(_) => Self::transfer_fungible(collection_id, item_id, value, from.clone(), recipient)?,1216 CollectionMode::ReFungible(_) => Self::transfer_refungible(collection_id, item_id, value, from.clone(), recipient)?,1217 _ => ()1218 };12191220 Ok(())1221 }12221223 #[weight = 0]1224 pub fn safe_transfer_from(origin, collection_id: CollectionId, item_id: TokenId, new_owner: T::AccountId) -> DispatchResult {12251226 // let no_perm_mes = "You do not have permissions to modify this collection";1227 // ensure!(<ApprovedList<T>>::contains_key((collection_id, item_id)), no_perm_mes);1228 // let list_itm = <ApprovedList<T>>::get((collection_id, item_id));1229 // ensure!(list_itm.contains(&new_owner.clone()), no_perm_mes);12301231 // // on_nft_received call12321233 // Self::transfer(origin, collection_id, item_id, new_owner)?;12341235 Ok(())1236 }12371238 /// Set off-chain data schema.1239 /// 1240 /// # Permissions1241 /// 1242 /// * Collection Owner1243 /// * Collection Admin1244 /// 1245 /// # Arguments1246 /// 1247 /// * collection_id.1248 /// 1249 /// * schema: String representing the offchain data schema.1250 #[weight = T::WeightInfo::set_variable_meta_data()]1251 pub fn set_variable_meta_data (1252 origin,1253 collection_id: CollectionId,1254 item_id: TokenId,1255 data: Vec<u8>1256 ) -> DispatchResult {1257 let sender = ensure_signed(origin)?;1258 1259 Self::collection_exists(collection_id)?;1260 1261 ensure!(ChainLimit::get().custom_data_limit >= data.len() as u32, Error::<T>::TokenVariableDataLimitExceeded);12621263 // Modify permissions check1264 let target_collection = <Collection<T>>::get(collection_id);1265 ensure!(Self::is_item_owner(sender.clone(), collection_id, item_id) ||1266 Self::is_owner_or_admin_permissions(collection_id, sender.clone()),1267 Error::<T>::NoPermission);12681269 Self::item_exists(collection_id, item_id, &target_collection.mode)?;12701271 match target_collection.mode1272 {1273 CollectionMode::NFT => Self::set_nft_variable_data(collection_id, item_id, data)?,1274 CollectionMode::ReFungible(_) => Self::set_re_fungible_variable_data(collection_id, item_id, data)?,1275 CollectionMode::Fungible(_) => fail!(Error::<T>::CantStoreMetadataInFungibleTokens),1276 _ => fail!(Error::<T>::UnexpectedCollectionType)1277 };12781279 Ok(())1280 }1281 1282 /// Set schema standard1283 /// ImageURL1284 /// Unique1285 /// 1286 /// # Permissions1287 /// 1288 /// * Collection Owner1289 /// * Collection Admin1290 /// 1291 /// # Arguments1292 /// 1293 /// * collection_id.1294 /// 1295 /// * schema: SchemaVersion: enum1296 #[weight = 0]1297 pub fn set_schema_version(1298 origin,1299 collection_id: CollectionId,1300 version: SchemaVersion1301 ) -> DispatchResult {1302 let sender = ensure_signed(origin)?;1303 Self::check_owner_or_admin_permissions(collection_id, sender.clone())?;1304 let mut target_collection = <Collection<T>>::get(collection_id);1305 target_collection.schema_version = version;1306 <Collection<T>>::insert(collection_id, target_collection);13071308 Ok(())1309 }13101311 /// Set off-chain data schema.1312 /// 1313 /// # Permissions1314 /// 1315 /// * Collection Owner1316 /// * Collection Admin1317 /// 1318 /// # Arguments1319 /// 1320 /// * collection_id.1321 /// 1322 /// * schema: String representing the offchain data schema.1323 #[weight = T::WeightInfo::set_offchain_schema()]1324 pub fn set_offchain_schema(1325 origin,1326 collection_id: CollectionId,1327 schema: Vec<u8>1328 ) -> DispatchResult {1329 let sender = ensure_signed(origin)?;1330 Self::check_owner_or_admin_permissions(collection_id, sender.clone())?;13311332 let mut target_collection = <Collection<T>>::get(collection_id);1333 target_collection.offchain_schema = schema;1334 <Collection<T>>::insert(collection_id, target_collection);13351336 Ok(())1337 }13381339 /// Set const on-chain data schema.1340 /// 1341 /// # Permissions1342 /// 1343 /// * Collection Owner1344 /// * Collection Admin1345 /// 1346 /// # Arguments1347 /// 1348 /// * collection_id.1349 /// 1350 /// * schema: String representing the const on-chain data schema.1351 #[weight = T::WeightInfo::set_const_on_chain_schema()]1352 pub fn set_const_on_chain_schema (1353 origin,1354 collection_id: CollectionId,1355 schema: Vec<u8>1356 ) -> DispatchResult {1357 let sender = ensure_signed(origin)?;1358 Self::check_owner_or_admin_permissions(collection_id, sender.clone())?;13591360 let mut target_collection = <Collection<T>>::get(collection_id);1361 target_collection.const_on_chain_schema = schema;1362 <Collection<T>>::insert(collection_id, target_collection);13631364 Ok(())1365 }13661367 /// Set variable on-chain data schema.1368 /// 1369 /// # Permissions1370 /// 1371 /// * Collection Owner1372 /// * Collection Admin1373 /// 1374 /// # Arguments1375 /// 1376 /// * collection_id.1377 /// 1378 /// * schema: String representing the variable on-chain data schema.1379 #[weight = T::WeightInfo::set_const_on_chain_schema()]1380 pub fn set_variable_on_chain_schema (1381 origin,1382 collection_id: CollectionId,1383 schema: Vec<u8>1384 ) -> DispatchResult {1385 let sender = ensure_signed(origin)?;1386 Self::check_owner_or_admin_permissions(collection_id, sender.clone())?;13871388 let mut target_collection = <Collection<T>>::get(collection_id);1389 target_collection.variable_on_chain_schema = schema;1390 <Collection<T>>::insert(collection_id, target_collection);13911392 Ok(())1393 }13941395 // Sudo permissions function1396 #[weight = 0]1397 pub fn set_chain_limits(1398 origin,1399 limits: ChainLimits1400 ) -> DispatchResult {1401 ensure_root(origin)?;1402 <ChainLimit>::put(limits);1403 Ok(())1404 }14051406 /// Enable smart contract self-sponsoring.1407 /// 1408 /// # Permissions1409 /// 1410 /// * Contract Owner1411 /// 1412 /// # Arguments1413 /// 1414 /// * contract address1415 /// * enable flag1416 /// 1417 #[weight = T::WeightInfo::enable_contract_sponsoring()]1418 pub fn enable_contract_sponsoring(1419 origin,1420 contract_address: T::AccountId,1421 enable: bool1422 ) -> DispatchResult {14231424 let sender = ensure_signed(origin)?;14251426 #[cfg(feature = "runtime-benchmarks")]1427 <ContractOwner<T>>::insert(contract_address.clone(), sender.clone());14281429 let mut is_owner = false;1430 if <ContractOwner<T>>::contains_key(contract_address.clone()) {1431 let owner = <ContractOwner<T>>::get(&contract_address);1432 is_owner = sender == owner;1433 }1434 ensure!(is_owner, Error::<T>::NoPermission);14351436 <ContractSelfSponsoring<T>>::insert(contract_address, enable);1437 Ok(())1438 }14391440 /// Set the rate limit for contract sponsoring to specified number of blocks.1441 /// 1442 /// If not set (has the default value of 0 blocks), the sponsoring will be disabled. 1443 /// If set to the number B (for blocks), the transactions will be sponsored with a rate 1444 /// limit of B, i.e. fees for every transaction sent to this smart contract will be paid 1445 /// from contract endowment if there are at least B blocks between such transactions. 1446 /// Nonetheless, if transactions are sent more frequently, the fees are paid by the sender.1447 /// 1448 /// # Permissions1449 /// 1450 /// * Contract Owner1451 /// 1452 /// # Arguments1453 /// 1454 /// -`contract_address`: Address of the contract to sponsor1455 /// -`rate_limit`: Number of blocks to wait until the next sponsored transaction is allowed1456 /// 1457 #[weight = 0]1458 pub fn set_contract_sponsoring_rate_limit(1459 origin,1460 contract_address: T::AccountId,1461 rate_limit: T::BlockNumber1462 ) -> DispatchResult {1463 let sender = ensure_signed(origin)?;1464 let mut is_owner = false;1465 if <ContractOwner<T>>::contains_key(contract_address.clone()) {1466 let owner = <ContractOwner<T>>::get(&contract_address);1467 is_owner = sender == owner;1468 }1469 ensure!(is_owner, Error::<T>::NoPermission);14701471 <ContractSponsoringRateLimit<T>>::insert(contract_address, rate_limit);1472 Ok(())1473 }14741475 #[weight = 0]1476 pub fn set_collection_limits(1477 origin,1478 collection_id: u32,1479 limits: CollectionLimits,1480 ) -> DispatchResult {1481 let sender = ensure_signed(origin)?;1482 Self::check_owner_permissions(collection_id, sender.clone())?;1483 let mut target_collection = <Collection<T>>::get(collection_id);1484 let chain_limits = ChainLimit::get();1485 let climits = target_collection.limits;14861487 // collection bounds1488 ensure!(limits.sponsor_transfer_timeout <= MAX_SPONSOR_TIMEOUT &&1489 limits.account_token_ownership_limit <= MAX_TOKEN_OWNERSHIP, 1490 Error::<T>::CollectionLimitBoundsExceeded);14911492 // token_limit check prev1493 ensure!(climits.token_limit > limits.token_limit && 1494 limits.token_limit <= chain_limits.account_token_ownership_limit, 1495 Error::<T>::AccountTokenLimitExceeded);14961497 target_collection.limits = limits;1498 <Collection<T>>::insert(collection_id, target_collection);14991500 Ok(())1501 } 1502 }1503}15041505impl<T: Trait> Module<T> {15061507 fn is_correct_transfer(collection_id: CollectionId, collection: &CollectionType<T::AccountId>, recipient: &T::AccountId) -> DispatchResult {15081509 // check token limit and account token limit1510 let account_items: u32 = <AddressTokens<T>>::get(collection_id, recipient).len() as u32;1511 ensure!(collection.limits.account_token_ownership_limit > account_items, Error::<T>::AccountTokenLimitExceeded);1512 1513 Ok(())1514 }15151516 fn can_create_items_in_collection(collection_id: CollectionId, collection: &CollectionType<T::AccountId>, sender: &T::AccountId, owner: &T::AccountId) -> DispatchResult {15171518 // check token limit and account token limit1519 let total_items: u32 = ItemListIndex::get(collection_id);1520 let account_items: u32 = <AddressTokens<T>>::get(collection_id, owner).len() as u32;1521 ensure!(collection.limits.token_limit > total_items, Error::<T>::CollectionTokenLimitExceeded);1522 ensure!(collection.limits.account_token_ownership_limit > account_items, Error::<T>::AccountTokenLimitExceeded);15231524 if !Self::is_owner_or_admin_permissions(collection_id, sender.clone()) {1525 ensure!(collection.mint_mode == true, Error::<T>::PublicMintingNotAllowed);1526 Self::check_white_list(collection_id, owner)?;1527 Self::check_white_list(collection_id, sender)?;1528 }15291530 Ok(())1531 }15321533 fn validate_create_item_args(target_collection: &CollectionType<T::AccountId>, data: &CreateItemData) -> DispatchResult {1534 match target_collection.mode1535 {1536 CollectionMode::NFT => {1537 if let CreateItemData::NFT(data) = data {1538 // check sizes1539 ensure!(ChainLimit::get().custom_data_limit >= data.const_data.len() as u32, Error::<T>::TokenConstDataLimitExceeded);1540 ensure!(ChainLimit::get().custom_data_limit >= data.variable_data.len() as u32, Error::<T>::TokenVariableDataLimitExceeded);1541 } else {1542 fail!(Error::<T>::NotNftDataUsedToMintNftCollectionToken);1543 }1544 },1545 CollectionMode::Fungible(_) => {1546 if let CreateItemData::Fungible(_) = data {1547 } else {1548 fail!(Error::<T>::NotFungibleDataUsedToMintFungibleCollectionToken);1549 }1550 },1551 CollectionMode::ReFungible(_) => {1552 if let CreateItemData::ReFungible(data) = data {15531554 // check sizes1555 ensure!(ChainLimit::get().custom_data_limit >= data.const_data.len() as u32, Error::<T>::TokenConstDataLimitExceeded);1556 ensure!(ChainLimit::get().custom_data_limit >= data.variable_data.len() as u32, Error::<T>::TokenVariableDataLimitExceeded);1557 } else {1558 fail!(Error::<T>::NotReFungibleDataUsedToMintReFungibleCollectionToken);1559 }1560 },1561 _ => { fail!(Error::<T>::UnexpectedCollectionType); }1562 };15631564 Ok(())1565 }15661567 fn create_item_no_validation(collection_id: CollectionId, collection: &CollectionType<T::AccountId>, owner: T::AccountId, data: CreateItemData) -> DispatchResult {1568 match data1569 {1570 CreateItemData::NFT(data) => {1571 let item = NftItemType {1572 collection: collection_id,1573 owner,1574 const_data: data.const_data,1575 variable_data: data.variable_data1576 };15771578 Self::add_nft_item(item)?;1579 },1580 CreateItemData::Fungible(_) => {1581 let item = FungibleItemType {1582 collection: collection_id,1583 owner,1584 value: (10 as u128).pow(collection.decimal_points as u32)1585 };15861587 Self::add_fungible_item(item)?;1588 },1589 CreateItemData::ReFungible(data) => {1590 let mut owner_list = Vec::new();1591 let value = (10 as u128).pow(collection.decimal_points as u32);1592 owner_list.push(Ownership {owner: owner.clone(), fraction: value});15931594 let item = ReFungibleItemType {1595 collection: collection_id,1596 owner: owner_list,1597 const_data: data.const_data,1598 variable_data: data.variable_data1599 };16001601 Self::add_refungible_item(item)?;1602 }1603 };16041605 // call event1606 Self::deposit_event(RawEvent::ItemCreated(collection_id, <ItemListIndex>::get(collection_id)));16071608 Ok(())1609 }16101611 fn add_fungible_item(item: FungibleItemType<T::AccountId>) -> DispatchResult {1612 let current_index = <ItemListIndex>::get(item.collection)1613 .checked_add(1)1614 .ok_or(Error::<T>::NumOverflow)?;1615 let itemcopy = item.clone();1616 let owner = item.owner.clone();16171618 Self::add_token_index(item.collection, current_index, owner.clone())?;16191620 <ItemListIndex>::insert(item.collection, current_index);1621 <FungibleItemList<T>>::insert(item.collection, current_index, itemcopy);16221623 // Add current block1624 let v: Vec<BasketItem<T::AccountId, T::BlockNumber>> = Vec::new();1625 <FungibleTransferBasket<T>>::insert(item.collection, current_index, v);1626 1627 // Update balance1628 let new_balance = <Balance<T>>::get(item.collection, owner.clone())1629 .checked_add(item.value)1630 .ok_or(Error::<T>::NumOverflow)?;1631 <Balance<T>>::insert(item.collection, owner.clone(), new_balance);16321633 Ok(())1634 }16351636 fn add_refungible_item(item: ReFungibleItemType<T::AccountId>) -> DispatchResult {1637 let current_index = <ItemListIndex>::get(item.collection)1638 .checked_add(1)1639 .ok_or(Error::<T>::NumOverflow)?;1640 let itemcopy = item.clone();16411642 let value = item.owner.first().unwrap().fraction;1643 let owner = item.owner.first().unwrap().owner.clone();16441645 Self::add_token_index(item.collection, current_index, owner.clone())?;16461647 <ItemListIndex>::insert(item.collection, current_index);1648 <ReFungibleItemList<T>>::insert(item.collection, current_index, itemcopy);16491650 // Add current block1651 let block_number: T::BlockNumber = 0.into();1652 <ReFungibleTransferBasket<T>>::insert(item.collection, current_index, block_number);16531654 // Update balance1655 let new_balance = <Balance<T>>::get(item.collection, owner.clone())1656 .checked_add(value)1657 .ok_or(Error::<T>::NumOverflow)?;1658 <Balance<T>>::insert(item.collection, owner.clone(), new_balance);16591660 Ok(())1661 }16621663 fn add_nft_item(item: NftItemType<T::AccountId>) -> DispatchResult {1664 let current_index = <ItemListIndex>::get(item.collection)1665 .checked_add(1)1666 .ok_or(Error::<T>::NumOverflow)?;16671668 let item_owner = item.owner.clone();1669 let collection_id = item.collection.clone();1670 Self::add_token_index(collection_id, current_index, item.owner.clone())?;16711672 <ItemListIndex>::insert(collection_id, current_index);1673 <NftItemList<T>>::insert(collection_id, current_index, item);16741675 // Add current block1676 let block_number: T::BlockNumber = 0.into();1677 <NftTransferBasket<T>>::insert(collection_id, current_index, block_number);16781679 // Update balance1680 let new_balance = <Balance<T>>::get(collection_id, item_owner.clone())1681 .checked_add(1)1682 .ok_or(Error::<T>::NumOverflow)?;1683 <Balance<T>>::insert(collection_id, item_owner.clone(), new_balance);16841685 Ok(())1686 }16871688 fn burn_refungible_item(1689 collection_id: CollectionId,1690 item_id: TokenId,1691 owner: T::AccountId,1692 ) -> DispatchResult {1693 ensure!(1694 <ReFungibleItemList<T>>::contains_key(collection_id, item_id),1695 Error::<T>::TokenNotFound1696 );1697 let collection = <ReFungibleItemList<T>>::get(collection_id, item_id);1698 let item = collection1699 .owner1700 .iter()1701 .filter(|&i| i.owner == owner)1702 .next()1703 .unwrap();1704 Self::remove_token_index(collection_id, item_id, owner.clone())?;17051706 // remove approve list1707 <ApprovedList<T>>::remove(collection_id, (item_id, owner.clone()));17081709 // update balance1710 let new_balance = <Balance<T>>::get(collection_id, item.owner.clone())1711 .checked_sub(item.fraction)1712 .ok_or(Error::<T>::NumOverflow)?;1713 <Balance<T>>::insert(collection_id, item.owner.clone(), new_balance);17141715 <ReFungibleItemList<T>>::remove(collection_id, item_id);17161717 Ok(())1718 }17191720 fn burn_nft_item(collection_id: CollectionId, item_id: TokenId) -> DispatchResult {1721 ensure!(1722 <NftItemList<T>>::contains_key(collection_id, item_id),1723 Error::<T>::TokenNotFound1724 );1725 let item = <NftItemList<T>>::get(collection_id, item_id);1726 Self::remove_token_index(collection_id, item_id, item.owner.clone())?;17271728 // remove approve list1729 <ApprovedList<T>>::remove(collection_id, (item_id, item.owner.clone()));17301731 // update balance1732 let new_balance = <Balance<T>>::get(collection_id, item.owner.clone())1733 .checked_sub(1)1734 .ok_or(Error::<T>::NumOverflow)?;1735 <Balance<T>>::insert(collection_id, item.owner.clone(), new_balance);1736 <NftItemList<T>>::remove(collection_id, item_id);17371738 Ok(())1739 }17401741 fn burn_fungible_item(collection_id: CollectionId, item_id: TokenId) -> DispatchResult {1742 ensure!(1743 <FungibleItemList<T>>::contains_key(collection_id, item_id),1744 Error::<T>::TokenNotFound1745 );1746 let item = <FungibleItemList<T>>::get(collection_id, item_id);1747 Self::remove_token_index(collection_id, item_id, item.owner.clone())?;17481749 // remove approve list1750 <ApprovedList<T>>::remove(collection_id, (item_id, item.owner.clone()));17511752 // update balance1753 let new_balance = <Balance<T>>::get(collection_id, item.owner.clone())1754 .checked_sub(item.value)1755 .ok_or(Error::<T>::NumOverflow)?;1756 <Balance<T>>::insert(collection_id, item.owner.clone(), new_balance);17571758 <FungibleItemList<T>>::remove(collection_id, item_id);17591760 Ok(())1761 }17621763 fn collection_exists(collection_id: CollectionId) -> DispatchResult {1764 ensure!(1765 <Collection<T>>::contains_key(collection_id),1766 Error::<T>::CollectionNotFound1767 );1768 Ok(())1769 }17701771 fn check_owner_permissions(collection_id: CollectionId, subject: T::AccountId) -> DispatchResult {1772 Self::collection_exists(collection_id)?;17731774 let target_collection = <Collection<T>>::get(collection_id);1775 ensure!(1776 subject == target_collection.owner,1777 Error::<T>::NoPermission1778 );17791780 Ok(())1781 }17821783 fn is_owner_or_admin_permissions(collection_id: CollectionId, subject: T::AccountId) -> bool {1784 let target_collection = <Collection<T>>::get(collection_id);1785 let mut result: bool = subject == target_collection.owner;1786 let exists = <AdminList<T>>::contains_key(collection_id);17871788 if !result & exists {1789 if <AdminList<T>>::get(collection_id).contains(&subject) {1790 result = true1791 }1792 }17931794 result1795 }17961797 fn check_owner_or_admin_permissions(1798 collection_id: CollectionId,1799 subject: T::AccountId,1800 ) -> DispatchResult {1801 Self::collection_exists(collection_id)?;1802 let result = Self::is_owner_or_admin_permissions(collection_id, subject.clone());18031804 ensure!(1805 result,1806 Error::<T>::NoPermission1807 );1808 Ok(())1809 }18101811 fn is_item_owner(subject: T::AccountId, collection_id: CollectionId, item_id: TokenId) -> bool {1812 let target_collection = <Collection<T>>::get(collection_id);18131814 match target_collection.mode {1815 CollectionMode::NFT => {1816 <NftItemList<T>>::get(collection_id, item_id).owner == subject1817 }1818 CollectionMode::Fungible(_) => {1819 <FungibleItemList<T>>::get(collection_id, item_id).owner == subject1820 }1821 CollectionMode::ReFungible(_) => {1822 <ReFungibleItemList<T>>::get(collection_id, item_id)1823 .owner1824 .iter()1825 .any(|i| i.owner == subject)1826 }1827 CollectionMode::Invalid => false,1828 }1829 }18301831 fn check_white_list(collection_id: CollectionId, address: &T::AccountId) -> DispatchResult {1832 let mes = Error::<T>::AddresNotInWhiteList;1833 ensure!(<WhiteList<T>>::contains_key(collection_id), mes);1834 let wl = <WhiteList<T>>::get(collection_id);1835 ensure!(wl.contains(address), mes);18361837 Ok(())1838 }18391840 fn transfer_fungible(1841 collection_id: CollectionId,1842 item_id: TokenId,1843 value: u128,1844 owner: T::AccountId,1845 new_owner: T::AccountId,1846 ) -> DispatchResult {1847 ensure!(1848 <FungibleItemList<T>>::contains_key(collection_id, item_id),1849 Error::<T>::TokenNotFound1850 );18511852 let full_item = <FungibleItemList<T>>::get(collection_id, item_id);1853 let amount = full_item.value;18541855 ensure!(amount >= value, Error::<T>::TokenValueTooLow);18561857 // update balance1858 let balance_old_owner = <Balance<T>>::get(collection_id, owner.clone())1859 .checked_sub(value)1860 .ok_or(Error::<T>::NumOverflow)?;1861 <Balance<T>>::insert(collection_id, owner.clone(), balance_old_owner);18621863 let mut new_owner_account_id = 0;1864 let new_owner_items = <AddressTokens<T>>::get(collection_id, new_owner.clone());1865 if new_owner_items.len() > 0 {1866 new_owner_account_id = new_owner_items[0];1867 }18681869 // transfer1870 if amount == value && new_owner_account_id == 0 {1871 // change owner1872 // new owner do not have account1873 let mut new_full_item = full_item.clone();1874 new_full_item.owner = new_owner.clone();1875 <FungibleItemList<T>>::insert(collection_id, item_id, new_full_item);18761877 // update balance1878 let balance_new_owner = <Balance<T>>::get(collection_id, new_owner.clone())1879 .checked_add(value)1880 .ok_or(Error::<T>::NumOverflow)?;1881 <Balance<T>>::insert(collection_id, new_owner.clone(), balance_new_owner);18821883 // update index collection1884 Self::move_token_index(collection_id, item_id, owner.clone(), new_owner.clone())?;1885 } else {1886 let mut new_full_item = full_item.clone();1887 new_full_item.value -= value;18881889 // separate amount1890 if new_owner_account_id > 0 {1891 // new owner has account1892 let mut item = <FungibleItemList<T>>::get(collection_id, new_owner_account_id);1893 item.value += value;18941895 // update balance1896 let balance_new_owner = <Balance<T>>::get(collection_id, new_owner.clone())1897 .checked_add(value)1898 .ok_or(Error::<T>::NumOverflow)?;1899 <Balance<T>>::insert(collection_id, new_owner.clone(), balance_new_owner);19001901 <FungibleItemList<T>>::insert(collection_id, new_owner_account_id, item);1902 } else {1903 // new owner do not have account1904 let item = FungibleItemType {1905 collection: collection_id,1906 owner: new_owner.clone(),1907 value1908 };19091910 Self::add_fungible_item(item)?;1911 }19121913 if amount == value {1914 Self::remove_token_index(collection_id, item_id, full_item.owner.clone())?;19151916 // remove approve list1917 <ApprovedList<T>>::remove(collection_id, (item_id, full_item.owner.clone()));1918 <FungibleItemList<T>>::remove(collection_id, item_id);1919 }19201921 <FungibleItemList<T>>::insert(collection_id, item_id, new_full_item);1922 }19231924 Ok(())1925 }19261927 fn transfer_refungible(1928 collection_id: CollectionId,1929 item_id: TokenId,1930 value: u128,1931 owner: T::AccountId,1932 new_owner: T::AccountId,1933 ) -> DispatchResult {1934 ensure!(1935 <ReFungibleItemList<T>>::contains_key(collection_id, item_id),1936 Error::<T>::TokenNotFound1937 );19381939 let full_item = <ReFungibleItemList<T>>::get(collection_id, item_id);1940 let item = full_item1941 .owner1942 .iter()1943 .filter(|i| i.owner == owner)1944 .next()1945 .ok_or(Error::<T>::NumOverflow)?;1946 let amount = item.fraction;19471948 ensure!(amount >= value, Error::<T>::TokenValueTooLow);19491950 // update balance1951 let balance_old_owner = <Balance<T>>::get(collection_id, item.owner.clone())1952 .checked_sub(value)1953 .ok_or(Error::<T>::NumOverflow)?;1954 <Balance<T>>::insert(collection_id, item.owner.clone(), balance_old_owner);19551956 let balance_new_owner = <Balance<T>>::get(collection_id, new_owner.clone())1957 .checked_add(value)1958 .ok_or(Error::<T>::NumOverflow)?;1959 <Balance<T>>::insert(collection_id, new_owner.clone(), balance_new_owner);19601961 let old_owner = item.owner.clone();1962 let new_owner_has_account = full_item.owner.iter().any(|i| i.owner == new_owner);19631964 // transfer1965 if amount == value && !new_owner_has_account {1966 // change owner1967 // new owner do not have account1968 let mut new_full_item = full_item.clone();1969 new_full_item1970 .owner1971 .iter_mut()1972 .find(|i| i.owner == owner)1973 .unwrap()1974 .owner = new_owner.clone();1975 <ReFungibleItemList<T>>::insert(collection_id, item_id, new_full_item);19761977 // update index collection1978 Self::move_token_index(collection_id, item_id, old_owner.clone(), new_owner.clone())?;1979 } else {1980 let mut new_full_item = full_item.clone();1981 new_full_item1982 .owner1983 .iter_mut()1984 .find(|i| i.owner == owner)1985 .unwrap()1986 .fraction -= value;19871988 // separate amount1989 if new_owner_has_account {1990 // new owner has account1991 new_full_item1992 .owner1993 .iter_mut()1994 .find(|i| i.owner == new_owner)1995 .unwrap()1996 .fraction += value;1997 } else {1998 // new owner do not have account1999 new_full_item.owner.push(Ownership {2000 owner: new_owner.clone(),2001 fraction: value,2002 });2003 Self::add_token_index(collection_id, item_id, new_owner.clone())?;2004 }20052006 <ReFungibleItemList<T>>::insert(collection_id, item_id, new_full_item);2007 }20082009 Ok(())2010 }20112012 fn transfer_nft(2013 collection_id: CollectionId,2014 item_id: TokenId,2015 sender: T::AccountId,2016 new_owner: T::AccountId,2017 ) -> DispatchResult {2018 ensure!(2019 <NftItemList<T>>::contains_key(collection_id, item_id),2020 Error::<T>::TokenNotFound2021 );20222023 let mut item = <NftItemList<T>>::get(collection_id, item_id);20242025 ensure!(2026 sender == item.owner,2027 Error::<T>::MustBeTokenOwner2028 );20292030 // update balance2031 let balance_old_owner = <Balance<T>>::get(collection_id, item.owner.clone())2032 .checked_sub(1)2033 .ok_or(Error::<T>::NumOverflow)?;2034 <Balance<T>>::insert(collection_id, item.owner.clone(), balance_old_owner);20352036 let balance_new_owner = <Balance<T>>::get(collection_id, new_owner.clone())2037 .checked_add(1)2038 .ok_or(Error::<T>::NumOverflow)?;2039 <Balance<T>>::insert(collection_id, new_owner.clone(), balance_new_owner);20402041 // change owner2042 let old_owner = item.owner.clone();2043 item.owner = new_owner.clone();2044 <NftItemList<T>>::insert(collection_id, item_id, item);20452046 // update index collection2047 Self::move_token_index(collection_id, item_id, old_owner.clone(), new_owner.clone())?;20482049 // reset approved list2050 <ApprovedList<T>>::remove(collection_id, (item_id, old_owner));2051 Ok(())2052 }2053 2054 fn item_exists(2055 collection_id: CollectionId,2056 item_id: TokenId,2057 mode: &CollectionMode2058 ) -> DispatchResult {2059 match mode {2060 CollectionMode::NFT => ensure!(<NftItemList<T>>::contains_key(collection_id, item_id), Error::<T>::TokenNotFound),2061 CollectionMode::ReFungible(_) => ensure!(<ReFungibleItemList<T>>::contains_key(collection_id, item_id), Error::<T>::TokenNotFound),2062 CollectionMode::Fungible(_) => ensure!(<FungibleItemList<T>>::contains_key(collection_id, item_id), Error::<T>::TokenNotFound),2063 _ => ()2064 };2065 2066 Ok(())2067 }20682069 fn set_re_fungible_variable_data(2070 collection_id: CollectionId,2071 item_id: TokenId,2072 data: Vec<u8>2073 ) -> DispatchResult {2074 let mut item = <ReFungibleItemList<T>>::get(collection_id, item_id);20752076 item.variable_data = data;20772078 <ReFungibleItemList<T>>::insert(collection_id, item_id, item);20792080 Ok(())2081 }20822083 fn set_nft_variable_data(2084 collection_id: CollectionId,2085 item_id: TokenId,2086 data: Vec<u8>2087 ) -> DispatchResult {2088 let mut item = <NftItemList<T>>::get(collection_id, item_id);2089 2090 item.variable_data = data;20912092 <NftItemList<T>>::insert(collection_id, item_id, item);2093 2094 Ok(())2095 }20962097 fn init_collection(item: &CollectionType<T::AccountId>) {2098 // check params2099 assert!(2100 item.decimal_points <= MAX_DECIMAL_POINTS,2101 "decimal_points parameter must be lower than MAX_DECIMAL_POINTS"2102 );2103 assert!(2104 item.name.len() <= 64,2105 "Collection name can not be longer than 63 char"2106 );2107 assert!(2108 item.name.len() <= 256,2109 "Collection description can not be longer than 255 char"2110 );2111 assert!(2112 item.token_prefix.len() <= 16,2113 "Token prefix can not be longer than 15 char"2114 );21152116 // Generate next collection ID2117 let next_id = CreatedCollectionCount::get()2118 .checked_add(1)2119 .unwrap();21202121 CreatedCollectionCount::put(next_id);2122 }21232124 fn init_nft_token(item: &NftItemType<T::AccountId>) {2125 let current_index = <ItemListIndex>::get(item.collection)2126 .checked_add(1)2127 .unwrap();21282129 let item_owner = item.owner.clone();2130 let collection_id = item.collection.clone();2131 Self::add_token_index(collection_id, current_index, item.owner.clone()).unwrap();21322133 <ItemListIndex>::insert(collection_id, current_index);21342135 // Update balance2136 let new_balance = <Balance<T>>::get(collection_id, item_owner.clone())2137 .checked_add(1)2138 .unwrap();2139 <Balance<T>>::insert(collection_id, item_owner.clone(), new_balance);2140 }21412142 fn init_fungible_token(item: &FungibleItemType<T::AccountId>) {2143 let current_index = <ItemListIndex>::get(item.collection)2144 .checked_add(1)2145 .unwrap();2146 let owner = item.owner.clone();21472148 Self::add_token_index(item.collection, current_index, owner.clone()).unwrap();21492150 <ItemListIndex>::insert(item.collection, current_index);21512152 // Update balance2153 let new_balance = <Balance<T>>::get(item.collection, owner.clone())2154 .checked_add(item.value)2155 .unwrap();2156 <Balance<T>>::insert(item.collection, owner.clone(), new_balance);2157 }21582159 fn init_refungible_token(item: &ReFungibleItemType<T::AccountId>) {2160 let current_index = <ItemListIndex>::get(item.collection)2161 .checked_add(1)2162 .unwrap();21632164 let value = item.owner.first().unwrap().fraction;2165 let owner = item.owner.first().unwrap().owner.clone();21662167 Self::add_token_index(item.collection, current_index, owner.clone()).unwrap();21682169 <ItemListIndex>::insert(item.collection, current_index);21702171 // Update balance2172 let new_balance = <Balance<T>>::get(item.collection, owner.clone())2173 .checked_add(value)2174 .unwrap();2175 <Balance<T>>::insert(item.collection, owner.clone(), new_balance);2176 }21772178 fn add_token_index(collection_id: CollectionId, item_index: TokenId, owner: T::AccountId) -> DispatchResult {21792180 // add to account limit2181 if <AccountItemCount<T>>::contains_key(owner.clone()) {21822183 // bound Owned tokens by a single address2184 let count = <AccountItemCount<T>>::get(owner.clone());2185 ensure!(count < ChainLimit::get().account_token_ownership_limit, Error::<T>::AddressOwnershipLimitExceeded);21862187 <AccountItemCount<T>>::insert(owner.clone(), count2188 .checked_add(1)2189 .ok_or(Error::<T>::NumOverflow)?);2190 }2191 else {2192 <AccountItemCount<T>>::insert(owner.clone(), 1);2193 }21942195 let list_exists = <AddressTokens<T>>::contains_key(collection_id, owner.clone());2196 if list_exists {2197 let mut list = <AddressTokens<T>>::get(collection_id, owner.clone());2198 let item_contains = list.contains(&item_index.clone());21992200 if !item_contains {2201 list.push(item_index.clone());2202 }22032204 <AddressTokens<T>>::insert(collection_id, owner.clone(), list);2205 } else {2206 let mut itm = Vec::new();2207 itm.push(item_index.clone());2208 <AddressTokens<T>>::insert(collection_id, owner, itm);2209 2210 }22112212 Ok(())2213 }22142215 fn remove_token_index(2216 collection_id: CollectionId,2217 item_index: TokenId,2218 owner: T::AccountId,2219 ) -> DispatchResult {22202221 // update counter2222 <AccountItemCount<T>>::insert(owner.clone(), 2223 <AccountItemCount<T>>::get(owner.clone())2224 .checked_sub(1)2225 .ok_or(Error::<T>::NumOverflow)?);222622272228 let list_exists = <AddressTokens<T>>::contains_key(collection_id, owner.clone());2229 if list_exists {2230 let mut list = <AddressTokens<T>>::get(collection_id, owner.clone());2231 let item_contains = list.contains(&item_index.clone());22322233 if item_contains {2234 list.retain(|&item| item != item_index);2235 <AddressTokens<T>>::insert(collection_id, owner, list);2236 }2237 }22382239 Ok(())2240 }22412242 fn move_token_index(2243 collection_id: CollectionId,2244 item_index: TokenId,2245 old_owner: T::AccountId,2246 new_owner: T::AccountId,2247 ) -> DispatchResult {2248 Self::remove_token_index(collection_id, item_index, old_owner)?;2249 Self::add_token_index(collection_id, item_index, new_owner)?;22502251 Ok(())2252 }2253}22542255////////////////////////////////////////////////////////////////////////////////////////////////////2256// Economic models2257// #region22582259/// Fee multiplier.2260pub type Multiplier = FixedU128;22612262type BalanceOf<T> = <<T as transaction_payment::Trait>::Currency as Currency<2263 <T as system::Trait>::AccountId,2264>>::Balance;2265type NegativeImbalanceOf<T> = <<T as transaction_payment::Trait>::Currency as Currency<2266 <T as system::Trait>::AccountId,2267>>::NegativeImbalance;22682269/// Require the transactor pay for themselves and maybe include a tip to gain additional priority2270/// in the queue.2271#[derive(Encode, Decode, Clone, Eq, PartialEq)]2272pub struct ChargeTransactionPayment<T: Trait + Send + Sync>(2273 #[codec(compact)] BalanceOf<T>2274);22752276impl<T: Trait + Send + Sync> sp_std::fmt::Debug2277 for ChargeTransactionPayment<T>2278{2279 #[cfg(feature = "std")]2280 fn fmt(&self, f: &mut sp_std::fmt::Formatter) -> sp_std::fmt::Result {2281 write!(f, "ChargeTransactionPayment<{:?}>", self.0)2282 }2283 #[cfg(not(feature = "std"))]2284 fn fmt(&self, _: &mut sp_std::fmt::Formatter) -> sp_std::fmt::Result {2285 Ok(())2286 }2287}22882289impl<T: Trait + Send + Sync> ChargeTransactionPayment<T>2290where2291 T::Call: Dispatchable<Info = DispatchInfo, PostInfo = PostDispatchInfo> + IsSubType<Call<T>> + IsSubType<pallet_contracts::Call<T>>,2292 BalanceOf<T>: Send + Sync + FixedPointOperand,2293{2294 /// utility constructor. Used only in client/factory code.2295 pub fn from(fee: BalanceOf<T>) -> Self {2296 Self(fee)2297 }22982299 pub fn traditional_fee(2300 len: usize,2301 info: &DispatchInfoOf<T::Call>,2302 tip: BalanceOf<T>,2303 ) -> BalanceOf<T>2304 where2305 T::Call: Dispatchable<Info = DispatchInfo>,2306 {2307 <transaction_payment::Module<T>>::compute_fee(len as u32, info, tip)2308 }23092310 fn get_priority(len: usize, info: &DispatchInfoOf<T::Call>, final_fee: BalanceOf<T>) -> TransactionPriority {2311 let weight_saturation = T::MaximumBlockWeight::get() / info.weight.max(1);2312 let len_saturation = T::MaximumBlockLength::get() as u64 / (len as u64).max(1);2313 let coefficient: BalanceOf<T> = weight_saturation.min(len_saturation).saturated_into::<BalanceOf<T>>();2314 final_fee.saturating_mul(coefficient).saturated_into::<TransactionPriority>()2315 }23162317 fn withdraw_fee(2318 &self,2319 who: &T::AccountId,2320 call: &T::Call,2321 info: &DispatchInfoOf<T::Call>,2322 len: usize,2323 ) -> Result<(BalanceOf<T>, Option<NegativeImbalanceOf<T>>), TransactionValidityError> {2324 let tip = self.0;23252326 // Set fee based on call type. Creating collection costs 1 Unique.2327 // All other transactions have traditional fees so far2328 // let fee = match call.is_sub_type() {2329 // Some(Call::create_collection(..)) => <BalanceOf<T>>::from(1_000_000_000),2330 // _ => Self::traditional_fee(len, info, tip), // Flat fee model, use only for testing purposes2331 // // _ => <BalanceOf<T>>::from(100)2332 // };2333 let fee = Self::traditional_fee(len, info, tip);23342335 // Determine who is paying transaction fee based on ecnomic model2336 // Parse call to extract collection ID and access collection sponsor2337 let mut sponsor: T::AccountId = match IsSubType::<Call<T>>::is_sub_type(call) {2338 Some(Call::create_item(collection_id, _owner, _properties)) => {23392340 // check free create limit2341 if <Collection<T>>::get(collection_id).limits.sponsored_data_size >= (_properties.len() as u32)2342 {2343 <Collection<T>>::get(collection_id).sponsor2344 } else {2345 T::AccountId::default()2346 }2347 }2348 Some(Call::transfer(_new_owner, collection_id, _item_id, _value)) => {2349 2350 let _collection_limits = <Collection<T>>::get(collection_id).limits;2351 let _collection_mode = <Collection<T>>::get(collection_id).mode;23522353 // sponsor timeout2354 let sponsor_transfer = match _collection_mode {2355 CollectionMode::NFT => {23562357 // get correct limit2358 let limit: u32 = if _collection_limits.sponsor_transfer_timeout > 0 {2359 _collection_limits.sponsor_transfer_timeout2360 } else {2361 ChainLimit::get().nft_sponsor_transfer_timeout2362 };23632364 let basket = <NftTransferBasket<T>>::get(collection_id, _item_id);2365 let block_number = <system::Module<T>>::block_number() as T::BlockNumber;2366 let limit_time = basket + limit.into();2367 if block_number >= limit_time {2368 <NftTransferBasket<T>>::insert(collection_id, _item_id, block_number);2369 true2370 }2371 else {2372 false2373 }2374 }2375 CollectionMode::Fungible(_) => {23762377 // get correct limit2378 let limit: u32 = if _collection_limits.sponsor_transfer_timeout > 0 {2379 _collection_limits.sponsor_transfer_timeout2380 } else {2381 ChainLimit::get().fungible_sponsor_transfer_timeout2382 };23832384 let mut basket = <FungibleTransferBasket<T>>::get(collection_id, _item_id);2385 let block_number = <system::Module<T>>::block_number() as T::BlockNumber;2386 if basket.iter().any(|i| i.address == _new_owner.clone())2387 {2388 let item = basket.iter_mut().find(|i| i.address == _new_owner.clone()).unwrap().clone();2389 let limit_time = item.start_block + limit.into();2390 if block_number >= limit_time {2391 basket.retain(|x| x.address == item.address);2392 basket.push(BasketItem { start_block: block_number, address: _new_owner.clone() });2393 <FungibleTransferBasket<T>>::insert(collection_id, _item_id, basket);2394 true2395 }2396 else {2397 false2398 }2399 }2400 else {2401 basket.push(BasketItem { start_block: block_number, address: _new_owner.clone()});2402 true2403 }2404 }2405 CollectionMode::ReFungible(_) => {24062407 // get correct limit2408 let limit: u32 = if _collection_limits.sponsor_transfer_timeout > 0 {2409 _collection_limits.sponsor_transfer_timeout2410 } else {2411 ChainLimit::get().refungible_sponsor_transfer_timeout2412 };24132414 let basket = <ReFungibleTransferBasket<T>>::get(collection_id, _item_id);2415 let block_number = <system::Module<T>>::block_number() as T::BlockNumber;2416 let limit_time = basket + limit.into();2417 if block_number >= limit_time {2418 <ReFungibleTransferBasket<T>>::insert(collection_id, _item_id, block_number);2419 true2420 } else {2421 false2422 }2423 }2424 _ => {2425 false2426 },2427 };24282429 if !sponsor_transfer {2430 T::AccountId::default()2431 } else {2432 <Collection<T>>::get(collection_id).sponsor2433 }2434 }24352436 _ => T::AccountId::default(),2437 };24382439 // Sponsor smart contracts2440 sponsor = match IsSubType::<pallet_contracts::Call<T>>::is_sub_type(call) {24412442 // On instantiation: set the contract owner2443 Some(pallet_contracts::Call::instantiate(_endowment, _gas_limit, code_hash, data)) => {24442445 let new_contract_address = <T as pallet_contracts::Trait>::DetermineContractAddress::contract_address_for(2446 code_hash,2447 &data,2448 &who,2449 );2450 <ContractOwner<T>>::insert(new_contract_address.clone(), who.clone());24512452 T::AccountId::default()2453 },24542455 // When the contract is called, check if the sponsoring is enabled and pay fees from contract endowment if it is2456 Some(pallet_contracts::Call::call(dest, _value, _gas_limit, _data)) => {24572458 let called_contract: T::AccountId = T::Lookup::lookup((*dest).clone()).unwrap_or(T::AccountId::default());24592460 let mut sponsor_transfer = false;2461 if <ContractSponsoringRateLimit<T>>::contains_key(called_contract.clone()) {2462 let last_tx_block = <ContractSponsorBasket<T>>::get((&called_contract, &who));2463 let block_number = <system::Module<T>>::block_number() as T::BlockNumber;2464 let rate_limit = <ContractSponsoringRateLimit<T>>::get(&called_contract);2465 let limit_time = last_tx_block + rate_limit;24662467 if block_number >= limit_time {2468 <ContractSponsorBasket<T>>::insert((called_contract.clone(), who.clone()), block_number);2469 sponsor_transfer = true;2470 }2471 } else {2472 sponsor_transfer = false;2473 }2474 2475 2476 let mut sp = T::AccountId::default();2477 if sponsor_transfer {2478 if <ContractSelfSponsoring<T>>::contains_key(called_contract.clone()) {2479 if <ContractSelfSponsoring<T>>::get(called_contract.clone()) {2480 sp = called_contract;2481 }2482 }2483 }24842485 sp2486 },24872488 _ => sponsor,2489 };24902491 let mut who_pays_fee: T::AccountId = sponsor.clone();2492 if sponsor == T::AccountId::default() {2493 who_pays_fee = who.clone();2494 }24952496 // Only mess with balances if fee is not zero.2497 if fee.is_zero() {2498 return Ok((fee, None));2499 }25002501 match <T as transaction_payment::Trait>::Currency::withdraw(2502 &who_pays_fee,2503 fee,2504 if tip.is_zero() {2505 WithdrawReason::TransactionPayment.into()2506 } else {2507 WithdrawReason::TransactionPayment | WithdrawReason::Tip2508 },2509 ExistenceRequirement::KeepAlive,2510 ) {2511 Ok(imbalance) => Ok((fee, Some(imbalance))),2512 Err(_) => Err(InvalidTransaction::Payment.into()),2513 }2514 }2515}251625172518impl<T: Trait + Send + Sync> SignedExtension2519 for ChargeTransactionPayment<T>2520where2521 BalanceOf<T>: Send + Sync + From<u64> + FixedPointOperand,2522 T::Call: Dispatchable<Info = DispatchInfo, PostInfo = PostDispatchInfo> + IsSubType<Call<T>> + IsSubType<pallet_contracts::Call<T>>,2523{2524 const IDENTIFIER: &'static str = "ChargeTransactionPayment";2525 type AccountId = T::AccountId;2526 type Call = T::Call;2527 type AdditionalSigned = ();2528 type Pre = (2529 BalanceOf<T>,2530 Self::AccountId,2531 Option<NegativeImbalanceOf<T>>,2532 BalanceOf<T>,2533 );2534 fn additional_signed(&self) -> sp_std::result::Result<(), TransactionValidityError> {2535 Ok(())2536 }25372538 fn validate(2539 &self,2540 who: &Self::AccountId,2541 call: &Self::Call,2542 info: &DispatchInfoOf<Self::Call>,2543 len: usize,2544 ) -> TransactionValidity {2545 let (fee, _) = self.withdraw_fee(who, call, info, len)?;2546 Ok(ValidTransaction {2547 priority: Self::get_priority(len, info, fee),2548 ..Default::default()2549 })2550 }25512552 fn pre_dispatch(2553 self,2554 who: &Self::AccountId,2555 call: &Self::Call,2556 info: &DispatchInfoOf<Self::Call>,2557 len: usize,2558 ) -> Result<Self::Pre, TransactionValidityError> {2559 let (fee, imbalance) = self.withdraw_fee(who, call, info, len)?;2560 Ok((self.0, who.clone(), imbalance, fee))2561 }25622563 fn post_dispatch(2564 pre: Self::Pre,2565 info: &DispatchInfoOf<Self::Call>,2566 post_info: &PostDispatchInfoOf<Self::Call>,2567 len: usize,2568 _result: &DispatchResult,2569 ) -> Result<(), TransactionValidityError> {2570 let (tip, who, imbalance, fee) = pre;2571 if let Some(payed) = imbalance {2572 let actual_fee = <transaction_payment::Module<T>>::compute_actual_fee(2573 len as u32, info, post_info, tip,2574 );2575 let refund = fee.saturating_sub(actual_fee);2576 let actual_payment =2577 match <T as transaction_payment::Trait>::Currency::deposit_into_existing(2578 &who, refund,2579 ) {2580 Ok(refund_imbalance) => {2581 // The refund cannot be larger than the up front payed max weight.2582 // `PostDispatchInfo::calc_unspent` guards against such a case.2583 match payed.offset(refund_imbalance) {2584 Ok(actual_payment) => actual_payment,2585 Err(_) => return Err(InvalidTransaction::Payment.into()),2586 }2587 }2588 // We do not recreate the account using the refund. The up front payment2589 // is gone in that case.2590 Err(_) => payed,2591 };2592 let imbalances = actual_payment.split(tip);2593 <T as transaction_payment::Trait>::OnTransactionPayment::on_unbalanceds(2594 Some(imbalances.0).into_iter().chain(Some(imbalances.1)),2595 );2596 }2597 Ok(())2598 }2599}26002601// #endregionruntime/Cargo.tomldiffbeforeafterboth--- a/runtime/Cargo.toml
+++ b/runtime/Cargo.toml
@@ -45,6 +45,8 @@
pallet-timestamp = { default-features = false, version = '2.0.0' , git = 'https://github.com/usetech-llc/substrate.git', branch = 'release_flexi' }
pallet-transaction-payment = { default-features = false, version = '2.0.0' , git = 'https://github.com/usetech-llc/substrate.git', branch = 'release_flexi' }
pallet-transaction-payment-rpc-runtime-api = { default-features = false, version = '2.0.0' , git = 'https://github.com/usetech-llc/substrate.git', branch = 'release_flexi' }
+pallet-treasury = { version = "2.0.0", default-features = false, git = 'https://github.com/usetech-llc/substrate.git', branch = 'release_flexi' }
+pallet-vesting = { version = "2.0.0", default-features = false, git = 'https://github.com/usetech-llc/substrate.git', branch = 'release_flexi' }
sp-api = { default-features = false, version = '2.0.0' , git = 'https://github.com/usetech-llc/substrate.git', branch = 'release_flexi' }
sp-block-builder = { default-features = false, version = '2.0.0' , git = 'https://github.com/usetech-llc/substrate.git', branch = 'release_flexi' }
sp-consensus-aura = { default-features = false, version = '0.8.0' , git = 'https://github.com/usetech-llc/substrate.git', branch = 'release_flexi' }
@@ -56,8 +58,6 @@
sp-std = { default-features = false, version = '2.0.0' , git = 'https://github.com/usetech-llc/substrate.git', branch = 'release_flexi' }
sp-transaction-pool = { default-features = false, version = '2.0.0' , git = 'https://github.com/usetech-llc/substrate.git', branch = 'release_flexi' }
sp-version = { default-features = false, version = '2.0.0' , git = 'https://github.com/usetech-llc/substrate.git', branch = 'release_flexi' }
-
-pallet-treasury = { version = "2.0.0", default-features = false, git = 'https://github.com/usetech-llc/substrate.git', branch = 'release_flexi' }
[features]
default = ['std']
@@ -90,6 +90,9 @@
'pallet-timestamp/std',
'pallet-transaction-payment/std',
'pallet-transaction-payment-rpc-runtime-api/std',
+ 'pallet-treasury/std',
+ 'pallet-vesting/std',
+
'pallet-nft/std',
'sp-api/std',
'sp-block-builder/std',
@@ -103,5 +106,4 @@
'sp-transaction-pool/std',
'sp-version/std',
- 'pallet-treasury/std',
]
runtime/src/lib.rsdiffbeforeafterboth--- a/runtime/src/lib.rs
+++ b/runtime/src/lib.rs
@@ -1,3 +1,8 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
//! The Substrate Node Template runtime. This can be compiled with `#[no_std]`, ready for Wasm.
#![cfg_attr(not(feature = "std"), no_std)]
@@ -17,7 +22,7 @@
use sp_runtime::{
create_runtime_str, generic, impl_opaque_keys,
traits::{
- Convert, BlakeTwo256, Block as BlockT, IdentifyAccount,
+ Convert, ConvertInto, BlakeTwo256, Block as BlockT, IdentifyAccount,
IdentityLookup, NumberFor, Saturating, Verify,
},
transaction_validity::{TransactionSource, TransactionValidity},
@@ -412,6 +417,18 @@
type Call = Call;
}
+parameter_types! {
+ pub const MinVestedTransfer: Balance = 100 * DOLLARS;
+}
+
+impl pallet_vesting::Trait for Runtime {
+ type Event = Event;
+ type Currency = Balances;
+ type BlockNumberToBalance = ConvertInto;
+ type MinVestedTransfer = MinVestedTransfer;
+ type WeightInfo = ();
+}
+
/// Used for the module nft in `./nft.rs`
impl pallet_nft::Trait for Runtime {
type Event = Event;
@@ -435,6 +452,7 @@
Sudo: pallet_sudo::{Module, Call, Config<T>, Storage, Event<T>},
Nft: pallet_nft::{Module, Call, Config<T>, Storage, Event<T>},
Treasury: pallet_treasury::{Module, Call, Storage, Config, Event<T>},
+ Vesting: pallet_vesting::{Module, Call, Config<T>, Storage, Event<T>},
}
);
runtime/src/nft_weights.rsdiffbeforeafterboth--- a/runtime/src/nft_weights.rs
+++ b/runtime/src/nft_weights.rs
@@ -1,3 +1,8 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
use frame_support::weights::{Weight, constants::RocksDbWeight as DbWeight};
pub struct WeightInfo;
tests/READMEdiffbeforeafterboth--- a/tests/README
+++ /dev/null
@@ -1,12 +0,0 @@
-# Tests
-
-## How to run
-
-1. Run `npm install`.
-2. Setup a test node. You can do it using `docker-compose up -d` in parent directory.
-3. Configure tests with env variables or by editing [configuration file](src/config.ts).
-4. Run `npm run test`.
-
-## Don't run on the same node twice
-
-Some tests fail when ran on the same blockchain node twice. Either always use a new node or purge the existing one with `nft purge-chain --dev`. There is also [a script](../purge-running-node.sh) to purge and restart a node, started with docker-compose.
tests/README.mddiffbeforeafterboth--- /dev/null
+++ b/tests/README.md
@@ -0,0 +1,9 @@
+# Tests
+
+## How to run
+
+1. Run `npm install`.
+2. Setup a test node. You can do it using `docker-compose up -d` in parent directory.
+3. Optional step - configure tests with env variables or by editing [configuration file](src/config.ts).
+4. Run `npm test`.
+
tests/src/accounts.tsdiffbeforeafterboth--- a/tests/src/accounts.ts
+++ b/tests/src/accounts.ts
@@ -1,3 +1,9 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
export const bobsPublicKey = '5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty';
export const alicesPublicKey = '5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY';
export const ferdiesPublicKey = '5CiPPseXPECbkjWCa6MnjNokrgYjMqmKndv2rSnekmSK2DjL';
+export const nullPublicKey = '5C4hrfjw9DjXZTzV3MwzrrAr9P1MJhSrvWGWqi1eSuyUpnhM';
\ No newline at end of file
tests/src/blocks-production.test.tsdiffbeforeafterboth--- a/tests/src/blocks-production.test.ts
+++ b/tests/src/blocks-production.test.ts
@@ -1,8 +1,13 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
import usingApi from "./substrate/substrate-api";
import promisifySubstrate from "./substrate/promisify-substrate";
import { expect } from "chai";
-describe('Blocks Production', () => {
+describe('Blocks Production smoke test', () => {
it('Node produces new blocks', async () => {
await usingApi(async api => {
const blocksPromise = promisifySubstrate(api, () => {
tests/src/config.tsdiffbeforeafterboth--- a/tests/src/config.ts
+++ b/tests/src/config.ts
@@ -1,3 +1,8 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
import process from 'process';
const config = {
tests/src/connection.test.tsdiffbeforeafterboth--- a/tests/src/connection.test.ts
+++ b/tests/src/connection.test.ts
@@ -1,3 +1,8 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
import usingApi from "./substrate/substrate-api";
import { WsProvider } from '@polkadot/api';
import * as chai from 'chai';
@@ -7,7 +12,7 @@
const expect = chai.expect;
-describe('Connection', () => {
+describe('Connection smoke test', () => {
it('Connection can be established', async () => {
await usingApi(async api => {
const health = await api.rpc.system.health();
@@ -16,11 +21,17 @@
});
it('Cannot connect to 255.255.255.255', async () => {
+ console.log = function () {};
+ console.error = function () {};
+
const neverConnectProvider = new WsProvider('ws://255.255.255.255:9944');
await expect((async () => {
await usingApi(async api => {
const health = await api.rpc.system.health();
}, { provider: neverConnectProvider });
})()).to.be.eventually.rejected;
+
+ delete console.log;
+ delete console.error;
});
});
\ No newline at end of file
tests/src/contracts.test.tsdiffbeforeafterboth--- a/tests/src/contracts.test.ts
+++ b/tests/src/contracts.test.ts
@@ -1,13 +1,22 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
+import { ApiPromise } from "@polkadot/api";
import { expect } from "chai";
-import usingApi from "./substrate/substrate-api";
+import { default as usingApi, submitTransactionAsync } from "./substrate/substrate-api";
import fs from "fs";
import { Abi, BlueprintPromise, CodePromise } from "@polkadot/api-contract";
import { IKeyringPair } from "@polkadot/types/types";
import { Keyring } from "@polkadot/api";
import { ApiTypes, SubmittableExtrinsic } from "@polkadot/api/types";
+import { BigNumber } from 'bignumber.js';
+import { findUnusedAddress } from './util/helpers'
const value = 0;
const gasLimit = 3000n * 1000000n;
+const endowment = `1000000000000000`;
function deployBlueprint(alice: IKeyringPair, code: CodePromise): Promise<BlueprintPromise> {
return new Promise<BlueprintPromise>(async (resolve, reject) => {
@@ -25,7 +34,6 @@
function deployContract(alice: IKeyringPair, blueprint: BlueprintPromise) : Promise<any> {
return new Promise<any>(async (resolve, reject) => {
- const endowment = 1000000000000000n;
const initValue = true;
const unsub = await blueprint.tx
@@ -39,28 +47,25 @@
});
}
-function runTransaction(privateKey: IKeyringPair, extrinsic: SubmittableExtrinsic<ApiTypes>) {
- return new Promise<void>(async (resolve, reject) => {
- extrinsic.signAndSend(privateKey, async result => {
- if(!result.isInBlock) {
- return;
- }
+async function prepareDeployer(api: ApiPromise) {
+ // Find unused address
+ const deployer = await findUnusedAddress(api);
- if(result.findRecord('system', 'ExtrinsicSuccess')) {
- resolve();
- }
- else {
- reject('Failed to flip value.');
- }
- })
- });
+ // Transfer balance to it
+ const keyring = new Keyring({ type: 'sr25519' });
+ const alice = keyring.addFromUri(`//Alice`);
+ let amount = new BigNumber(endowment);
+ amount = amount.plus(1e15);
+ const tx = api.tx.balances.transfer(deployer.address, amount.toFixed());
+ await submitTransactionAsync(alice, tx);
+
+ return deployer;
}
-describe('Contracts', () => {
+describe('Contracts smoke test', () => {
it(`Can deploy smart contract Flipper, instantiate it and call it's get and flip messages.`, async () => {
await usingApi(async api => {
- const keyring = new Keyring({ type: 'sr25519' });
- const alice = keyring.addFromUri("//Alice");
+ const deployer = await prepareDeployer(api);
const wasm = fs.readFileSync('./src/flipper/flipper.wasm');
@@ -69,11 +74,11 @@
const code = new CodePromise(api, abi, wasm);
- const blueprint = await deployBlueprint(alice, code);
- const contract = (await deployContract(alice, blueprint))['contract'];
+ const blueprint = await deployBlueprint(deployer, code);
+ const contract = (await deployContract(deployer, blueprint))['contract'];
const getFlipValue = async () => {
- const result = await contract.query.get(alice.address, value, gasLimit);
+ const result = await contract.query.get(deployer.address, value, gasLimit);
if(!result.result.isSuccess) {
throw `Failed to get flipper value`;
@@ -85,7 +90,7 @@
expect(initialGetResponse).to.be.true;
const flip = contract.exec('flip', value, gasLimit);
- await runTransaction(alice, flip);
+ await submitTransactionAsync(deployer, flip);
const afterFlipGetResponse = await getFlipValue();
@@ -112,7 +117,7 @@
// const bob = new GenericAccountId(api.registry, bobsPublicKey);
// const transfer = contractInstance.exec('balance_transfer', 0, 1000000000000n, [bob, new u128(api.registry, 1000000)]);
- // await runTransaction(alicesPrivateKey, transfer);
+ // await submitTransactionAsync(alicesPrivateKey, transfer);
// const [alicesBalanceAfter, bobsBalanceAfter] = await getBalance(api, [alicesPublicKey, bobsPublicKey]);
tests/src/createCollection.test.tsdiffbeforeafterboth--- a/tests/src/createCollection.test.ts
+++ b/tests/src/createCollection.test.ts
@@ -1,3 +1,8 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
import chai from 'chai';
import chaiAsPromised from 'chai-as-promised';
import { default as usingApi } from "./substrate/substrate-api";
tests/src/createMultipleItems.test.tsdiffbeforeafterboth--- a/tests/src/createMultipleItems.test.ts
+++ b/tests/src/createMultipleItems.test.ts
@@ -1,3 +1,8 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
import { assert } from 'chai';
import { alicesPublicKey } from './accounts';
import privateKey from './substrate/privateKey';
tests/src/creditFeesToTreasury.test.tsdiffbeforeafterboth--- /dev/null
+++ b/tests/src/creditFeesToTreasury.test.ts
@@ -0,0 +1,112 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
+import chai from 'chai';
+import chaiAsPromised from 'chai-as-promised';
+import { default as usingApi, submitTransactionAsync } from "./substrate/substrate-api";
+import { alicesPublicKey, bobsPublicKey } from "./accounts";
+import privateKey from "./substrate/privateKey";
+import { BigNumber } from 'bignumber.js';
+import { createCollectionExpectSuccess, getGenericResult } from './util/helpers';
+
+chai.use(chaiAsPromised);
+const expect = chai.expect;
+
+const Treasury = "5EYCAe5ijiYfyeZ2JJCGq56LmPyNRAKzpG4QkoQkkQNB5e6Z";
+const saneMinimumFee = 0.0001;
+const saneMaximumFee = 0.01;
+
+describe('integration test: Fees must be credited to Treasury:', () => {
+ it('Total issuance does not change', async () => {
+ await usingApi(async (api) => {
+ const totalBefore = new BigNumber((await api.query.balances.totalIssuance()).toString());
+
+ const alicePrivateKey = privateKey('//Alice');
+ const amount = new BigNumber(1);
+ const transfer = api.tx.balances.transfer(bobsPublicKey, amount.toFixed());
+
+ const result = getGenericResult(await submitTransactionAsync(alicePrivateKey, transfer));
+
+ const totalAfter = new BigNumber((await api.query.balances.totalIssuance()).toString());
+
+ expect(result.success).to.be.true;
+ expect(totalAfter.toFixed()).to.be.equal(totalBefore.toFixed());
+ });
+ });
+
+ it('Sender balance decreased by fee+sent amount, Treasury balance increased by fee', async () => {
+ await usingApi(async (api) => {
+ const alicePrivateKey = privateKey('//Alice');
+ const treasuryBalanceBefore = new BigNumber((await api.query.system.account(Treasury)).data.free.toString());
+ const aliceBalanceBefore = new BigNumber((await api.query.system.account(alicesPublicKey)).data.free.toString());
+
+ const amount = new BigNumber(1);
+ const transfer = api.tx.balances.transfer(bobsPublicKey, amount.toFixed());
+ const result = getGenericResult(await submitTransactionAsync(alicePrivateKey, transfer));
+
+ const treasuryBalanceAfter = new BigNumber((await api.query.system.account(Treasury)).data.free.toString());
+ const aliceBalanceAfter = new BigNumber((await api.query.system.account(alicesPublicKey)).data.free.toString());
+ const fee = aliceBalanceBefore.minus(aliceBalanceAfter).minus(amount);
+ const treasuryIncrease = treasuryBalanceAfter.minus(treasuryBalanceBefore);
+
+ expect(result.success).to.be.true;
+ expect(treasuryIncrease.toFixed()).to.be.equal(fee.toFixed());
+ });
+ });
+
+ it('Treasury balance increased by failed tx fee', async () => {
+ await usingApi(async (api) => {
+ const bobPrivateKey = privateKey('//Bob');
+ const treasuryBalanceBefore = new BigNumber((await api.query.system.account(Treasury)).data.free.toString());
+ const bobBalanceBefore = new BigNumber((await api.query.system.account(bobsPublicKey)).data.free.toString());
+
+ const badTx = api.tx.balances.setBalance(alicesPublicKey, 0, 0);
+ const result = getGenericResult(await submitTransactionAsync(bobPrivateKey, badTx));
+
+ const treasuryBalanceAfter = new BigNumber((await api.query.system.account(Treasury)).data.free.toString());
+ const bobBalanceAfter = new BigNumber((await api.query.system.account(bobsPublicKey)).data.free.toString());
+ const fee = bobBalanceBefore.minus(bobBalanceAfter);
+ const treasuryIncrease = treasuryBalanceAfter.minus(treasuryBalanceBefore);
+
+ expect(result.success).to.be.false;
+ expect(treasuryIncrease.toFixed()).to.be.equal(fee.toFixed());
+ });
+ });
+
+ it('NFT Transactions also send fees to Treasury', async () => {
+ await usingApi(async (api) => {
+ const treasuryBalanceBefore = new BigNumber((await api.query.system.account(Treasury)).data.free.toString());
+ const aliceBalanceBefore = new BigNumber((await api.query.system.account(alicesPublicKey)).data.free.toString());
+
+ await createCollectionExpectSuccess('A', 'B', 'C', 'NFT');
+
+ const treasuryBalanceAfter = new BigNumber((await api.query.system.account(Treasury)).data.free.toString());
+ const aliceBalanceAfter = new BigNumber((await api.query.system.account(alicesPublicKey)).data.free.toString());
+ const fee = aliceBalanceBefore.minus(aliceBalanceAfter);
+ const treasuryIncrease = treasuryBalanceAfter.minus(treasuryBalanceBefore);
+
+ expect(treasuryIncrease.toFixed()).to.be.equal(fee.toFixed());
+ });
+ });
+
+ it('Fees are sane', async () => {
+ await usingApi(async (api) => {
+ const treasuryBalanceBefore = new BigNumber((await api.query.system.account(Treasury)).data.free.toString());
+ const aliceBalanceBefore = new BigNumber((await api.query.system.account(alicesPublicKey)).data.free.toString());
+
+ await createCollectionExpectSuccess('A', 'B', 'C', 'NFT');
+
+ const treasuryBalanceAfter = new BigNumber((await api.query.system.account(Treasury)).data.free.toString());
+ const aliceBalanceAfter = new BigNumber((await api.query.system.account(alicesPublicKey)).data.free.toString());
+ const fee = aliceBalanceBefore.minus(aliceBalanceAfter);
+ const treasuryIncrease = treasuryBalanceAfter.minus(treasuryBalanceBefore);
+
+ expect(fee.dividedBy(1e15).toNumber()).to.be.lessThan(0.01);
+ expect(fee.dividedBy(1e15).toNumber()).to.be.greaterThan(0.0001);
+ });
+ });
+
+});
+
tests/src/crefitFeesToTreasury.test.tsdiffbeforeafterboth--- a/tests/src/crefitFeesToTreasury.test.ts
+++ /dev/null
@@ -1,107 +0,0 @@
-import chai from 'chai';
-import chaiAsPromised from 'chai-as-promised';
-import { default as usingApi, submitTransactionAsync } from "./substrate/substrate-api";
-import { alicesPublicKey, bobsPublicKey } from "./accounts";
-import privateKey from "./substrate/privateKey";
-import { BigNumber } from 'bignumber.js';
-import { createCollectionExpectSuccess, getGenericResult } from './util/helpers';
-
-chai.use(chaiAsPromised);
-const expect = chai.expect;
-
-const Treasury = "5EYCAe5ijiYfyeZ2JJCGq56LmPyNRAKzpG4QkoQkkQNB5e6Z";
-const saneMinimumFee = 0.0001;
-const saneMaximumFee = 0.01;
-
-describe('integration test: Fees must be credited to Treasury:', () => {
- it('Total issuance does not change', async () => {
- await usingApi(async (api) => {
- const totalBefore = new BigNumber((await api.query.balances.totalIssuance()).toString());
-
- const alicePrivateKey = privateKey('//Alice');
- const amount = new BigNumber(1);
- const transfer = api.tx.balances.transfer(bobsPublicKey, amount.toFixed());
-
- const result = getGenericResult(await submitTransactionAsync(alicePrivateKey, transfer));
-
- const totalAfter = new BigNumber((await api.query.balances.totalIssuance()).toString());
-
- expect(result.success).to.be.true;
- expect(totalAfter.toFixed()).to.be.equal(totalBefore.toFixed());
- });
- });
-
- it('Sender balance decreased by fee+sent amount, Treasury balance increased by fee', async () => {
- await usingApi(async (api) => {
- const alicePrivateKey = privateKey('//Alice');
- const treasuryBalanceBefore = new BigNumber((await api.query.system.account(Treasury)).data.free.toString());
- const aliceBalanceBefore = new BigNumber((await api.query.system.account(alicesPublicKey)).data.free.toString());
-
- const amount = new BigNumber(1);
- const transfer = api.tx.balances.transfer(bobsPublicKey, amount.toFixed());
- const result = getGenericResult(await submitTransactionAsync(alicePrivateKey, transfer));
-
- const treasuryBalanceAfter = new BigNumber((await api.query.system.account(Treasury)).data.free.toString());
- const aliceBalanceAfter = new BigNumber((await api.query.system.account(alicesPublicKey)).data.free.toString());
- const fee = aliceBalanceBefore.minus(aliceBalanceAfter).minus(amount);
- const treasuryIncrease = treasuryBalanceAfter.minus(treasuryBalanceBefore);
-
- expect(result.success).to.be.true;
- expect(treasuryIncrease.toFixed()).to.be.equal(fee.toFixed());
- });
- });
-
- it('Treasury balance increased by failed tx fee', async () => {
- await usingApi(async (api) => {
- const bobPrivateKey = privateKey('//Bob');
- const treasuryBalanceBefore = new BigNumber((await api.query.system.account(Treasury)).data.free.toString());
- const bobBalanceBefore = new BigNumber((await api.query.system.account(bobsPublicKey)).data.free.toString());
-
- const badTx = api.tx.balances.setBalance(alicesPublicKey, 0, 0);
- const result = getGenericResult(await submitTransactionAsync(bobPrivateKey, badTx));
-
- const treasuryBalanceAfter = new BigNumber((await api.query.system.account(Treasury)).data.free.toString());
- const bobBalanceAfter = new BigNumber((await api.query.system.account(bobsPublicKey)).data.free.toString());
- const fee = bobBalanceBefore.minus(bobBalanceAfter);
- const treasuryIncrease = treasuryBalanceAfter.minus(treasuryBalanceBefore);
-
- expect(result.success).to.be.false;
- expect(treasuryIncrease.toFixed()).to.be.equal(fee.toFixed());
- });
- });
-
- it('NFT Transactions also send fees to Treasury', async () => {
- await usingApi(async (api) => {
- const treasuryBalanceBefore = new BigNumber((await api.query.system.account(Treasury)).data.free.toString());
- const aliceBalanceBefore = new BigNumber((await api.query.system.account(alicesPublicKey)).data.free.toString());
-
- await createCollectionExpectSuccess('A', 'B', 'C', 'NFT');
-
- const treasuryBalanceAfter = new BigNumber((await api.query.system.account(Treasury)).data.free.toString());
- const aliceBalanceAfter = new BigNumber((await api.query.system.account(alicesPublicKey)).data.free.toString());
- const fee = aliceBalanceBefore.minus(aliceBalanceAfter);
- const treasuryIncrease = treasuryBalanceAfter.minus(treasuryBalanceBefore);
-
- expect(treasuryIncrease.toFixed()).to.be.equal(fee.toFixed());
- });
- });
-
- it('Fees are sane', async () => {
- await usingApi(async (api) => {
- const treasuryBalanceBefore = new BigNumber((await api.query.system.account(Treasury)).data.free.toString());
- const aliceBalanceBefore = new BigNumber((await api.query.system.account(alicesPublicKey)).data.free.toString());
-
- await createCollectionExpectSuccess('A', 'B', 'C', 'NFT');
-
- const treasuryBalanceAfter = new BigNumber((await api.query.system.account(Treasury)).data.free.toString());
- const aliceBalanceAfter = new BigNumber((await api.query.system.account(alicesPublicKey)).data.free.toString());
- const fee = aliceBalanceBefore.minus(aliceBalanceAfter);
- const treasuryIncrease = treasuryBalanceAfter.minus(treasuryBalanceBefore);
-
- expect(fee.dividedBy(1e15).toNumber()).to.be.lessThan(0.01);
- expect(fee.dividedBy(1e15).toNumber()).to.be.greaterThan(0.0001);
- });
- });
-
-});
-
tests/src/destroyCollection.test.tsdiffbeforeafterboth--- /dev/null
+++ b/tests/src/destroyCollection.test.ts
@@ -0,0 +1,87 @@
+import chai from 'chai';
+import chaiAsPromised from 'chai-as-promised';
+import { default as usingApi, submitTransactionAsync } from "./substrate/substrate-api";
+import { createCollectionExpectSuccess, createCollectionExpectFailure } from "./util/helpers";
+import type { AccountId, EventRecord } from '@polkadot/types/interfaces';
+import privateKey from './substrate/privateKey';
+import { nullPublicKey } from './accounts';
+
+chai.use(chaiAsPromised);
+const expect = chai.expect;
+
+function getDestroyResult(events: EventRecord[]): boolean {
+ let success: boolean = false;
+ events.forEach(({ phase, event: { data, method, section } }) => {
+ // console.log(` ${phase}: ${section}.${method}:: ${data}`);
+ if (method == 'ExtrinsicSuccess') {
+ success = true;
+ }
+ });
+ return success;
+}
+
+async function destroyCollectionExpectSuccess(collectionId: number, senderSeed: string = '//Alice') {
+ await usingApi(async (api) => {
+ // Run the DestroyCollection transaction
+ const alicePrivateKey = privateKey(senderSeed);
+ const tx = api.tx.nft.destroyCollection(collectionId);
+ const events = await submitTransactionAsync(alicePrivateKey, tx);
+ const result = getDestroyResult(events);
+
+ // Get the collection
+ const collection: any = (await api.query.nft.collection(collectionId)).toJSON();
+
+ // What to expect
+ expect(result).to.be.true;
+ expect(collection).to.be.not.null;
+ expect(collection.Owner).to.be.equal(nullPublicKey);
+ });
+}
+
+async function destroyCollectionExpectFailure(collectionId: number, senderSeed: string = '//Alice') {
+ await usingApi(async (api) => {
+ // Run the DestroyCollection transaction
+ const alicePrivateKey = privateKey(senderSeed);
+ const tx = api.tx.nft.destroyCollection(collectionId);
+ const events = await submitTransactionAsync(alicePrivateKey, tx);
+ const result = getDestroyResult(events);
+
+ // What to expect
+ expect(result).to.be.false;
+ });
+}
+
+describe('integration test: ext. destroyCollection():', () => {
+ it('NFT collection can be destroyed', async () => {
+ const collectionId = await createCollectionExpectSuccess('A', 'B', 'C', 'NFT');
+ await destroyCollectionExpectSuccess(collectionId);
+ });
+ it('Fungible collection can be destroyed', async () => {
+ const collectionId = await createCollectionExpectSuccess('A', 'B', 'C', 'Fungible');
+ await destroyCollectionExpectSuccess(collectionId);
+ });
+ it('ReFungible collection can be destroyed', async () => {
+ const collectionId = await createCollectionExpectSuccess('A', 'B', 'C', 'ReFungible');
+ await destroyCollectionExpectSuccess(collectionId);
+ });
+});
+
+describe('(!negative test!) integration test: ext. destroyCollection():', () => {
+ it('(!negative test!) Destroy a collection that never existed', async () => {
+ await usingApi(async (api) => {
+ // Find the collection that never existed
+ const collectionId = parseInt((await api.query.nft.createdCollectionCount()).toString()) + 1;
+ await destroyCollectionExpectFailure(collectionId);
+ });
+ });
+ it('(!negative test!) Destroy a collection that has already been destroyed', async () => {
+ const collectionId = await createCollectionExpectSuccess('A', 'B', 'C', 'NFT');
+ await destroyCollectionExpectSuccess(collectionId);
+ await destroyCollectionExpectFailure(collectionId);
+ });
+ it('(!negative test!) Destroy a collection using non-owner account', async () => {
+ const collectionId = await createCollectionExpectSuccess('A', 'B', 'C', 'NFT');
+ await destroyCollectionExpectFailure(collectionId, '//Bob');
+ await destroyCollectionExpectSuccess(collectionId, '//Alice');
+ });
+});
tests/src/pallet-presence.test.tsdiffbeforeafterboth--- a/tests/src/pallet-presence.test.ts
+++ b/tests/src/pallet-presence.test.ts
@@ -1,3 +1,8 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
import { ApiPromise } from "@polkadot/api";
import { expect } from "chai";
import usingApi from "./substrate/substrate-api";
@@ -6,20 +11,34 @@
return api.runtimeMetadata.asLatest.modules.map(m => m.name.toString().toLowerCase());
}
-describe('Pallet presence.', () => {
- it('NFT pallet is present.', async () => {
+// Pallets that must always be present
+const requiredPallets = [
+ 'nft', 'balances', 'contracts', 'randomnesscollectiveflip', 'system', 'timestamp', 'transactionpayment', 'treasury', 'vesting'
+];
+
+// Pallets that depend on consensus and governance configuration
+const consensusPallets = [
+ 'sudo', 'grandpa', 'aura'
+];
+
+describe('Pallet presence', () => {
+ it('Required pallets are present', async () => {
await usingApi(async api => {
- expect(getModuleNames(api)).to.include('nft');
+ for (let i=0; i<requiredPallets.length; i++) {
+ expect(getModuleNames(api)).to.include(requiredPallets[i]);
+ }
});
});
- it('Balances pallet is present.', async () => {
+ it('Governance and consensus pallets are present', async () => {
await usingApi(async api => {
- expect(getModuleNames(api)).to.include('balances');
+ for (let i=0; i<consensusPallets.length; i++) {
+ expect(getModuleNames(api)).to.include(consensusPallets[i]);
+ }
});
});
- it('Contracts pallet is present.', async () => {
+ it('No extra pallets are included', async () => {
await usingApi(async api => {
- expect(getModuleNames(api)).to.include('contracts');
+ expect(getModuleNames(api).length).to.be.equal(requiredPallets.length + consensusPallets.length);
});
});
});
tests/src/substrate/get-balance.tsdiffbeforeafterboth--- a/tests/src/substrate/get-balance.ts
+++ b/tests/src/substrate/get-balance.ts
@@ -1,3 +1,8 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
import { ApiPromise } from "@polkadot/api";
import promisifySubstrate from "./promisify-substrate";
import {AccountInfo} from "@polkadot/types/interfaces/system";
tests/src/substrate/privateKey.tsdiffbeforeafterboth--- a/tests/src/substrate/privateKey.ts
+++ b/tests/src/substrate/privateKey.ts
@@ -1,3 +1,8 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
import { Keyring } from "@polkadot/api";
import { IKeyringPair } from "@polkadot/types/types";
tests/src/substrate/promisify-substrate.tsdiffbeforeafterboth--- a/tests/src/substrate/promisify-substrate.ts
+++ b/tests/src/substrate/promisify-substrate.ts
@@ -1,3 +1,8 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
import ApiPromise from "@polkadot/api/promise/Api";
type PromiseType<T> = T extends PromiseLike<infer TInner> ? TInner : T;
tests/src/substrate/substrate-api.tsdiffbeforeafterboth--- a/tests/src/substrate/substrate-api.ts
+++ b/tests/src/substrate/substrate-api.ts
@@ -1,3 +1,8 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
import { WsProvider, ApiPromise } from "@polkadot/api";
import type { AccountId, Address, ApplyExtrinsicResult, DispatchError, DispatchInfo, EventRecord, Extrinsic, ExtrinsicStatus, Hash, RuntimeDispatchInfo } from '@polkadot/types/interfaces';
import { IKeyringPair } from "@polkadot/types/types";
tests/src/substrate/wait-new-blocks.tsdiffbeforeafterboth--- a/tests/src/substrate/wait-new-blocks.ts
+++ b/tests/src/substrate/wait-new-blocks.ts
@@ -1,3 +1,8 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
import { ApiPromise } from "@polkadot/api";
export default function waitNewBlocks(api: ApiPromise, blocksCount: number = 1): Promise<void> {
tests/src/transfer.test.tsdiffbeforeafterboth--- a/tests/src/transfer.test.ts
+++ b/tests/src/transfer.test.ts
@@ -1,8 +1,15 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
import { expect, assert } from "chai";
import { default as usingApi, submitTransactionAsync } from "./substrate/substrate-api";
import { alicesPublicKey, bobsPublicKey, ferdiesPublicKey } from "./accounts";
import privateKey from "./substrate/privateKey";
import getBalance from "./substrate/get-balance";
+import { BigNumber } from 'bignumber.js';
+import { findUnusedAddress } from './util/helpers'
describe('Transfer', () => {
it('Balance transfers', async () => {
@@ -23,7 +30,8 @@
it('Inability to pay fees error message is correct', async () => {
await usingApi(async api => {
- const pk = privateKey('//Ferdie');
+ // Find unused address
+ const pk = await findUnusedAddress(api);
console.log = function () {};
console.error = function () {};
tests/src/util/helpers.tsdiffbeforeafterboth--- a/tests/src/util/helpers.ts
+++ b/tests/src/util/helpers.ts
@@ -1,10 +1,18 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
import chai from 'chai';
import chaiAsPromised from 'chai-as-promised';
-import type { EventRecord } from '@polkadot/types/interfaces';
+import type { AccountId, EventRecord } from '@polkadot/types/interfaces';
+import { ApiPromise, Keyring } from "@polkadot/api";
import { default as usingApi, submitTransactionAsync } from "../substrate/substrate-api";
import privateKey from '../substrate/privateKey';
import { alicesPublicKey } from "../accounts";
import { strToUTF16, utf16ToStr, hexToStr } from '../util/util';
+import { IKeyringPair } from "@polkadot/types/types";
+import { BigNumber } from 'bignumber.js';
chai.use(chaiAsPromised);
const expect = chai.expect;
@@ -49,7 +57,8 @@
return result;
}
-export async function createCollectionExpectSuccess(name: string, description: string, tokenPrefix: string, mode: string) {
+export async function createCollectionExpectSuccess(name: string, description: string, tokenPrefix: string, mode: string): Promise<number> {
+ let collectionId: number = 0;
await usingApi(async (api) => {
// Get number of collections before the transaction
const AcollectionCount = parseInt((await api.query.nft.createdCollectionCount()).toString());
@@ -75,7 +84,11 @@
expect(utf16ToStr(collection.Name)).to.be.equal(name);
expect(utf16ToStr(collection.Description)).to.be.equal(description);
expect(hexToStr(collection.TokenPrefix)).to.be.equal(tokenPrefix);
+
+ collectionId = result.collectionId;
});
+
+ return collectionId;
}
export async function createCollectionExpectFailure(name: string, description: string, tokenPrefix: string, mode: string) {
@@ -98,3 +111,14 @@
});
}
+export async function findUnusedAddress(api: ApiPromise): Promise<IKeyringPair> {
+ let bal = new BigNumber(0);
+ let unused;
+ do {
+ const randomSeed = 'seed' + Math.floor(Math.random() * Math.floor(10000));
+ const keyring = new Keyring({ type: 'sr25519' });
+ unused = keyring.addFromUri(`//${randomSeed}`);
+ bal = new BigNumber((await api.query.system.account(unused.address)).data.free.toString());
+ } while (bal.toFixed() != '0');
+ return unused;
+}
\ No newline at end of file
tests/src/util/util.tsdiffbeforeafterboth--- a/tests/src/util/util.ts
+++ b/tests/src/util/util.ts
@@ -1,3 +1,8 @@
+//
+// This file is subject to the terms and conditions defined in
+// file 'LICENSE', which is part of this source code package.
+//
+
export function strToUTF16(str: string): any {
let buf: number[] = [];
for (let i=0, strLen=str.length; i < strLen; i++) {