forked from gasp-xyz/mangata-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
708 lines (694 loc) · 67.9 KB
/
Cargo.toml
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
[profile.release]
panic = 'unwind'
[profile.production]
inherits = "release"
lto = true
codegen-units = 1
[workspace]
members = [
'node',
'pallets/*',
'rpc/nonce',
'runtime/*',
]
[patch."https://github.com/mangata-finance/mangata-node"]
pallet-xyk = { path = "./pallets/xyk" }
pallet-issuance = {path = "./pallets/issuance/"}
pallet-multipurpose-liquidity = { path = './pallets/multipurpose-liquidity'}
mp-multipurpose-liquidity = { path = './primitives/multipurpose-liquidity'}
mp-traits = { path = './primitives/traits'}
mangata-types = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
# patch generated by ./scripts/dev-0.9.29_manifest.sh
[patch."https://github.com/mangata-finance/open-runtime-module-library"]
orml-xcm = { git = "https://github.com/mangata-finance//open-runtime-module-library", branch = "mangata-dev" }
orml-xcm-support = { git = "https://github.com/mangata-finance//open-runtime-module-library", branch = "mangata-dev" }
orml-utilities = { git = "https://github.com/mangata-finance//open-runtime-module-library", branch = "mangata-dev" }
orml-unknown-tokens = { git = "https://github.com/mangata-finance//open-runtime-module-library", branch = "mangata-dev" }
orml-xtokens = { git = "https://github.com/mangata-finance//open-runtime-module-library", branch = "mangata-dev" }
orml-traits = { git = "https://github.com/mangata-finance//open-runtime-module-library", branch = "mangata-dev" }
orml-tokens = { git = "https://github.com/mangata-finance//open-runtime-module-library", branch = "mangata-dev" }
orml-asset-registry = { git = "https://github.com/mangata-finance//open-runtime-module-library", branch = "mangata-dev" }
# orml-xcm = { path = "../open-runtime-module-library/xcm" }
# orml-xcm-support = { path = "../open-runtime-module-library/xcm-support" }
# orml-utilities = { path = "../open-runtime-module-library/utilities" }
# orml-unknown-tokens = { path = "../open-runtime-module-library/unknown-tokens" }
# orml-xtokens = { path = "../open-runtime-module-library/xtokens" }
# orml-traits = { path = "../open-runtime-module-library/traits" }
# orml-tokens = { path = "../open-runtime-module-library/tokens" }
# orml-asset-registry = { path = "../open-runtime-module-library/asset-registry" }
# patch generated by ./scripts/dev_manifest.sh
[patch."https://github.com/mangata-finance/moonbeam"]
parachain-staking = { git = "https://github.com/mangata-finance//moonbeam", branch = "mangata-dev" }
# parachain-staking = { path = "../moonbeam/pallets/parachain-staking" }
[patch."https://github.com/mangata-finance/crowdloan-rewards"]
pallet-crowdloan-rewards = { git = "https://github.com/mangata-finance//crowdloan-rewards", branch = "mangata-dev" }
# pallet-crowdloan-rewards = { path = "../crowdloan-rewards" }
# patch generated by ./scripts/dev_manifest.sh
[patch."https://github.com/paritytech/cumulus"]
cumulus-test-relay-sproof-builder = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-client-pov-recovery = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-client-network = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-client-service = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-client-collator = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-client-consensus-common = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-client-consensus-aura = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-client-cli = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
parachain-info = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-pallet-xcm = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-pallet-aura-ext = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-pallet-xcmp-queue = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-pallet-parachain-system-proc-macro = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-pallet-parachain-system = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-pallet-dmp-queue = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-primitives-parachain-inherent = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-primitives-core = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-primitives-utility = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-primitives-timestamp = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-relay-chain-interface = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
#cumulus-relay-chain-local = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-relay-chain-rpc-interface = { git = 'https://github.com/mangata-finance/cumulus', branch = 'mangata-dev' }
# patch generated by ./scripts/dev-0.9.29_manifest.sh
[patch."https://github.com/mangata-finance/cumulus"]
cumulus-test-relay-sproof-builder = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-client-pov-recovery = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-client-network = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-client-service = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-client-collator = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-client-consensus-common = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-client-consensus-aura = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-client-cli = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
parachain-info = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-pallet-xcm = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-pallet-aura-ext = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-pallet-xcmp-queue = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-pallet-parachain-system-proc-macro = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-pallet-parachain-system = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-pallet-dmp-queue = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-primitives-parachain-inherent = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-primitives-core = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-primitives-utility = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-primitives-timestamp = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-relay-chain-interface = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
cumulus-relay-chain-rpc-interface = { git = "https://github.com/mangata-finance//cumulus", branch = "mangata-dev" }
# patch generated by ./scripts/dev-0.9.29_manifest.sh
[patch."https://github.com/mangata-finance/polkadot"]
xcm-executor = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
pallet-xcm = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
xcm-builder = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
xcm = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
xcm-procedural = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-parachain = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-statement-table = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-rpc = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-primitives = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-core-primitives = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-cli = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-subsystem-util = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-jaeger = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-test-service = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-subsystem-types = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-client = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-availability-bitfield-distribution = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-availability-recovery = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-gossip-support = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-approval-distribution = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-collator-protocol = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-dispute-distribution = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-network-protocol = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-network-bridge = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-statement-distribution = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-availability-distribution = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-approval-voting = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-pvf = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-backing = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-dispute-coordinator = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-runtime-api = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-bitfield-signing = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-provisioner = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-parachains-inherent = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-chain-api = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-chain-selection = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-candidate-validation = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-av-store = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-subsystem = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-service = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-metrics = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
#metered-channel = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
#polkadot-overseer-gen-proc-macro = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
#polkadot-overseer-gen = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-overseer = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-collation-generation = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-primitives = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-runtime = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-test-runtime = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
slot-range-helper = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-runtime-common = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-runtime-parachains = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-erasure-coding = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
# patch generated by ./scripts/dev-0.9.29_manifest.sh
[patch."https://github.com/paritytech/polkadot"]
xcm-executor = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
pallet-xcm = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
xcm-builder = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
xcm = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
xcm-procedural = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-parachain = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-statement-table = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-rpc = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-primitives = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-core-primitives = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-cli = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-subsystem-util = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-jaeger = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-test-service = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-subsystem-types = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-client = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-availability-bitfield-distribution = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-availability-recovery = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-gossip-support = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-approval-distribution = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-collator-protocol = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-dispute-distribution = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-network-protocol = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-network-bridge = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-statement-distribution = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-availability-distribution = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-approval-voting = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-pvf = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-backing = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-dispute-coordinator = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-runtime-api = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-bitfield-signing = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-provisioner = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-parachains-inherent = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-chain-api = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-chain-selection = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-candidate-validation = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-core-av-store = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-subsystem = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-service = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-metrics = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
#metered-channel = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
#polkadot-overseer-gen-proc-macro = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
#polkadot-overseer-gen = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-overseer = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-collation-generation = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-node-primitives = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-runtime = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-test-runtime = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
slot-range-helper = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-runtime-common = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-runtime-parachains = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
polkadot-erasure-coding = { git = "https://github.com/mangata-finance//polkadot", branch = "mangata-dev" }
# patch generated by ./scripts/dev-0.9.29_manifest.sh
[patch."https://github.com/mangata-finance/substrate"]
pallet-authorship = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-bags-list = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-transaction-payment-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-transaction-payment = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-try-runtime = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-system-rpc-runtime-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-system = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-beefy = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-membership = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-benchmarking = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-identity = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-session = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-aura = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-bounties = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-balances = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-authority-discovery = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-tips = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-election-provider-multi-phase = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-beefy-mmr = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
beefy-merkle-tree = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-scheduler = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-multisig = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-executive = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-im-online = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-treasury = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-utility = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-sudo = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-offences = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-democracy = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-grandpa = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-election-provider-support = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-collective = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-mmr-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-mmr = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
#pallet-mmr-primitives = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-support = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-support-procedural-tools-derive = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-support-procedural-tools = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-support-procedural = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-nicks = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-staking = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-staking-reward-curve = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-society = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-indices = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-babe = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-timestamp = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-elections-phragmen = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-proxy = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-vesting = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-vesting-mangata = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-informant = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-finality-grandpa-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-finality-grandpa = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
beefy-gadget-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
beefy-gadget = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-executor-wasmtime = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-executor-common = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-executor-wasmi = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-executor = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-network-gossip = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-transaction-pool-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-transaction-pool = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-tracing-proc-macro = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-tracing = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-client-db = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-sync-state-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-network = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-network-common = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-authority-discovery = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-utils = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-block-builder-ver = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-keystore = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-rpc-server = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-client-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-service = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-sysinfo = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-basic-authorship-ver = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-block-builder = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-rpc-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-chain-spec-derive = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-chain-spec = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-proposer-metrics = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-peerset = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-basic-authorship = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-offchain = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-state-db = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-allocator = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-consensus = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-consensus-aura = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-consensus-uncles = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-consensus-epochs = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-consensus-slots = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-consensus-babe-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-consensus-babe = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-cli = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-telemetry = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
fork-tree = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
substrate-wasm-builder = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
try-runtime-cli = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-benchmarking-cli = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
substrate-frame-rpc-system = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
remote-externalities = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
substrate-build-script-utils = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
substrate-prometheus-endpoint = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
substrate-test-client = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-panic-handler = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-inherents = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-authorship = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-storage = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-std = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-finality-grandpa = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
beefy-primitives = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-version-proc-macro = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-version = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-transaction-pool = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-ver = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-tracing = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-database = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-debug-derive = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-session = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
extrinsic-shuffler = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
ver-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-core-hashing-proc-macro = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-core-hashing = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-core = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-keyring = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-authority-discovery = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-tasks = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-runtime-interface-proc-macro = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-runtime-interface = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-arithmetic = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-keystore = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-api-proc-macro = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-maybe-compressed-blob = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-transaction-storage-proof = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-state-machine = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-block-builder = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-wasm-interface = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-npos-elections = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
#sp-npos-elections-solution-type = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-application-crypto = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-serializer = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-offchain = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-staking = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-trie = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-blockchain = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-externalities = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-consensus = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-consensus-aura = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-consensus-slots = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-consensus-vrf = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-consensus-babe = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-timestamp = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-runtime = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-io = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-mmr-primitives = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-vesting-mangata-rpc-runtime-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-vesting-mangata-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
# patch generated by ./scripts/dev-0.9.29_manifest.sh
[patch."https://github.com/paritytech/substrate"]
pallet-authorship = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-bags-list = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-transaction-payment-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-transaction-payment = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-try-runtime = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-system-rpc-runtime-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-system = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-beefy = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-membership = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-benchmarking = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-identity = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-session = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-aura = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-bounties = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-balances = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-authority-discovery = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-tips = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-election-provider-multi-phase = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-beefy-mmr = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
beefy-merkle-tree = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-scheduler = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-multisig = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-executive = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-im-online = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-treasury = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-utility = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-sudo = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-offences = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-democracy = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-grandpa = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-election-provider-support = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-collective = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-mmr-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-mmr = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
#pallet-mmr-primitives = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-support = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-support-procedural-tools-derive = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-support-procedural-tools = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-support-procedural = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-nicks = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-staking = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-staking-reward-curve = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-society = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-indices = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-babe = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-timestamp = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-elections-phragmen = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-proxy = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-vesting = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-vesting-mangata = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-informant = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-finality-grandpa-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-finality-grandpa = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
beefy-gadget-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
beefy-gadget = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-executor-wasmtime = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-executor-common = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-executor-wasmi = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-executor = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-network-gossip = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-transaction-pool-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-transaction-pool = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-tracing-proc-macro = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-tracing = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-client-db = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-sync-state-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-network = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-network-common = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-authority-discovery = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-utils = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-block-builder-ver = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-keystore = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-rpc-server = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-client-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-service = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-sysinfo = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-basic-authorship-ver = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-block-builder = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-rpc-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-chain-spec-derive = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-chain-spec = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-proposer-metrics = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-peerset = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-basic-authorship = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-offchain = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-state-db = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-allocator = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-consensus = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-consensus-aura = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-consensus-uncles = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-consensus-epochs = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-consensus-slots = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-consensus-babe-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-consensus-babe = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-cli = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-telemetry = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
fork-tree = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
substrate-wasm-builder = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
try-runtime-cli = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-benchmarking-cli = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
substrate-frame-rpc-system = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
remote-externalities = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
substrate-build-script-utils = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
substrate-prometheus-endpoint = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
substrate-test-client = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-panic-handler = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-inherents = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-authorship = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-storage = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-std = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-finality-grandpa = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
beefy-primitives = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-version-proc-macro = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-version = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-transaction-pool = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-ver = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-tracing = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-database = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-debug-derive = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-session = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
extrinsic-shuffler = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
ver-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-core-hashing-proc-macro = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-core-hashing = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-core = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-keyring = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-authority-discovery = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-tasks = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-runtime-interface-proc-macro = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-runtime-interface = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-arithmetic = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-keystore = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-api-proc-macro = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-maybe-compressed-blob = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-transaction-storage-proof = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-state-machine = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-block-builder = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-wasm-interface = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-npos-elections = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
#sp-npos-elections-solution-type = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-application-crypto = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-serializer = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-offchain = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-staking = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-trie = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-blockchain = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-externalities = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-consensus = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-consensus-aura = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-consensus-slots = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-consensus-vrf = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-consensus-babe = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-timestamp = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-runtime = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-io = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-mmr-primitives = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-vesting-mangata-rpc-runtime-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-vesting-mangata-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
# patch generated by ./scripts/dev-0.9.29_manifest.sh
[patch."https://github.com/PureStake/substrate"]
pallet-authorship = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-bags-list = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-transaction-payment-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-transaction-payment = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-try-runtime = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-system-rpc-runtime-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-system = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-beefy = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-membership = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-benchmarking = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-identity = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-session = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-aura = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-bounties = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-balances = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-authority-discovery = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-tips = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-election-provider-multi-phase = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-beefy-mmr = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
beefy-merkle-tree = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-scheduler = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-multisig = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-executive = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-im-online = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-treasury = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-utility = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-sudo = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-offences = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-democracy = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-grandpa = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-election-provider-support = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-collective = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-mmr-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-mmr = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
#pallet-mmr-primitives = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-support = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-support-procedural-tools-derive = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-support-procedural-tools = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-support-procedural = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-nicks = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-staking = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-staking-reward-curve = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-society = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-indices = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-babe = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-timestamp = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-elections-phragmen = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-proxy = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-vesting = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-vesting-mangata = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-informant = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-finality-grandpa-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-finality-grandpa = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
beefy-gadget-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
beefy-gadget = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-executor-wasmtime = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-executor-common = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-executor-wasmi = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-executor = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-network-gossip = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-transaction-pool-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-transaction-pool = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-tracing-proc-macro = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-tracing = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-client-db = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-sync-state-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-network = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-network-common = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-authority-discovery = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-utils = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-block-builder-ver = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-keystore = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-rpc-server = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-client-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-service = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-sysinfo = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-basic-authorship-ver = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-block-builder = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-rpc-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-chain-spec-derive = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-chain-spec = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-proposer-metrics = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-peerset = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-basic-authorship = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-offchain = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-state-db = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-allocator = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-consensus = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-consensus-aura = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-consensus-uncles = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-consensus-epochs = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-consensus-slots = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-consensus-babe-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-consensus-babe = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-cli = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sc-telemetry = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
fork-tree = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
substrate-wasm-builder = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
try-runtime-cli = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
frame-benchmarking-cli = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
substrate-frame-rpc-system = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
remote-externalities = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
substrate-build-script-utils = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
substrate-prometheus-endpoint = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
substrate-test-client = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-panic-handler = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-inherents = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-authorship = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-storage = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-std = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-finality-grandpa = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
beefy-primitives = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-version-proc-macro = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-version = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-transaction-pool = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-ver = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-tracing = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-database = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-debug-derive = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-session = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
extrinsic-shuffler = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
ver-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-core-hashing-proc-macro = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-core-hashing = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-core = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-keyring = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-authority-discovery = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-tasks = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-runtime-interface-proc-macro = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-runtime-interface = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-arithmetic = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-keystore = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-api-proc-macro = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-maybe-compressed-blob = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-transaction-storage-proof = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-state-machine = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-block-builder = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-wasm-interface = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-npos-elections = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
#sp-npos-elections-solution-type = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-application-crypto = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-serializer = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-offchain = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-staking = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-trie = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-blockchain = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-externalities = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-consensus = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-consensus-aura = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-consensus-slots = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-consensus-vrf = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-consensus-babe = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-timestamp = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-runtime = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-io = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
sp-mmr-primitives = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-vesting-mangata-rpc-runtime-api = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-vesting-mangata-rpc = { git = "https://github.com/mangata-finance//substrate", branch = "mangata-dev" }