-
Notifications
You must be signed in to change notification settings - Fork 155
/
lib.rs
1531 lines (1358 loc) · 57.7 KB
/
lib.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#![cfg_attr(not(feature = "std"), no_std)]
// `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256.
#![recursion_limit = "256"]
// Some arithmetic operations can't use the saturating equivalent, such as the PerThing types
#![allow(clippy::arithmetic_side_effects)]
// Make the WASM binary available.
#[cfg(feature = "std")]
include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs"));
pub mod check_nonce;
mod migrations;
use codec::{Decode, Encode, MaxEncodedLen};
use frame_support::traits::Imbalance;
use frame_support::{
dispatch::DispatchResultWithPostInfo,
genesis_builder_helper::{build_state, get_preset},
pallet_prelude::Get,
traits::{
fungible::{
DecreaseIssuance, HoldConsideration, Imbalance as FungibleImbalance, IncreaseIssuance,
},
Contains, LinearStoragePrice, OnUnbalanced,
},
};
use frame_system::{EnsureNever, EnsureRoot, EnsureRootWithSuccess, RawOrigin};
use pallet_commitments::CanCommit;
use pallet_grandpa::{
fg_primitives, AuthorityId as GrandpaId, AuthorityList as GrandpaAuthorityList,
};
use pallet_registry::CanRegisterIdentity;
use scale_info::TypeInfo;
use smallvec::smallvec;
use sp_api::impl_runtime_apis;
use sp_consensus_aura::sr25519::AuthorityId as AuraId;
use sp_core::{crypto::KeyTypeId, OpaqueMetadata, RuntimeDebug};
use sp_runtime::{
create_runtime_str, generic, impl_opaque_keys,
traits::{
AccountIdLookup, BlakeTwo256, Block as BlockT, IdentifyAccount, NumberFor, One, Verify,
},
transaction_validity::{TransactionSource, TransactionValidity},
AccountId32, ApplyExtrinsicResult, MultiSignature,
};
use sp_std::cmp::Ordering;
use sp_std::prelude::*;
#[cfg(feature = "std")]
use sp_version::NativeVersion;
use sp_version::RuntimeVersion;
// A few exports that help ease life for downstream crates.
pub use frame_support::{
construct_runtime, parameter_types,
traits::{
ConstBool, ConstU128, ConstU32, ConstU64, ConstU8, InstanceFilter, KeyOwnerProofSystem,
PrivilegeCmp, Randomness, StorageInfo,
},
weights::{
constants::{
BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, WEIGHT_REF_TIME_PER_SECOND,
},
IdentityFee, Weight, WeightToFeeCoefficient, WeightToFeeCoefficients,
WeightToFeePolynomial,
},
StorageValue,
};
pub use frame_system::Call as SystemCall;
pub use pallet_balances::Call as BalancesCall;
pub use pallet_timestamp::Call as TimestampCall;
use pallet_transaction_payment::{FungibleAdapter, Multiplier};
#[cfg(any(feature = "std", test))]
pub use sp_runtime::BuildStorage;
pub use sp_runtime::{Perbill, Permill};
// Subtensor module
pub use pallet_scheduler;
pub use pallet_subtensor;
// An index to a block.
pub type BlockNumber = u32;
// Alias to 512-bit hash when used in the context of a transaction signature on the chain.
pub type Signature = MultiSignature;
// Some way of identifying an account on the chain. We intentionally make it equivalent
// to the public key of our transaction signing scheme.
pub type AccountId = <<Signature as Verify>::Signer as IdentifyAccount>::AccountId;
// Balance of an account.
pub type Balance = u64;
// Index of a transaction in the chain.
pub type Index = u32;
// A hash of some data used by the chain.
pub type Hash = sp_core::H256;
// Member type for membership
type MemberCount = u32;
pub type Nonce = u32;
// Method used to calculate the fee of an extrinsic
pub const fn deposit(items: u32, bytes: u32) -> Balance {
pub const ITEMS_FEE: Balance = 2_000 * 10_000;
pub const BYTES_FEE: Balance = 100 * 10_000;
(items as Balance)
.saturating_mul(ITEMS_FEE)
.saturating_add((bytes as Balance).saturating_mul(BYTES_FEE))
}
// Opaque types. These are used by the CLI to instantiate machinery that don't need to know
// the specifics of the runtime. They can then be made to be agnostic over specific formats
// of data like extrinsics, allowing for them to continue syncing the network through upgrades
// to even the core data structures.
pub mod opaque {
use super::*;
pub use sp_runtime::OpaqueExtrinsic as UncheckedExtrinsic;
// Opaque block header type.
pub type Header = generic::Header<BlockNumber, BlakeTwo256>;
// Opaque block type.
pub type Block = generic::Block<Header, UncheckedExtrinsic>;
// Opaque block identifier type.
pub type BlockId = generic::BlockId<Block>;
impl_opaque_keys! {
pub struct SessionKeys {
pub aura: Aura,
pub grandpa: Grandpa,
}
}
}
// To learn more about runtime versioning, see:
// https://docs.substrate.io/main-docs/build/upgrade#runtime-versioning
#[sp_version::runtime_version]
pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("node-subtensor"),
impl_name: create_runtime_str!("node-subtensor"),
authoring_version: 1,
// The version of the runtime specification. A full node will not attempt to use its native
// runtime in substitute for the on-chain Wasm runtime unless all of `spec_name`,
// `spec_version`, and `authoring_version` are the same between Wasm and native.
// This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
// the compatible custom types.
spec_version: 205,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
state_version: 1,
};
/// This determines the average expected block time that we are targeting.
/// Blocks will be produced at a minimum duration defined by `SLOT_DURATION`.
/// `SLOT_DURATION` is picked up by `pallet_timestamp` which is in turn picked
/// up by `pallet_aura` to implement `fn slot_duration()`.
///
/// Change this to adjust the block time.
#[cfg(not(feature = "fast-blocks"))]
pub const MILLISECS_PER_BLOCK: u64 = 12000;
/// Fast blocks for development
#[cfg(feature = "fast-blocks")]
pub const MILLISECS_PER_BLOCK: u64 = 250;
// NOTE: Currently it is not possible to change the slot duration after the chain has started.
// Attempting to do so will brick block production.
pub const SLOT_DURATION: u64 = MILLISECS_PER_BLOCK;
// Time is measured by number of blocks.
pub const MINUTES: BlockNumber = 60_000 / (MILLISECS_PER_BLOCK as BlockNumber);
pub const HOURS: BlockNumber = MINUTES * 60;
pub const DAYS: BlockNumber = HOURS * 24;
// The version information used to identify this runtime when compiled natively.
#[cfg(feature = "std")]
pub fn native_version() -> NativeVersion {
NativeVersion {
runtime_version: VERSION,
can_author_with: Default::default(),
}
}
const NORMAL_DISPATCH_RATIO: Perbill = Perbill::from_percent(75);
parameter_types! {
pub const BlockHashCount: BlockNumber = 2400;
pub const Version: RuntimeVersion = VERSION;
// We allow for 2 seconds of compute with a 6 second average block time.
pub BlockWeights: frame_system::limits::BlockWeights =
frame_system::limits::BlockWeights::with_sensible_defaults(
Weight::from_parts(4u64 * WEIGHT_REF_TIME_PER_SECOND, u64::MAX),
NORMAL_DISPATCH_RATIO,
);
pub BlockLength: frame_system::limits::BlockLength = frame_system::limits::BlockLength
::max_with_normal_ratio(10 * 1024 * 1024, NORMAL_DISPATCH_RATIO);
pub const SS58Prefix: u8 = 42;
}
// Configure FRAME pallets to include in runtime.
impl frame_system::Config for Runtime {
// The basic call filter to use in dispatchable.
type BaseCallFilter = SafeMode;
// Block & extrinsics weights: base values and limits.
type BlockWeights = BlockWeights;
// The maximum length of a block (in bytes).
type BlockLength = BlockLength;
// The identifier used to distinguish between accounts.
type AccountId = AccountId;
// The aggregated dispatch type that is available for extrinsics.
type RuntimeCall = RuntimeCall;
// The aggregated runtime tasks.
type RuntimeTask = RuntimeTask;
// The lookup mechanism to get account ID from whatever is passed in dispatchers.
type Lookup = AccountIdLookup<AccountId, ()>;
// The type for hashing blocks and tries.
type Hash = Hash;
// The hashing algorithm used.
type Hashing = BlakeTwo256;
// The ubiquitous event type.
type RuntimeEvent = RuntimeEvent;
// The ubiquitous origin type.
type RuntimeOrigin = RuntimeOrigin;
// Maximum number of block number to block hash mappings to keep (oldest pruned first).
type BlockHashCount = BlockHashCount;
// The weight of database operations that the runtime can invoke.
type DbWeight = RocksDbWeight;
// Version of the runtime.
type Version = Version;
// Converts a module to the index of the module in `construct_runtime!`.
//
// This type is being generated by `construct_runtime!`.
type PalletInfo = PalletInfo;
// What to do if a new account is created.
type OnNewAccount = ();
// What to do if an account is fully reaped from the system.
type OnKilledAccount = ();
// The data to be stored in an account.
type AccountData = pallet_balances::AccountData<Balance>;
// Weight information for the extrinsics of this pallet.
type SystemWeightInfo = ();
// This is used as an identifier of the chain. 42 is the generic substrate prefix.
type SS58Prefix = SS58Prefix;
// The set code logic, just the default since we're not a parachain.
type OnSetCode = ();
type MaxConsumers = frame_support::traits::ConstU32<16>;
type Nonce = Nonce;
type Block = Block;
type SingleBlockMigrations = Migrations;
type MultiBlockMigrator = ();
type PreInherents = ();
type PostInherents = ();
type PostTransactions = ();
}
impl pallet_insecure_randomness_collective_flip::Config for Runtime {}
impl pallet_aura::Config for Runtime {
type AuthorityId = AuraId;
type DisabledValidators = ();
type MaxAuthorities = ConstU32<32>;
type AllowMultipleBlocksPerSlot = ConstBool<false>;
type SlotDuration = pallet_aura::MinimumPeriodTimesTwo<Runtime>;
}
impl pallet_grandpa::Config for Runtime {
type RuntimeEvent = RuntimeEvent;
type KeyOwnerProof = sp_core::Void;
type WeightInfo = ();
type MaxAuthorities = ConstU32<32>;
type MaxSetIdSessionEntries = ConstU64<0>;
type MaxNominators = ConstU32<20>;
type EquivocationReportSystem = ();
}
impl pallet_timestamp::Config for Runtime {
// A timestamp: milliseconds since the unix epoch.
type Moment = u64;
type OnTimestampSet = Aura;
type MinimumPeriod = ConstU64<{ SLOT_DURATION / 2 }>;
type WeightInfo = ();
}
impl pallet_utility::Config for Runtime {
type RuntimeEvent = RuntimeEvent;
type RuntimeCall = RuntimeCall;
type PalletsOrigin = OriginCaller;
type WeightInfo = pallet_utility::weights::SubstrateWeight<Runtime>;
}
parameter_types! {
pub const DisallowPermissionlessEnterDuration: BlockNumber = 0;
pub const DisallowPermissionlessExtendDuration: BlockNumber = 0;
pub const RootEnterDuration: BlockNumber = 5 * 60 * 24; // 24 hours
pub const RootExtendDuration: BlockNumber = 5 * 60 * 12; // 12 hours
pub const DisallowPermissionlessEntering: Option<Balance> = None;
pub const DisallowPermissionlessExtending: Option<Balance> = None;
pub const DisallowPermissionlessRelease: Option<BlockNumber> = None;
}
pub struct SafeModeWhitelistedCalls;
impl Contains<RuntimeCall> for SafeModeWhitelistedCalls {
fn contains(call: &RuntimeCall) -> bool {
matches!(
call,
RuntimeCall::Sudo(_)
| RuntimeCall::Multisig(_)
| RuntimeCall::System(_)
| RuntimeCall::SafeMode(_)
| RuntimeCall::Timestamp(_)
| RuntimeCall::SubtensorModule(
pallet_subtensor::Call::set_weights { .. }
| pallet_subtensor::Call::set_root_weights { .. }
| pallet_subtensor::Call::serve_axon { .. }
)
| RuntimeCall::Commitments(pallet_commitments::Call::set_commitment { .. })
)
}
}
impl pallet_safe_mode::Config for Runtime {
type RuntimeEvent = RuntimeEvent;
type Currency = Balances;
type RuntimeHoldReason = RuntimeHoldReason;
type WhitelistedCalls = SafeModeWhitelistedCalls;
type EnterDuration = DisallowPermissionlessEnterDuration;
type ExtendDuration = DisallowPermissionlessExtendDuration;
type EnterDepositAmount = DisallowPermissionlessEntering;
type ExtendDepositAmount = DisallowPermissionlessExtending;
type ForceEnterOrigin = EnsureRootWithSuccess<AccountId, RootEnterDuration>;
type ForceExtendOrigin = EnsureRootWithSuccess<AccountId, RootExtendDuration>;
type ForceExitOrigin = EnsureRoot<AccountId>;
type ForceDepositOrigin = EnsureRoot<AccountId>;
type Notify = ();
type ReleaseDelay = DisallowPermissionlessRelease;
type WeightInfo = pallet_safe_mode::weights::SubstrateWeight<Runtime>;
}
// Existential deposit.
pub const EXISTENTIAL_DEPOSIT: u64 = 500;
impl pallet_balances::Config for Runtime {
type MaxLocks = ConstU32<50>;
type MaxReserves = ConstU32<50>;
type ReserveIdentifier = [u8; 8];
// The type for recording an account's balance.
type Balance = Balance;
// The ubiquitous event type.
type RuntimeEvent = RuntimeEvent;
type DustRemoval = ();
type ExistentialDeposit = ConstU64<EXISTENTIAL_DEPOSIT>;
type AccountStore = System;
type WeightInfo = pallet_balances::weights::SubstrateWeight<Runtime>;
type RuntimeHoldReason = RuntimeHoldReason;
type RuntimeFreezeReason = RuntimeFreezeReason;
type FreezeIdentifier = RuntimeFreezeReason;
type MaxFreezes = ConstU32<50>;
}
pub struct LinearWeightToFee<C>(sp_std::marker::PhantomData<C>);
impl<C> WeightToFeePolynomial for LinearWeightToFee<C>
where
C: Get<Balance>,
{
type Balance = Balance;
fn polynomial() -> WeightToFeeCoefficients<Self::Balance> {
let coefficient = WeightToFeeCoefficient {
coeff_integer: 0,
coeff_frac: Perbill::from_parts(1_000_000),
negative: false,
degree: 1,
};
smallvec!(coefficient)
}
}
parameter_types! {
// Used with LinearWeightToFee conversion.
pub const FeeWeightRatio: u64 = 1;
pub const TransactionByteFee: u128 = 1;
pub FeeMultiplier: Multiplier = Multiplier::one();
}
/// Deduct the transaction fee from the Subtensor Pallet TotalIssuance when dropping the transaction
/// fee.
pub struct TransactionFeeHandler;
impl
OnUnbalanced<
FungibleImbalance<
u64,
DecreaseIssuance<AccountId32, pallet_balances::Pallet<Runtime>>,
IncreaseIssuance<AccountId32, pallet_balances::Pallet<Runtime>>,
>,
> for TransactionFeeHandler
{
fn on_nonzero_unbalanced(
credit: FungibleImbalance<
u64,
DecreaseIssuance<AccountId32, pallet_balances::Pallet<Runtime>>,
IncreaseIssuance<AccountId32, pallet_balances::Pallet<Runtime>>,
>,
) {
let ti_before = pallet_subtensor::TotalIssuance::<Runtime>::get();
pallet_subtensor::TotalIssuance::<Runtime>::put(ti_before.saturating_sub(credit.peek()));
drop(credit);
}
}
impl pallet_transaction_payment::Config for Runtime {
type RuntimeEvent = RuntimeEvent;
//type TransactionByteFee = TransactionByteFee;
type OnChargeTransaction = FungibleAdapter<Balances, TransactionFeeHandler>;
// Convert dispatch weight to a chargeable fee.
type WeightToFee = LinearWeightToFee<FeeWeightRatio>;
type FeeMultiplierUpdate = ();
type OperationalFeeMultiplier = ConstU8<1>;
type LengthToFee = IdentityFee<Balance>;
//type FeeMultiplierUpdate = ConstFeeMultiplier<FeeMultiplier>;
}
// Configure collective pallet for council
parameter_types! {
pub const CouncilMotionDuration: BlockNumber = 12 * HOURS;
pub const CouncilMaxProposals: u32 = 10;
pub const CouncilMaxMembers: u32 = 3;
}
// Configure collective pallet for Senate
parameter_types! {
pub const SenateMaxMembers: u32 = 12;
}
use pallet_collective::{CanPropose, CanVote, GetVotingMembers};
pub struct CanProposeToTriumvirate;
impl CanPropose<AccountId> for CanProposeToTriumvirate {
fn can_propose(account: &AccountId) -> bool {
Triumvirate::is_member(account)
}
}
pub struct CanVoteToTriumvirate;
impl CanVote<AccountId> for CanVoteToTriumvirate {
fn can_vote(_: &AccountId) -> bool {
//Senate::is_member(account)
false // Disable voting from pallet_collective::vote
}
}
use pallet_subtensor::{CollectiveInterface, MemberManagement};
pub struct ManageSenateMembers;
impl MemberManagement<AccountId> for ManageSenateMembers {
fn add_member(account: &AccountId) -> DispatchResultWithPostInfo {
let who = Address::Id(account.clone());
SenateMembers::add_member(RawOrigin::Root.into(), who)
}
fn remove_member(account: &AccountId) -> DispatchResultWithPostInfo {
let who = Address::Id(account.clone());
SenateMembers::remove_member(RawOrigin::Root.into(), who)
}
fn swap_member(rm: &AccountId, add: &AccountId) -> DispatchResultWithPostInfo {
let remove = Address::Id(rm.clone());
let add = Address::Id(add.clone());
Triumvirate::remove_votes(rm)?;
SenateMembers::swap_member(RawOrigin::Root.into(), remove, add)
}
fn is_member(account: &AccountId) -> bool {
SenateMembers::members().contains(account)
}
fn members() -> Vec<AccountId> {
SenateMembers::members().into()
}
fn max_members() -> u32 {
SenateMaxMembers::get()
}
}
pub struct GetSenateMemberCount;
impl GetVotingMembers<MemberCount> for GetSenateMemberCount {
fn get_count() -> MemberCount {
SenateMembers::members().len() as u32
}
}
impl Get<MemberCount> for GetSenateMemberCount {
fn get() -> MemberCount {
SenateMaxMembers::get()
}
}
pub struct TriumvirateVotes;
impl CollectiveInterface<AccountId, Hash, u32> for TriumvirateVotes {
fn remove_votes(hotkey: &AccountId) -> Result<bool, sp_runtime::DispatchError> {
Triumvirate::remove_votes(hotkey)
}
fn add_vote(
hotkey: &AccountId,
proposal: Hash,
index: u32,
approve: bool,
) -> Result<bool, sp_runtime::DispatchError> {
Triumvirate::do_vote(hotkey.clone(), proposal, index, approve)
}
}
type EnsureMajoritySenate =
pallet_collective::EnsureProportionMoreThan<AccountId, TriumvirateCollective, 1, 2>;
// We call pallet_collective TriumvirateCollective
type TriumvirateCollective = pallet_collective::Instance1;
impl pallet_collective::Config<TriumvirateCollective> for Runtime {
type RuntimeOrigin = RuntimeOrigin;
type Proposal = RuntimeCall;
type RuntimeEvent = RuntimeEvent;
type MotionDuration = CouncilMotionDuration;
type MaxProposals = CouncilMaxProposals;
type MaxMembers = GetSenateMemberCount;
type DefaultVote = pallet_collective::PrimeDefaultVote;
type WeightInfo = pallet_collective::weights::SubstrateWeight<Runtime>;
type SetMembersOrigin = EnsureNever<AccountId>;
type CanPropose = CanProposeToTriumvirate;
type CanVote = CanVoteToTriumvirate;
type GetVotingMembers = GetSenateMemberCount;
}
// We call council members Triumvirate
#[allow(dead_code)]
type TriumvirateMembership = pallet_membership::Instance1;
impl pallet_membership::Config<TriumvirateMembership> for Runtime {
type RuntimeEvent = RuntimeEvent;
type AddOrigin = EnsureRoot<AccountId>;
type RemoveOrigin = EnsureRoot<AccountId>;
type SwapOrigin = EnsureRoot<AccountId>;
type ResetOrigin = EnsureRoot<AccountId>;
type PrimeOrigin = EnsureRoot<AccountId>;
type MembershipInitialized = Triumvirate;
type MembershipChanged = Triumvirate;
type MaxMembers = CouncilMaxMembers;
type WeightInfo = pallet_membership::weights::SubstrateWeight<Runtime>;
}
// We call our top K delegates membership Senate
#[allow(dead_code)]
type SenateMembership = pallet_membership::Instance2;
impl pallet_membership::Config<SenateMembership> for Runtime {
type RuntimeEvent = RuntimeEvent;
type AddOrigin = EnsureRoot<AccountId>;
type RemoveOrigin = EnsureRoot<AccountId>;
type SwapOrigin = EnsureRoot<AccountId>;
type ResetOrigin = EnsureRoot<AccountId>;
type PrimeOrigin = EnsureRoot<AccountId>;
type MembershipInitialized = ();
type MembershipChanged = ();
type MaxMembers = SenateMaxMembers;
type WeightInfo = pallet_membership::weights::SubstrateWeight<Runtime>;
}
impl pallet_sudo::Config for Runtime {
type RuntimeEvent = RuntimeEvent;
type RuntimeCall = RuntimeCall;
type WeightInfo = pallet_sudo::weights::SubstrateWeight<Runtime>;
}
parameter_types! {
// According to multisig pallet, key and value size be computed as follows:
// value size is `4 + sizeof((BlockNumber, Balance, AccountId))` bytes
// key size is `32 + sizeof(AccountId)` bytes.
// For our case, One storage item; key size is 32+32=64 bytes; value is size 4+4+8+32 bytes = 48 bytes.
pub const DepositBase: Balance = deposit(1, 112);
// Additional storage item size of 32 bytes.
pub const DepositFactor: Balance = deposit(0, 32);
pub const MaxSignatories: u32 = 100;
}
impl pallet_multisig::Config for Runtime {
type RuntimeEvent = RuntimeEvent;
type RuntimeCall = RuntimeCall;
type Currency = Balances;
type DepositBase = DepositBase;
type DepositFactor = DepositFactor;
type MaxSignatories = MaxSignatories;
type WeightInfo = pallet_multisig::weights::SubstrateWeight<Runtime>;
}
// Proxy Pallet config
parameter_types! {
// One storage item; key size sizeof(AccountId) = 32, value sizeof(Balance) = 8; 40 total
pub const ProxyDepositBase: Balance = deposit(1, 40);
// Adding 32 bytes + sizeof(ProxyType) = 32 + 1
pub const ProxyDepositFactor: Balance = deposit(0, 33);
pub const MaxProxies: u32 = 20; // max num proxies per acct
pub const MaxPending: u32 = 15 * 5; // max blocks pending ~15min
// 16 bytes
pub const AnnouncementDepositBase: Balance = deposit(1, 16);
// 68 bytes per announcement
pub const AnnouncementDepositFactor: Balance = deposit(0, 68);
}
#[derive(
Copy,
Clone,
Eq,
PartialEq,
Ord,
PartialOrd,
Encode,
Decode,
RuntimeDebug,
MaxEncodedLen,
TypeInfo,
)]
pub enum ProxyType {
Any,
Owner, // Subnet owner Calls
NonCritical,
NonTransfer,
Senate,
NonFungibile, // Nothing involving moving TAO
Triumvirate,
Governance, // Both above governance
Staking,
Registration,
Transfer,
SmallTransfer,
RootWeights,
}
// Transfers below SMALL_TRANSFER_LIMIT are considered small transfers
pub const SMALL_TRANSFER_LIMIT: Balance = 500_000_000; // 0.5 TAO
impl Default for ProxyType {
fn default() -> Self {
Self::Any
}
} // allow all Calls; required to be most permissive
impl InstanceFilter<RuntimeCall> for ProxyType {
fn filter(&self, c: &RuntimeCall) -> bool {
match self {
ProxyType::Any => true,
ProxyType::NonTransfer => !matches!(c, RuntimeCall::Balances(..)),
ProxyType::NonFungibile => !matches!(
c,
RuntimeCall::Balances(..)
| RuntimeCall::SubtensorModule(pallet_subtensor::Call::add_stake { .. })
| RuntimeCall::SubtensorModule(pallet_subtensor::Call::remove_stake { .. })
| RuntimeCall::SubtensorModule(pallet_subtensor::Call::burned_register { .. })
| RuntimeCall::SubtensorModule(pallet_subtensor::Call::root_register { .. })
),
ProxyType::Transfer => matches!(
c,
RuntimeCall::Balances(pallet_balances::Call::transfer_keep_alive { .. })
| RuntimeCall::Balances(pallet_balances::Call::transfer_allow_death { .. })
| RuntimeCall::Balances(pallet_balances::Call::transfer_all { .. })
),
ProxyType::SmallTransfer => match c {
RuntimeCall::Balances(pallet_balances::Call::transfer_keep_alive {
value, ..
}) => *value < SMALL_TRANSFER_LIMIT,
RuntimeCall::Balances(pallet_balances::Call::transfer_allow_death {
value,
..
}) => *value < SMALL_TRANSFER_LIMIT,
_ => false,
},
ProxyType::Owner => matches!(c, RuntimeCall::AdminUtils(..)),
ProxyType::NonCritical => !matches!(
c,
RuntimeCall::SubtensorModule(pallet_subtensor::Call::dissolve_network { .. })
| RuntimeCall::SubtensorModule(pallet_subtensor::Call::root_register { .. })
| RuntimeCall::SubtensorModule(pallet_subtensor::Call::burned_register { .. })
| RuntimeCall::Triumvirate(..)
| RuntimeCall::SubtensorModule(pallet_subtensor::Call::set_root_weights { .. })
),
ProxyType::Triumvirate => matches!(
c,
RuntimeCall::Triumvirate(..) | RuntimeCall::TriumvirateMembers(..)
),
ProxyType::Senate => matches!(c, RuntimeCall::SenateMembers(..)),
ProxyType::Governance => matches!(
c,
RuntimeCall::SenateMembers(..)
| RuntimeCall::Triumvirate(..)
| RuntimeCall::TriumvirateMembers(..)
),
ProxyType::Staking => matches!(
c,
RuntimeCall::SubtensorModule(pallet_subtensor::Call::add_stake { .. })
| RuntimeCall::SubtensorModule(pallet_subtensor::Call::remove_stake { .. })
),
ProxyType::Registration => matches!(
c,
RuntimeCall::SubtensorModule(pallet_subtensor::Call::burned_register { .. })
| RuntimeCall::SubtensorModule(pallet_subtensor::Call::register { .. })
),
ProxyType::RootWeights => matches!(
c,
RuntimeCall::SubtensorModule(pallet_subtensor::Call::set_root_weights { .. })
),
}
}
fn is_superset(&self, o: &Self) -> bool {
match (self, o) {
(x, y) if x == y => true,
(ProxyType::Any, _) => true,
(_, ProxyType::Any) => false,
(ProxyType::NonTransfer, _) => {
// NonTransfer is NOT a superset of Transfer or SmallTransfer
!matches!(o, ProxyType::Transfer | ProxyType::SmallTransfer)
}
(ProxyType::Governance, ProxyType::Triumvirate | ProxyType::Senate) => true,
(ProxyType::Transfer, ProxyType::SmallTransfer) => true,
_ => false,
}
}
}
impl pallet_proxy::Config for Runtime {
type RuntimeEvent = RuntimeEvent;
type RuntimeCall = RuntimeCall;
type Currency = Balances;
type ProxyType = ProxyType;
type ProxyDepositBase = ProxyDepositBase;
type ProxyDepositFactor = ProxyDepositFactor;
type MaxProxies = MaxProxies;
type WeightInfo = pallet_proxy::weights::SubstrateWeight<Runtime>;
type MaxPending = MaxPending;
type CallHasher = BlakeTwo256;
type AnnouncementDepositBase = AnnouncementDepositBase;
type AnnouncementDepositFactor = AnnouncementDepositFactor;
}
parameter_types! {
pub MaximumSchedulerWeight: Weight = Perbill::from_percent(80) *
BlockWeights::get().max_block;
pub const MaxScheduledPerBlock: u32 = 50;
pub const NoPreimagePostponement: Option<u32> = Some(10);
}
/// Used the compare the privilege of an origin inside the scheduler.
pub struct OriginPrivilegeCmp;
impl PrivilegeCmp<OriginCaller> for OriginPrivilegeCmp {
fn cmp_privilege(left: &OriginCaller, right: &OriginCaller) -> Option<Ordering> {
if left == right {
return Some(Ordering::Equal);
}
match (left, right) {
// Root is greater than anything.
(OriginCaller::system(frame_system::RawOrigin::Root), _) => Some(Ordering::Greater),
// Check which one has more yes votes.
(
OriginCaller::Triumvirate(pallet_collective::RawOrigin::Members(
l_yes_votes,
l_count,
)),
OriginCaller::Triumvirate(pallet_collective::RawOrigin::Members(
r_yes_votes,
r_count,
)), // Equivalent to (l_yes_votes / l_count).cmp(&(r_yes_votes / r_count))
) => Some(
l_yes_votes
.saturating_mul(*r_count)
.cmp(&r_yes_votes.saturating_mul(*l_count)),
),
// For every other origin we don't care, as they are not used for `ScheduleOrigin`.
_ => None,
}
}
}
impl pallet_scheduler::Config for Runtime {
type RuntimeOrigin = RuntimeOrigin;
type RuntimeEvent = RuntimeEvent;
type PalletsOrigin = OriginCaller;
type RuntimeCall = RuntimeCall;
type MaximumWeight = MaximumSchedulerWeight;
type ScheduleOrigin = EnsureRoot<AccountId>;
type MaxScheduledPerBlock = MaxScheduledPerBlock;
type WeightInfo = pallet_scheduler::weights::SubstrateWeight<Runtime>;
type OriginPrivilegeCmp = OriginPrivilegeCmp;
type Preimages = Preimage;
}
parameter_types! {
pub const PreimageMaxSize: u32 = 4096 * 1024;
pub const PreimageBaseDeposit: Balance = deposit(2, 64);
pub const PreimageByteDeposit: Balance = deposit(0, 1);
pub const PreimageHoldReason: RuntimeHoldReason =
RuntimeHoldReason::Preimage(pallet_preimage::HoldReason::Preimage);
}
impl pallet_preimage::Config for Runtime {
type WeightInfo = pallet_preimage::weights::SubstrateWeight<Runtime>;
type RuntimeEvent = RuntimeEvent;
type Currency = Balances;
type ManagerOrigin = EnsureRoot<AccountId>;
type Consideration = HoldConsideration<
AccountId,
Balances,
PreimageHoldReason,
LinearStoragePrice<PreimageBaseDeposit, PreimageByteDeposit, Balance>,
>;
}
pub struct AllowIdentityReg;
impl CanRegisterIdentity<AccountId> for AllowIdentityReg {
#[cfg(not(feature = "runtime-benchmarks"))]
fn can_register(address: &AccountId, identified: &AccountId) -> bool {
if address != identified {
SubtensorModule::coldkey_owns_hotkey(address, identified)
&& SubtensorModule::is_hotkey_registered_on_network(0, identified)
} else {
SubtensorModule::is_subnet_owner(address)
}
}
#[cfg(feature = "runtime-benchmarks")]
fn can_register(_: &AccountId, _: &AccountId) -> bool {
true
}
}
// Configure registry pallet.
parameter_types! {
pub const MaxAdditionalFields: u32 = 1;
pub const InitialDeposit: Balance = 100_000_000; // 0.1 TAO
pub const FieldDeposit: Balance = 100_000_000; // 0.1 TAO
}
impl pallet_registry::Config for Runtime {
type RuntimeEvent = RuntimeEvent;
type RuntimeHoldReason = RuntimeHoldReason;
type Currency = Balances;
type CanRegister = AllowIdentityReg;
type WeightInfo = pallet_registry::weights::SubstrateWeight<Runtime>;
type MaxAdditionalFields = MaxAdditionalFields;
type InitialDeposit = InitialDeposit;
type FieldDeposit = FieldDeposit;
}
parameter_types! {
pub const MaxCommitFields: u32 = 1;
pub const CommitmentInitialDeposit: Balance = 0; // Free
pub const CommitmentFieldDeposit: Balance = 0; // Free
pub const CommitmentRateLimit: BlockNumber = 100; // Allow commitment every 100 blocks
}
pub struct AllowCommitments;
impl CanCommit<AccountId> for AllowCommitments {
#[cfg(not(feature = "runtime-benchmarks"))]
fn can_commit(netuid: u16, address: &AccountId) -> bool {
SubtensorModule::is_hotkey_registered_on_network(netuid, address)
}
#[cfg(feature = "runtime-benchmarks")]
fn can_commit(_: u16, _: &AccountId) -> bool {
true
}
}
impl pallet_commitments::Config for Runtime {
type RuntimeEvent = RuntimeEvent;
type Currency = Balances;
type WeightInfo = pallet_commitments::weights::SubstrateWeight<Runtime>;
type CanCommit = AllowCommitments;
type MaxFields = MaxCommitFields;
type InitialDeposit = CommitmentInitialDeposit;
type FieldDeposit = CommitmentFieldDeposit;
type RateLimit = CommitmentRateLimit;
}
#[cfg(not(feature = "fast-blocks"))]
pub const INITIAL_SUBNET_TEMPO: u16 = 99;
#[cfg(feature = "fast-blocks")]
pub const INITIAL_SUBNET_TEMPO: u16 = 10;
#[cfg(not(feature = "fast-blocks"))]
pub const INITIAL_CHILDKEY_TAKE_RATELIMIT: u64 = 216000; // 30 days at 12 seconds per block
#[cfg(feature = "fast-blocks")]
pub const INITIAL_CHILDKEY_TAKE_RATELIMIT: u64 = 5;
// Configure the pallet subtensor.
parameter_types! {
pub const SubtensorInitialRho: u16 = 10;
pub const SubtensorInitialKappa: u16 = 32_767; // 0.5 = 65535/2
pub const SubtensorInitialMaxAllowedUids: u16 = 4096;
pub const SubtensorInitialIssuance: u64 = 0;
pub const SubtensorInitialMinAllowedWeights: u16 = 1024;
pub const SubtensorInitialEmissionValue: u16 = 0;
pub const SubtensorInitialMaxWeightsLimit: u16 = 1000; // 1000/2^16 = 0.015
pub const SubtensorInitialValidatorPruneLen: u64 = 1;
pub const SubtensorInitialScalingLawPower: u16 = 50; // 0.5
pub const SubtensorInitialMaxAllowedValidators: u16 = 128;
pub const SubtensorInitialTempo: u16 = INITIAL_SUBNET_TEMPO;
pub const SubtensorInitialDifficulty: u64 = 10_000_000;
pub const SubtensorInitialAdjustmentInterval: u16 = 100;
pub const SubtensorInitialAdjustmentAlpha: u64 = 0; // no weight to previous value.
pub const SubtensorInitialTargetRegistrationsPerInterval: u16 = 2;
pub const SubtensorInitialImmunityPeriod: u16 = 4096;
pub const SubtensorInitialActivityCutoff: u16 = 5000;
pub const SubtensorInitialMaxRegistrationsPerBlock: u16 = 1;
pub const SubtensorInitialPruningScore : u16 = u16::MAX;
pub const SubtensorInitialBondsMovingAverage: u64 = 900_000;
pub const SubtensorInitialDefaultTake: u16 = 11_796; // 18% honest number.
pub const SubtensorInitialMinDelegateTake: u16 = 0; // Allow 0% delegate take
pub const SubtensorInitialDefaultChildKeyTake: u16 = 0; // Allow 0% childkey take
pub const SubtensorInitialMinChildKeyTake: u16 = 0; // 0 %
pub const SubtensorInitialMaxChildKeyTake: u16 = 11_796; // 18 %
pub const SubtensorInitialWeightsVersionKey: u64 = 0;
pub const SubtensorInitialMinDifficulty: u64 = 10_000_000;
pub const SubtensorInitialMaxDifficulty: u64 = u64::MAX / 4;
pub const SubtensorInitialServingRateLimit: u64 = 50;
pub const SubtensorInitialBurn: u64 = 1_000_000_000; // 1 tao
pub const SubtensorInitialMinBurn: u64 = 1_000_000_000; // 1 tao
pub const SubtensorInitialMaxBurn: u64 = 100_000_000_000; // 100 tao
pub const SubtensorInitialTxRateLimit: u64 = 1000;
pub const SubtensorInitialTxDelegateTakeRateLimit: u64 = 216000; // 30 days at 12 seconds per block
pub const SubtensorInitialTxChildKeyTakeRateLimit: u64 = INITIAL_CHILDKEY_TAKE_RATELIMIT;
pub const SubtensorInitialRAORecycledForRegistration: u64 = 0; // 0 rao
pub const SubtensorInitialSenateRequiredStakePercentage: u64 = 1; // 1 percent of total stake
pub const SubtensorInitialNetworkImmunity: u64 = 7 * 7200;
pub const SubtensorInitialMinAllowedUids: u16 = 128;
pub const SubtensorInitialMinLockCost: u64 = 1_000_000_000_000; // 1000 TAO
pub const SubtensorInitialSubnetOwnerCut: u16 = 11_796; // 18 percent
pub const SubtensorInitialSubnetLimit: u16 = 12;
pub const SubtensorInitialNetworkLockReductionInterval: u64 = 14 * 7200;
pub const SubtensorInitialNetworkRateLimit: u64 = 7200;
pub const SubtensorInitialTargetStakesPerInterval: u16 = 1;
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
pub const SubtensorInitialHotkeyEmissionTempo: u64 = 7200; // Drain every day.
pub const SubtensorInitialNetworkMaxStake: u64 = u64::MAX; // Maximum possible value for u64, this make the make stake infinity
pub const InitialColdkeySwapScheduleDuration: BlockNumber = 5 * 24 * 60 * 60 / 12; // 5 days
pub const InitialDissolveNetworkScheduleDuration: BlockNumber = 5 * 24 * 60 * 60 / 12; // 5 days
}
impl pallet_subtensor::Config for Runtime {
type RuntimeEvent = RuntimeEvent;
type RuntimeCall = RuntimeCall;
type SudoRuntimeCall = RuntimeCall;
type Currency = Balances;
type CouncilOrigin = EnsureMajoritySenate;
type SenateMembers = ManageSenateMembers;
type TriumvirateInterface = TriumvirateVotes;
type Scheduler = Scheduler;
type InitialRho = SubtensorInitialRho;
type InitialKappa = SubtensorInitialKappa;
type InitialMaxAllowedUids = SubtensorInitialMaxAllowedUids;
type InitialBondsMovingAverage = SubtensorInitialBondsMovingAverage;
type InitialIssuance = SubtensorInitialIssuance;
type InitialMinAllowedWeights = SubtensorInitialMinAllowedWeights;
type InitialEmissionValue = SubtensorInitialEmissionValue;
type InitialMaxWeightsLimit = SubtensorInitialMaxWeightsLimit;
type InitialValidatorPruneLen = SubtensorInitialValidatorPruneLen;
type InitialScalingLawPower = SubtensorInitialScalingLawPower;
type InitialTempo = SubtensorInitialTempo;
type InitialDifficulty = SubtensorInitialDifficulty;
type InitialAdjustmentInterval = SubtensorInitialAdjustmentInterval;
type InitialAdjustmentAlpha = SubtensorInitialAdjustmentAlpha;
type InitialTargetRegistrationsPerInterval = SubtensorInitialTargetRegistrationsPerInterval;
type InitialImmunityPeriod = SubtensorInitialImmunityPeriod;
type InitialActivityCutoff = SubtensorInitialActivityCutoff;
type InitialMaxRegistrationsPerBlock = SubtensorInitialMaxRegistrationsPerBlock;
type InitialPruningScore = SubtensorInitialPruningScore;
type InitialMaxAllowedValidators = SubtensorInitialMaxAllowedValidators;
type InitialDefaultDelegateTake = SubtensorInitialDefaultTake;
type InitialDefaultChildKeyTake = SubtensorInitialDefaultChildKeyTake;