Skip to content

Commit

Permalink
adjust reserve price to more reasonable number
Browse files Browse the repository at this point in the history
Signed-off-by: Charles Ferrell <charlie@manta.network>
  • Loading branch information
ferrell-code committed Jun 26, 2023
1 parent b0c44fc commit b109a4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pallets/manta-sbt/src/weights.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ pub trait WeightInfo {

/// Weights for pallet_manta_sbt using the Substrate node and recommended hardware.
pub struct SubstrateWeight<T>(PhantomData<T>);
impl<T: frame_system::Config> pallet_manta_sbt::WeightInfo for SubstrateWeight<T> {
impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
// Storage: MantaSbt MintIdRegistry (r:1 w:0)
// Storage: Timestamp Now (r:1 w:0)
// Storage: MantaSbt PublicMintList (r:1 w:0)
Expand Down
2 changes: 1 addition & 1 deletion runtime/calamari/src/assets_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ impl pallet_manta_sbt::Config for Runtime {
type PalletId = MantaSbtPalletId;
type Currency = Balances;
type MintsPerReserve = ConstU16<5>;
type ReservePrice = ConstU128<{ 100_000 * KMA }>;
type ReservePrice = ConstU128<{ 5_000 * KMA }>;
type SbtMetadataBound = ConstU32<300>;
type RegistryBound = ConstU32<300>;
type AdminOrigin = EitherOfDiverse<
Expand Down
2 changes: 1 addition & 1 deletion runtime/manta/src/assets_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ impl pallet_manta_sbt::Config for Runtime {
type PalletId = MantaSbtPalletId;
type Currency = Balances;
type MintsPerReserve = ConstU16<5>;
type ReservePrice = ConstU128<{ 100_000 * MANTA }>;
type ReservePrice = ConstU128<{ 50 * MANTA }>;
type SbtMetadataBound = ConstU32<300>;
type RegistryBound = ConstU32<300>;
type AdminOrigin = EitherOfDiverse<
Expand Down

0 comments on commit b109a4c

Please sign in to comment.