Skip to content

Commit

Permalink
Update mod.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
dudo50 committed Oct 15, 2024
1 parent 2a8a158 commit 429a51b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions templates/parachain/runtime/src/configs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -334,13 +334,13 @@ impl pallet_parachain_xcnft::Config for Runtime {
}
pub const UNIT: Balance = 1;
parameter_types! {
pub const CollectionDeposit: Balance = 10000000000000 * UNIT; // 1 UNIT deposit to create asset collection
pub const ItemDeposit: Balance = 10000000000000 * UNIT; // 1/100 UNIT deposit to create asset item
pub const CollectionDeposit: Balance = 0 * UNIT; // 1 UNIT deposit to create asset collection
pub const ItemDeposit: Balance = 0 * UNIT; // 1/100 UNIT deposit to create asset item
pub const KeyLimit: u32 = 32;
pub const ValueLimit: u32 = 64;
pub const UniquesMetadataDepositBase: Balance = 1 * UNIT;
pub const AttributeDepositBase: Balance = 1 * UNIT;
pub const DepositPerByte: Balance = 1 * UNIT;
pub const UniquesMetadataDepositBase: Balance = 0 * UNIT;
pub const AttributeDepositBase: Balance = 0 * UNIT;
pub const DepositPerByte: Balance = 0 * UNIT;
pub const UniquesStringLimit: u32 = 32;
pub const ApprovalsLimit: u32 = 1;
pub const ItemAttributesApprovalsLimit: u32 = 1;
Expand Down

0 comments on commit 429a51b

Please sign in to comment.