From 61336480f3b1a35495f8f3880ef3f780acde614b Mon Sep 17 00:00:00 2001 From: Cameron Fairchild Date: Thu, 31 Oct 2024 13:02:53 -0400 Subject: [PATCH] reduce key swap cost to 0.1 TAO --- runtime/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 6990cb907..727e28079 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -956,7 +956,7 @@ parameter_types! { pub const SubtensorInitialNetworkLockReductionInterval: u64 = 14 * 7200; pub const SubtensorInitialNetworkRateLimit: u64 = 7200; pub const SubtensorInitialTargetStakesPerInterval: u16 = 1; - pub const SubtensorInitialKeySwapCost: u64 = 1_000_000_000; + pub const SubtensorInitialKeySwapCost: u64 = 100_000_000; // 0.1 TAO pub const InitialAlphaHigh: u16 = 58982; // Represents 0.9 as per the production default pub const InitialAlphaLow: u16 = 45875; // Represents 0.7 as per the production default pub const InitialLiquidAlphaOn: bool = false; // Default value for LiquidAlphaOn