forked from moonbeam-foundation/moonbeam-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.yml
1044 lines (1044 loc) · 33.5 KB
/
variables.yml
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
networks:
development:
build_tag: v0.31.1
tracing_tag: purestake/moonbeam-tracing:v0.31.1-2302-latest
rpc_url: http://127.0.0.1:9944
wss_url: ws://127.0.0.1:9944
chain_id: 1281
hex_chain_id: '0x501'
container_name: moonbeam_development
block_explorer: https://moonbeam-explorer.netlify.app/
moonbase:
rpc_url: https://rpc.api.moonbase.moonbeam.network
wss_url: wss://wss.api.moonbase.moonbeam.network
chain_id: 1287
hex_chain_id: '0x507'
chain_spec: alphanet
block_explorer: https://moonbase.moonscan.io/
parachain_release_tag: v0.31.1 # must be in this exact format for links to work
parachain_sha256sum: 7be10574dee3f5b4fc61fef120e6742cdbee5739a36ebc052144cc3a9bff94f5
tracing_tag: purestake/moonbeam-tracing:v0.31.1-2302-latest
gas_block: 15M
gas_tx: 12.995M
node_directory: /var/lib/alphanet-data
node_db_loc: /chains/moonbase_alpha/db
binary_name: moonbeam
min_gas_price: 1
block_time: 12
website_faucet_amount: 1.1 DEV tokens
chaindrop_faucet_amount: 0.1 DEV tokens
node:
cores: 8
ram: 16
hd: 1
thegraph:
lotto_contract: '0x44ddD2EC5BE2A7f3e4A465C21600bE8df644093f'
block_number: 132605
razor:
bridge_address: '0xC6F33c0F15FE5e3A51A019524ac43574cFF29EFB'
chainlink:
oracle_contract: '0x1d693d883BeAeE16edD0D7588D6a9f7E1967E798'
link_contract: '0xa36085F69e2889c224210F603D836748e7dC0088'
client_contract: '0x8ea35EdC1709ea0Ea2C86241C7D1C84Fd0dDeB11'
basic:
aave_usd: '7ddc5b9e9eef410184666620dbc740a4'
avax_usd: '007ba4a3bf424ea79d2fad13fd763808'
algo_usd: '9ac119b772ed4d2580965fa84ef26f56'
band_usd: '6405edbca42e4b92bd4de2601310de79'
bnb_usd: 'f4d1d07ce01d4039a410f0592ab9df4c'
btc_usd: '02d8ae1716924ea7af12dba7d08aa9a2'
comp_usd: '35c893eca2eb4a35b6ee8b786920df2d'
crv_usd: 'f8b5326162214b22874d3df2394f4da2'
cvx_usd: 'a0f8e66321a64383b4ab92b98c44a500'
dai_usd: 'e191bd95b8134508bb258fc8c4375956'
dot_usd: '58a5aba286a143b68f9fcf9c1f022fd5'
eth_usd: 'e539daf468bb465c9c795deb5ff7fe22'
frax_usd: '2a6d5b0b0e4b4d38b63dc4ea7a4aa2b9'
ftm_usd: '6bf63cdfd9d54512b53671375d489079'
ksm_usd: 'db34748e6cad4eab895eae8cbfacc80b'
link_usd: 'caea548c900d49959c91d595ef3854b6'
mkr_usd: '2b32e18e39404182a8357c1caa9c6f74'
op_usd: '99c4ff9ec4194208a06c082353cef852'
steth_usd: '7d8b047a8e5e4a88adf4d24896a833e5'
sushi_usd: '36e18c5b30b24b988c007dc9343cad5e'
uni_usd: '49f014fd0475434cbe32e8f14d0d5d6d'
usdc_usd: '76dcaca128a24ec4aa46a3f17d084d02'
usdt_usd: '7407e378b901429d884eebee1c1b7ee6'
yfi_usd: 'f0f56b5c976649cb9d681f18efce34d1'
feed:
proxy:
aave_usd: '0x9DA76AE39AECA424801DF1b63e9E2750643F9e76'
algo_usd: '0x49E1021974902B4a279fC7D359b4890FC38F8261'
avax_usd: '0xA356990bCDed8Cc6865Be606D64E7381bfe00B72'
band_usd: '0x8997c0A8Dc9d13061FCf303711D1db4278e53a1B'
bnb_usd: '0x4ADfBA6138A5bdA31f980EF5D59Fc7f8440A5D92'
btc_usd: '0xa39d8684B8cd74821db73deEB4836Ea46E145300'
comp_usd: '0xaa18FFaF5E2f410250D318b57EAd2C68603A382c'
crv_usd: '0x1a435D01CB50E6B1F8e429a32EE03BF164B43ece'
cvx_usd: '0x3A1Ac4DA79a3c813b2B335d1a631adEec360A59c'
dai_usd: '0x5A5737F6C0683be63863131bfCAd793a9F828DDa'
dot_usd: '0xA8B2138c8E765288D4f6fb7D3ebCe2507A006a9C'
eth_usd: '0x0BAA6E884cfD628b33867F9E081B44a76276fA2D'
frax_usd: '0xB616464cB6135AF542de908FAa3FbE3a0b3048e4'
ftm_usd: '0xD23f056ceD090Bc9Cf6c75d2FB43c0ccC35AD542'
glmr_usd: '0x537879A0beA294c1ce04161Ae827919e92C23e92'
ksm_usd: '0x4E9A1ebc0bEebe3516a8A9a911D781c37414bb39'
link_usd: '0x5310f2d4B531BCEA8126e2aEE40BAd71B707f530'
mkr_usd: '0x2257c46D4ddF160bACBD00cd67cD6Fd87C48c581'
op_usd: '0xC5837B50a86fD87e1D2FbE4FEbFe7C042a9CFBE8'
steth_usd: '0x49CEee3f8e9e05f26A81f1122A78D058Ef3c05a9'
sushi_usd: '0xd265FAfc809108D9cf47b6970d750419ba9355B8'
uni_usd: '0x326fAFb9E9B5188d7c2e95C0D782ECB19E5EfDF9'
usdc_usd: '0xCb1c08B86C6EaC617b1bEd5D1E9cD7Fd308FdA4d'
usdt_usd: '0x141Ec95dB9298cB4Bb20CbAC422A42A047a764b1'
yfi_usd: '0x8E812AA9f56BBAa5B936c8F08B0a260f3eF7cF46'
randomness:
max_random_words: 100
min_vrf_blocks_delay: 2
max_vrf_blocks_delay: 2000
req_deposit_amount:
dev: 1
wei: 1000000000000000000
block_expiration: 10000
epoch_expiration: 10000
epoch_fulfillment_delay: 2
xcm:
channel:
account_id: '5GWpSdqkkKGZmdKQ9nkSF7TmHp6JWt28BMGQNuG4MXtSvq3e'
account_id_hex: '0xc4db7bcb733e117c0b34ac96354b10d47e84a006b9e7e66a229d174e8ff2a063'
instructions:
buy_exec:
base_weight: 158,702,000
total_weight: 258,702,000
weight_units:
display: 200,000,000
wei_per_weight:
display: 50,000
units_per_second:
xcbetadev:
transact_numbers_only: 50000000000000000
conviction:
lock_period:
conviction_1: 1
conviction_2: 2
conviction_3: 4
conviction_4: 8
conviction_5: 16
conviction_6: 32
governance:
tracks:
root:
max_deciding: 5
decision_deposit: 100000
prepare_period:
time: '1 day'
blocks: 7200
decision_period:
time: '14 days'
blocks: 100800
confirm_period:
time: '1 day'
blocks: 7200
min_enactment_period:
time: '1 day'
blocks: 7200
min_approval:
time0: 'Day 0'
percent0: 100
time1: 'Day 4'
percent1: 80
time2: 'Day 14'
percent2: 50
min_support:
time0: 'Day 0'
percent0: 25
time1: 'Day 14'
percent1: .5
whitelisted:
max_deciding: 100
decision_deposit: 10000
prepare_period:
time: '10 minutes'
blocks: 50
decision_period:
time: '14 days'
blocks: 100800
confirm_period:
time: '10 minutes'
blocks: 50
min_enactment_period:
time: '30 minutes'
blocks: 150
min_approval:
time0: 'Day 0'
percent0: 100
time1: 'Day 1'
percent1: 96
time2: 'Day 14'
percent2: 50
min_support:
time0: 'Day 0'
percent0: 2
time1: 'Hour 1'
percent1: 1
time2: 'Day 14'
percent2: 0
general_admin:
max_deciding: 10
decision_deposit: 500
prepare_period:
time: '1 hour'
blocks: 300
decision_period:
time: '14 days'
blocks: 100800
confirm_period:
time: '1 day'
blocks: 7200
min_enactment_period:
time: '1 day'
blocks: 7200
min_approval:
time0: 'Day 0'
percent0: 100
time1: 'Day 4'
percent1: 80
time2: 'Day 14'
percent2: 50
min_support:
time0: 'Day 0'
percent0: 50
time1: 'Day 7'
percent1: 10
time2: 'Day 14'
percent2: 0
canceller:
max_deciding: 20
decision_deposit: 10000
prepare_period:
time: '1 hour'
blocks: 300
decision_period:
time: '14 days'
blocks: 100800
confirm_period:
time: '3 hours'
blocks: 900
min_enactment_period:
time: '10 minutes'
blocks: 50
min_approval:
time0: 'Day 0'
percent0: 100
time1: 'Day 1'
percent1: 96
time2: 'Day 14'
percent2: 50
min_support:
time0: 'Day 0'
percent0: 50
time1: 'Day 1'
percent1: 1
time2: 'Day 14'
percent2: 0
killer:
max_deciding: 100
decision_deposit: 20000
prepare_period:
time: '1 hour'
blocks: 300
decision_period:
time: '14 days'
blocks: 100800
confirm_period:
time: '3 hours'
blocks: 900
min_enactment_period:
time: '10 minutes'
blocks: 50
min_approval:
time0: 'Day 0'
percent0: 100
time1: 'Day 1'
percent1: 96
time2: 'Day 14'
percent2: 50
min_support:
time0: 'Day 0'
percent0: 10
time1: 'Day 1'
percent1: 1
time2: 'Day 14'
percent2: 0
submission_deposit: 10
max_votes: 512
preimage:
base_deposit: 5
byte_deposit: 0.0001
democracy:
launch_period:
days: 1
blocks: 7200
vote_period:
days: 5
blocks: 36000
fast_vote_period:
hours: 4
blocks: 1200
enact_period:
days: 1
blocks: 7200
cool_period:
days: 7
blocks: 50400
min_deposit: 4
min_preim_deposit: 0.004
max_votes: 100
max_proposals: 100
max_referenda: 5
inflation:
total_annual_inflation: 5
delegator_reward_inflation: 50
collator_reward_inflation: 20
parachain_bond_inflation: 30
staking:
min_col_stk: 1000
min_can_stk: 500
min_can_stk_wei: 500000000000000000000
collator_map_bond: 100
max_candidates: 37
round_blocks: 600
round_hours: 2
min_del_stake: 1
min_del_stake_wei: 1000000000000000000
max_del_per_can: 300
max_del_per_del: 100
candidates:
address1: '0x4c5A56ed5A4FF7B09aA86560AfD7d383F4831Cce'
address2: '0x623c9E50647a049F92090fe55e22cC0509872FB6'
treasury:
current_council_members: 2
motion_duration_days: 3
motion_duration_blocks: 21600
proposal_bond: 5
proposal_bond_min: 1
proposal_bond_max: uncapped
spend_period_blocks: 43200
spend_period_days: 6
max_approved_proposals: 100
tx_fees_allocated: 20
tx_fees_burned: 80
proxy:
deposit_base: 1.0008
deposit_factor: 0.0021
max_proxies: 32
identity:
basic_dep: 1.0258
field_dep: .0066
max_fields: 100
delegator_timings:
leave_delegators:
rounds: 2
hours: 4
revoke_delegations:
rounds: 2
hours: 4
del_bond_less:
rounds: 2
hours: 4
rewards_payouts:
rounds: 2
hours: 4
collator_timings:
leave_candidates:
rounds: 2
hours: 4
can_bond_less:
rounds: 2
hours: 4
precompiles:
staking: '0x0000000000000000000000000000000000000800'
crowdloan: '0x0000000000000000000000000000000000000801'
erc20: '0x0000000000000000000000000000000000000802'
democracy: '0x0000000000000000000000000000000000000803'
xtokens: '0x0000000000000000000000000000000000000804'
relay_encoder: '0x0000000000000000000000000000000000000805'
xcm_transactor_legacy: '0x0000000000000000000000000000000000000806'
author_mapping: '0x0000000000000000000000000000000000000807'
batch: '0x0000000000000000000000000000000000000808'
randomness: '0x0000000000000000000000000000000000000809'
call_permit: '0x000000000000000000000000000000000000080a'
proxy: '0x000000000000000000000000000000000000080b'
xcm_utils: '0x000000000000000000000000000000000000080C'
xcm_transactor: '0x000000000000000000000000000000000000080d'
collective_council: '0x000000000000000000000000000000000000080e'
collective_tech_committee: '0x000000000000000000000000000000000000080f'
collective_treasury: '0x0000000000000000000000000000000000000810'
referenda: '0x0000000000000000000000000000000000000811'
conviction_voting: '0x0000000000000000000000000000000000000812'
preimage: '0x0000000000000000000000000000000000000813'
collective_opengov_tech_committee: '0x0000000000000000000000000000000000000814'
registry: '0x0000000000000000000000000000000000000815'
gmp: '0x0000000000000000000000000000000000000816'
substrate_api_sidecar:
stable_version: 14.1.1
tx_weight_to_gas_ratio: 25000
mintable_xc20:
asset_deposit: 100
metadata_base_deposit: 1.0068
metadata_byte_deposit: .0001
orbiter:
max_orbiters_per_collator: 4
max_collators: Unlimited
active:
rounds: 3
hours: 6
bond: 100
multisig:
api_page: https://transaction.moonbase.multisig.moonbeam.network/
db_weights:
rocksdb_read: 25,000,000
rocksdb_write: 100,000,000
api3:
rrp: '0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd'
nodaryqrngairnode: '0x6238772544f029ecaBfDED4300f13A3c4FE84E1D'
nodaryqrngxpub: 'xpub6CuDdF9zdWTRuGybJPuZUGnU4suZowMmgu15bjFZT2o6PUtk4Lo78KGJUGBobz3pPKRaN9sLxzj21CMe6StP3zUsd8tWEJPgZBesYBMY7Wo'
nodaryqrnguint256: '0xfb6d017bb87991b7495f563db3c8cf59ff87b09781947bb1e417006ad7f55a78'
nodaryqrnguint256array: '0x27cc2713e7f968e4e86ed274a051a5c8aaee9cca66946f23af6f29ecea9704c3'
moonriver:
public_rpc_url: https://rpc.api.moonriver.moonbeam.network # for wallets
rpc_url: INSERT_RPC_API_ENDPOINT
wss_url: INSERT_WSS_API_ENDPOINT
chain_id: 1285
hex_chain_id: '0x505'
node_directory: /var/lib/moonriver-data
parachain_release_tag: v0.31.1
parachain_sha256sum: 7be10574dee3f5b4fc61fef120e6742cdbee5739a36ebc052144cc3a9bff94f5
tracing_tag: purestake/moonbeam-tracing:v0.31.1-2302-latest
chain_spec: moonriver
block_explorer: https://moonriver.moonscan.io/
binary_name: moonbeam
min_gas_price: 1
block_time: 12
gas_block: 15M
gas_tx: 12.995M
node:
cores: 8
ram: 16
hd: 1
xcm:
channel:
account_id: '5E6kHM4zFdH5KEJE3YEzX5QuqoETVKUQadeY8LVmeh2HyHGt'
account_id_hex: '0x5a071f642798f89d68b050384132eea7b65db483b00dbb05548d3ce472cfef48'
instructions:
weight_units:
display: 200,000,000
wei_per_weight:
display: 50,000
conviction:
lock_period:
conviction_1: 1
conviction_2: 2
conviction_3: 4
conviction_4: 8
conviction_5: 16
conviction_6: 32
governance:
tracks:
root:
max_deciding: 5
decision_deposit: 100000
prepare_period:
time: '1 day'
blocks: 7200
decision_period:
time: '14 days'
blocks: 100800
confirm_period:
time: '1 day'
blocks: 7200
min_enactment_period:
time: '1 day'
blocks: 7200
min_approval:
time0: 'Day 0'
percent0: 100
time1: 'Day 4'
percent1: 80
time2: 'Day 14'
percent2: 50
min_support:
time0: 'Day 0'
percent0: 25
time1: 'Day 14'
percent1: .5
whitelisted:
max_deciding: 100
decision_deposit: 10000
prepare_period:
time: '10 minutes'
blocks: 50
decision_period:
time: '14 days'
blocks: 100800
confirm_period:
time: '10 minutes'
blocks: 50
min_enactment_period:
time: '30 minutes'
blocks: 150
min_approval:
time0: 'Day 0'
percent0: 100
time1: 'Day 1'
percent1: 96
time2: 'Day 14'
percent2: 50
min_support:
time0: 'Day 0'
percent0: 2
time1: 'Hour 1'
percent1: 1
time2: 'Day 14'
percent2: 0
general_admin:
max_deciding: 10
decision_deposit: 500
prepare_period:
time: '1 hour'
blocks: 300
decision_period:
time: '14 days'
blocks: 100800
confirm_period:
time: '1 day'
blocks: 7200
min_enactment_period:
time: '1 day'
blocks: 7200
min_approval:
time0: 'Day 0'
percent0: 100
time1: 'Day 4'
percent1: 80
time2: 'Day 14'
percent2: 50
min_support:
time0: 'Day 0'
percent0: 50
time1: 'Day 7'
percent1: 10
time2: 'Day 14'
percent2: 0
canceller:
max_deciding: 20
decision_deposit: 10000
prepare_period:
time: '1 hour'
blocks: 300
decision_period:
time: '14 days'
blocks: 100800
confirm_period:
time: '3 hours'
blocks: 900
min_enactment_period:
time: '10 minutes'
blocks: 50
min_approval:
time0: 'Day 0'
percent0: 100
time1: 'Day 1'
percent1: 96
time2: 'Day 14'
percent2: 50
min_support:
time0: 'Day 0'
percent0: 50
time1: 'Day 7'
percent1: 1
time2: 'Day 14'
percent2: 0
killer:
max_deciding: 100
decision_deposit: 20000
prepare_period:
time: '1 hour'
blocks: 300
decision_period:
time: '14 days'
blocks: 100800
confirm_period:
time: '3 hours'
blocks: 900
min_enactment_period:
time: '10 minutes'
blocks: 50
min_approval:
time0: 'Day 0'
percent0: 100
time1: 'Day 1'
percent1: 96
time2: 'Day 14'
percent2: 50
min_support:
time0: 'Day 0'
percent0: 10
time1: 'Day 1'
percent1: 1
time2: 'Day 14'
percent2: 0
submission_deposit: 10
max_votes: 512
preimage:
base_deposit: 5
byte_deposit: 0.0001
democracy:
launch_period:
days: 1
blocks: 7200
vote_period:
days: 5
blocks: 36000
fast_vote_period:
hours: 3
blocks: 900
enact_period:
days: 1
blocks: 7200
cool_period:
days: 7
blocks: 50400
min_deposit: 4
max_votes: 100
min_preim_deposit: 0.004
max_proposals: 100
max_referenda: 5
inflation:
total_annual_inflation: 5
delegator_reward_inflation: 50
collator_reward_inflation: 20
parachain_bond_inflation: 30
staking:
min_col_stk: 10000
min_can_stk: 10000
min_can_stk_wei: 10000000000000000000000
collator_map_bond: 100
max_candidates: 72
paid_out_block: 73 # Update this whenever max_candidates is changed! Always max_candidates + 1!
round_blocks: 600
round_hours: 2
min_del_stake: 5
max_del_per_can: 300
max_del_per_del: 100
treasury:
current_council_members: 5
motion_duration_days: 3
motion_duration_blocks: 21600
proposal_bond: 5
proposal_bond_min: 1
proposal_bond_max: uncapped
spend_period_blocks: 43200
spend_period_days: 6
max_approved_proposals: 100
tx_fees_allocated: 20
tx_fees_burned: 80
proxy:
deposit_base: 1.0008
deposit_factor: 0.0021
max_proxies: 32
identity:
basic_dep: 1.0258
field_dep: .0066
max_fields: 100
delegator_timings:
leave_delegators:
rounds: 24
hours: 48
revoke_delegations:
rounds: 24
hours: 48
del_bond_less:
rounds: 24
hours: 48
days: 2
rewards_payouts:
rounds: 2
hours: 4
collator_timings:
leave_candidates:
rounds: 24
hours: 48
can_bond_less:
rounds: 24
hours: 48
precompiles:
staking: '0x0000000000000000000000000000000000000800'
crowdloan: '0x0000000000000000000000000000000000000801'
erc20: '0x0000000000000000000000000000000000000802'
democracy: '0x0000000000000000000000000000000000000803'
xtokens: '0x0000000000000000000000000000000000000804'
relay_encoder: '0x0000000000000000000000000000000000000805'
xcm_transactor_legacy: '0x0000000000000000000000000000000000000806'
author_mapping: '0x0000000000000000000000000000000000000807'
batch: '0x0000000000000000000000000000000000000808'
randomness: '0x0000000000000000000000000000000000000809'
call_permit: '0x000000000000000000000000000000000000080a'
proxy: '0x000000000000000000000000000000000000080b'
xcm_utils: '0x000000000000000000000000000000000000080C'
xcm_transactor: '0x000000000000000000000000000000000000080d'
collective_council: '0x000000000000000000000000000000000000080e'
collective_tech_committee: '0x000000000000000000000000000000000000080f'
collective_treasury: '0x0000000000000000000000000000000000000810'
referenda: '0x0000000000000000000000000000000000000811'
conviction_voting: '0x0000000000000000000000000000000000000812'
preimage: '0x0000000000000000000000000000000000000813'
collective_opengov_tech_committee: '0x0000000000000000000000000000000000000814'
registry: '0x0000000000000000000000000000000000000815'
gmp: '0x0000000000000000000000000000000000000816'
api3:
rrp: '0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd'
anuqrngairnode: '0x9d3C147cA16DB954873A498e0af5852AB39139f2'
anuqrngxpub: 'xpub6DXSDTZBd4aPVXnv6Q3SmnGUweFv6j24SK77W4qrSFuhGgi666awUiXakjXruUSCDQhhctVG7AQt67gMdaRAsDnDXv23bBRKsMWvRzo6kbf'
anuqrnguint256: '0xfb6d017bb87991b7495f563db3c8cf59ff87b09781947bb1e417006ad7f55a78'
anuqrnguint256array: '0x27cc2713e7f968e4e86ed274a051a5c8aaee9cca66946f23af6f29ecea9704c3'
chainlink:
feed:
proxy:
inch_usd: '0x1466b4bD0C4B6B8e1164991909961e0EE6a66d8c'
aave_usd: '0x37f35ef6735c594e6E803bC81577bAC759d8179C'
ankr_usd: '0x94Ee35E8b9B1b4Cd3BDB720242d6d1796b43C2Ff'
avax_usd: '0x992F9B8Aa09B8e084acf4e3213d8b2da5D366D6a'
axs_usd: '0x9322CeAd48BA0C76Fecc78e82499ce8a829Eab89'
bnb_usd: '0xD6B013A65C22C372F995864CcdAE202D0194f9bf'
btc_usd: '0x1B5C6cF9Df1CBF30387C24CC7DB1787CCf65C797'
busd_usd: '0x596129F6ABCaB2E6E81D19284B78eA73C176D170'
cake_usd: '0xc44ecD8C11fd1F281A3d6044CA65e649484B228c'
comp_usd: '0x29710821d57a1Fc46E2D9FdDE65Df2cF205bad2A'
crv_usd: '0x03d44d68EdF41c540A90C6eB2BE27C4a75ee689f'
dai_usd: '0x7ba0e3EbCe25DD3b5A0f36dd7aB34019B863b08D'
dot_usd: '0x54B584eb643375C41c55ddD8Da4b90124b18d05c'
eth_usd: '0xc3cF399566220dc5Ed6C8CFbf8247214Af103C72'
eur_usd: '0xe6Ccbe1Cb33dF799a59E37a1382c7009dbaBE9ff'
frax_usd: '0xD080d4760318710e795B0a59f181f6C1512ffB15'
ftm_usd: '0x5e70fC5f38cB930F9BE8BEAEaF80CF927Af3B17E'
fxs_usd: '0xE5B624e1098C25C94279bA20A0CC68Fa9215e63b'
ksm_usd: '0x6e0513145FCE707Cd743528DB7C1cAB537DE9d1B'
link_usd: '0xdD27789b504fEd690F406A82F16B45a0901172C0'
luna_usd: '0x5F8E0c452EcA522a2208Fff7443515AaFF3cAaE6'
mana_usd: '0x424807fA7B16f747CbD30963fAe25fB8Db0b97bF'
mim_usd: '0xdD6296BD7515271F7E4b10C3A87A2f9863fECa97'
mkr_usd: '0xD8542f327FaD60b80D8C19025147E6b9d857bb99'
movr_usd: '0x3f8BFbDc1e79777511c00Ad8591cef888C2113C1'
sand_usd: '0x5403385DF6eb607fc1fA6983eF5801A11eC7fD9a'
snx_usd: '0x26E3F9273abC8a01228bE97a106E60FA38b98df2'
sushi_usd: '0x28A9E2747a10eE94D2d7359DEB60023D19FfdD96'
theta_usd: '0xA0784167e040906b5580e3c4a53932B288f615ce'
uni_usd: '0x05Ec3Fb5B7CB3bE9D7150FBA1Fb0749407e5Aa8a'
usdc_usd: '0x12870664a77Dd55bBdcDe32f91EB3244F511eF2e'
usdt_usd: '0xF80DAd54AF79257D41c30014160349896ca5370a'
xrp_usd: '0x3FD363679fb59596d45881bbfBe4bb864f3545A2'
yfi_usd: '0xE3324ea60FA272BBB4511dDBD4776feFE4674fa0'
randomness:
max_random_words: 100
min_vrf_blocks_delay: 2
max_vrf_blocks_delay: 2000
req_deposit_amount:
movr: 1
wei: 1000000000000000000
block_expiration: 10000
epoch_expiration: 10000
epoch_fulfillment_delay: 2
substrate_api_sidecar:
stable_version: 14.1.1
tx_weight_to_gas_ratio: 25000
mintable_xc20:
asset_deposit: 100
metadata_base_deposit: 1.0068
metadata_byte_deposit: .0001
orbiter:
max_orbiters_per_collator: 3
max_collators: 8
active:
rounds: 3
hours: 6
bond: 400
multisig:
api_page: https://transaction.moonriver.multisig.moonbeam.network/
moonbeam:
public_rpc_url: https://rpc.api.moonbeam.network # for wallets
rpc_url: INSERT_RPC_API_ENDPOINT
wss_url: INSERT_WSS_API_ENDPOINT
chain_id: 1284
hex_chain_id: '0x504'
node_directory: /var/lib/moonbeam-data
parachain_release_tag: v0.31.1
parachain_sha256sum: 7be10574dee3f5b4fc61fef120e6742cdbee5739a36ebc052144cc3a9bff94f5
tracing_tag: purestake/moonbeam-tracing:v0.31.1-2302-latest
chain_spec: moonbeam
block_explorer: https://moonscan.io
binary_name: moonbeam
min_gas_price: 100
block_time: 12
gas_block: 15M
gas_tx: 12.995M
node:
cores: 8
ram: 16
hd: 1
xcm:
channel:
account_id: '5E6kHM4zFdH5KEJE3YEzX5QuqoETVKUQadeY8LVmeh2HyHGt'
account_id_hex: '0x5a071f642798f89d68b050384132eea7b65db483b00dbb05548d3ce472cfef48'
instructions:
weight_units:
display: 200,000,000
numbers_only: 200000000
wei_per_weight:
display: 5,000,000
numbers_only: 5000000
wei_cost: 1000000000000000
glmr_cost: 0.001
units_per_second:
xcdot:
transfer: 11,285,231,116
transfer_numbers_only: 11285231116
transact_numbers_only: 120692776537
message:
transfer:
exec_time: 0.0008
xcdot_cost: 0.00090281848
preimage:
base_deposit: 500
byte_deposit: .01
democracy:
launch_period:
days: 7
blocks: 50400
vote_period:
days: 14
blocks: 100800
fast_vote_period:
days: 1
blocks: 7200
enact_period:
days: 2
blocks: 14400
cool_period:
days: 7
blocks: 50400
min_deposit: 400
max_votes: 100
min_preim_deposit: 0.04
max_proposals: 100
max_referenda: 2
lock_period:
conviction_1: 7
conviction_2: 14
conviction_3: 28
conviction_4: 56
conviction_5: 112
conviction_6: 224
inflation:
total_annual_inflation: 5
delegator_reward_inflation: 50
collator_reward_inflation: 20
parachain_bond_inflation: 30
staking:
min_col_stk: 2000000
min_can_stk: 2000000
min_can_stk_wei: 2000000000000000000000000
collator_map_bond: 10000
max_candidates: 72
round_blocks: 1800
round_hours: 6
min_del_stake: 50
max_del_per_can: 300
max_del_per_del: 100
treasury:
current_council_members: 5
motion_duration_days: 3
motion_duration_blocks: 21600
proposal_bond: 5
proposal_bond_min: 100
proposal_bond_max: uncapped
spend_period_blocks: 43200
spend_period_days: 6
max_approved_proposals: 100
tx_fees_allocated: 20
tx_fees_burned: 80
proxy:
deposit_base: 10.08
deposit_factor: 0.21
max_proxies: 32
identity:
basic_dep: 1.0258
field_dep: .0066
max_fields: 100
delegator_timings:
leave_delegators:
rounds: 28
hours: 168
revoke_delegations:
rounds: 28
hours: 168
del_bond_less:
rounds: 28
hours: 168
days: 7
rewards_payouts:
rounds: 2
hours: 12
collator_timings:
leave_candidates:
rounds: 28
hours: 168
can_bond_less:
rounds: 28
hours: 168
precompiles:
staking: '0x0000000000000000000000000000000000000800'
crowdloan: '0x0000000000000000000000000000000000000801'
erc20: '0x0000000000000000000000000000000000000802'
democracy: '0x0000000000000000000000000000000000000803'
xtokens: '0x0000000000000000000000000000000000000804'
relay_encoder: '0x0000000000000000000000000000000000000805'
xcm_transactor_legacy: '0x0000000000000000000000000000000000000806'
author_mapping: '0x0000000000000000000000000000000000000807'
batch: '0x0000000000000000000000000000000000000808'
randomness: '0x0000000000000000000000000000000000000809'
call_permit: '0x000000000000000000000000000000000000080a'
proxy: '0x000000000000000000000000000000000000080b'
xcm_utils: '0x000000000000000000000000000000000000080C'
xcm_transactor: '0x000000000000000000000000000000000000080d'
collective_council: '0x000000000000000000000000000000000000080e'
collective_tech_committee: '0x000000000000000000000000000000000000080f'
collective_treasury: '0x0000000000000000000000000000000000000810'
referenda: '0x0000000000000000000000000000000000000811'
conviction_voting: '0x0000000000000000000000000000000000000812'
preimage: '0x0000000000000000000000000000000000000813'
collective_opengov_tech_committee: '0x0000000000000000000000000000000000000814'
registry: '0x0000000000000000000000000000000000000815'
gmp: '0x0000000000000000000000000000000000000816'
api3:
rrp: '0xa0AD79D995DdeeB18a14eAef56A549A04e3Aa1Bd'
anuqrngairnode: '0x9d3C147cA16DB954873A498e0af5852AB39139f2'
anuqrngxpub: 'xpub6DXSDTZBd4aPVXnv6Q3SmnGUweFv6j24SK77W4qrSFuhGgi666awUiXakjXruUSCDQhhctVG7AQt67gMdaRAsDnDXv23bBRKsMWvRzo6kbf'
anuqrnguint256: '0xfb6d017bb87991b7495f563db3c8cf59ff87b09781947bb1e417006ad7f55a78'
anuqrnguint256array: '0x27cc2713e7f968e4e86ed274a051a5c8aaee9cca66946f23af6f29ecea9704c3'
chainlink:
feed:
proxy:
atom_usd: '0x4F152D143c97B5e8d2293bc5B2380600f274a5dd'
bnb_usd: '0x0147f2Ad7F1e2Bc51F998CC128a8355d5AE8C32D'
btc_usd: '0x8c4425e141979c66423A83bE2ee59135864487Eb'
dot_usd: '0x1466b4bD0C4B6B8e1164991909961e0EE6a66d8c'
eth_usd: '0x9ce2388a1696e22F870341C3FC1E89710C7569B5'
frax_usd: '0x05Ec3Fb5B7CB3bE9D7150FBA1Fb0749407e5Aa8a'
glmr_usd: '0x4497B606be93e773bbA5eaCFCb2ac5E2214220Eb'
link_usd: '0xd61D7398B7734aBe7C4B143fE57dC666D2fe83aD'
usdc_usd: '0xA122591F60115D63421f66F752EF9f6e0bc73abC'
randomness:
max_random_words: 100
min_vrf_blocks_delay: 2
max_vrf_blocks_delay: 2000
req_deposit_amount:
glmr: 100
wei: 100000000000000000000
block_expiration: 10000
epoch_expiration: 10000
epoch_fulfillment_delay: 2
substrate_api_sidecar:
stable_version: 14.1.1
tx_weight_to_gas_ratio: 25000
mintable_xc20:
asset_deposit: 10000
metadata_base_deposit: 10.68
metadata_byte_deposit: .01
orbiter:
max_orbiters_per_collator: 6
max_collators: 4
active:
rounds: 1
hours: 6
bond: 30000
multisig:
api_page: https://transaction.multisig.moonbeam.network/
relay_chain:
p2p: 30334
rpc: 9934
ws: 9945
prometheus: 9616
parachain:
p2p: 30333
rpc: 9933
ws: 9944
prometheus: 9615
polkadot:
client_version: v0.9.37
rocks_db:
read_weight: 20,499,000
write_weight: 83,471,000
parity_db:
read_weight: 11,826,000
write_weight: 38,052,000
xcm_instructions:
weight:
display: 1,000,000,000
numbers_only: 1000000000
planck_dot_weight: 0.105358535
planck_dot_cost: 105358535
dot_cost: 0.0105358535
xcm_message:
transfer:
weight: 4,000,000,000
cost: 0.0421434140
transact:
weight: 3,000,000,000
numbers_only: 3000000000
planck_dot_cost: 31607560500
dot_cost: 0.0316075605