-
Notifications
You must be signed in to change notification settings - Fork 37
/
example-xbridge.conf
2004 lines (1913 loc) · 27.9 KB
/
example-xbridge.conf
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
[Main]
ExchangeWallets=AEX,ALQO,AMS,APR,BANQ,BITG,BLAST,BLOCK,BTC,BWK,CARE,CIV,COLX,CRAVE,CRC,CRW,DASH,DGB,DIN,DMD,DOGE,DSR,DYN,EMC2,ENT,FAIR,FJC,FLO,GBX,GIN,HTML,HXX,INN,IOP,IXC,JEW,JIYO,KLKS,KREDS,LBC,LPC,LTC,LYNX,MAC,MGN,MLM,MNX,MONA,MUE,NMC,NORT,NYX,OHM,ORE,PHR,PIVX,POLIS,PURA,QBIC,QTUM,RVN,SEND,SIB,SPK,STAK,SUCR,SYNX,SYS,TRB,TRC,UCOM,UFO,ULTRA,UNB,UNO,VIA,VITAE,VIVO,VSX,VTC,VYI,WAGE,WGR,XC,XLR,XMCC,XMY,XN,XSN,XZC,ZOI
[AEX]
Title=AeriumX
Address=
Ip=127.0.0.1
Port=35408
Username=
Password=
AddressPrefix=23
ScriptPrefix=83
SecretPrefix=151
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=60
FeePerByte=45
Confirmations=0
[ALQO]
Title=ALQO
Address=
Ip=127.0.0.1
Port=55000
Username=
Password=
AddressPrefix=23
ScriptPrefix=16
SecretPrefix=193
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=60
FeePerByte=250
Confirmations=0
[AMS]
Title=AmsterdamCoin
Address=
Ip=127.0.0.1
Port=51020
Username=
Password=
AddressPrefix=23
ScriptPrefix=13
SecretPrefix=212
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=60
FeePerByte=45
Confirmations=0
[APR]
Title=APRcoin
Address=
Ip=127.0.0.1
Port=3132
Username=
Password=
AddressPrefix=12
ScriptPrefix=6
SecretPrefix=46
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=120
FeePerByte=45
Confirmations=0
[BANQ]
Title=Banq
Address=
Ip=127.0.0.1
Port=4468
Username=
Password=
AddressPrefix=25
ScriptPrefix=10
SecretPrefix=198
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=180
FeePerByte=45
Confirmations=0
[BITG]
Title=BitcoinGreen
Address=
Ip=127.0.0.1
Port=9335
Username=
Password=
AddressPrefix=38
ScriptPrefix=6
SecretPrefix=46
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=60
FeePerByte=45
Confirmations=0
[BLAST]
Title=BLAST
Address=
Ip=127.0.0.1
Port=64639
Username=
Password=
AddressPrefix=25
ScriptPrefix=18
SecretPrefix=239
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=32
FeePerByte=45
Confirmations=0
[BLOCK]
Title=Blocknet
Address=
Ip=127.0.0.1
Port=41414
Username=
Password=
AddressPrefix=26
ScriptPrefix=28
SecretPrefix=154
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=60
FeePerByte=20
Confirmations=0
[BTC]
Title=Bitcoin
Address=
Ip=127.0.0.1
Port=8332
Username=
Password=
AddressPrefix=0
ScriptPrefix=5
SecretPrefix=128
COIN=100000000
MinimumAmount=0
TxVersion=2
DustAmount=0
CreateTxMethod=BTC
MinTxFee=0
BlockTime=600
GetNewKeySupported=false
ImportWithNoScanSupported=false
FeePerByte=30
Confirmations=0
[BWK]
Title=Bulwark
Address=
Ip=127.0.0.1
Port=52541
Username=
Password=
AddressPrefix=85
ScriptPrefix=18
SecretPrefix=212
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=90
FeePerByte=45
Confirmations=0
[CARE]
Title=Carebit
Address=
Ip=127.0.0.1
Port=5520
Username=
Password=
AddressPrefix=28
ScriptPrefix=137
SecretPrefix=55
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=60
FeePerByte=45
Confirmations=0
[CIV]
Title=Civitas
Address=
Ip=127.0.0.1
Port=28843
Username=
Password=
AddressPrefix=28
ScriptPrefix=8
SecretPrefix=212
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=60
FeePerByte=45
Confirmations=0
[COLX]
Title=ColossusCoinXT
Address=
Ip=127.0.0.1
Port=51573
Username=
Password=
AddressPrefix=30
ScriptPrefix=13
SecretPrefix=212
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=60
FeePerByte=12000000
Confirmations=0
[CRAVE]
Title=Crave
Address=
Ip=127.0.0.1
Port=48883
Username=
Password=
AddressPrefix=70
ScriptPrefix=85
SecretPrefix=153
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=60
FeePerByte=45
Confirmations=0
[CRC]
Title=CrowdCoin
Address=
Ip=127.0.0.1
Port=12876
Username=
Password=
AddressPrefix=28
ScriptPrefix=88
SecretPrefix=0
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=120
FeePerByte=45
Confirmations=0
[CRW]
Title=Crown
Address=
Ip=127.0.0.1
Port=9341
Username=
Password=
AddressPrefix=0
ScriptPrefix=28
SecretPrefix=128
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=60
FeePerByte=55
Confirmations=0
[DASH]
Title=Dash
Address=
Ip=127.0.0.1
Port=9998
Username=
Password=
AddressPrefix=76
ScriptPrefix=16
SecretPrefix=204
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=false
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=150
FeePerByte=100
Confirmations=0
[DGB]
Title=Digibyte
Address=
Ip=127.0.0.1
Port=14022
Username=
Password=
AddressPrefix=30
ScriptPrefix=63
SecretPrefix=128
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=DGB
GetNewKeySupported=false
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=15
FeePerByte=200
Confirmations=0
[DIN]
Title=Dinero
Address=
Ip=127.0.0.1
Port=26286
Username=
Password=
AddressPrefix=30
ScriptPrefix=13
SecretPrefix=204
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=90
FeePerByte=45
Confirmations=0
[DMD]
Title=Diamond
Address=
Ip=127.0.0.1
Port=17772
Username=
Password=
AddressPrefix=90
ScriptPrefix=8
SecretPrefix=218
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=135
FeePerByte=55
Confirmations=0
[DOGE]
Title=Dogecoin
Address=
Ip=127.0.0.1
Port=22555
Username=
Password=
AddressPrefix=30
ScriptPrefix=22
SecretPrefix=158
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=false
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=60
FeePerByte=300000
Confirmations=0
[DSR]
Title=Desire
Address=
Ip=127.0.0.1
Port=9918
Username=
Password=
AddressPrefix=30
ScriptPrefix=16
SecretPrefix=204
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=150
FeePerByte=45
Confirmations=0
[DYN]
Title=Dynamic
Address=
Ip=127.0.0.1
Port=33350
Username=
Password=
AddressPrefix=30
ScriptPrefix=10
SecretPrefix=140
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=false
ImportWithNoScanSupported=false
MinTxFee=0
BlockTime=128
FeePerByte=25
Confirmations=0
[EMC2]
Title=Einsteinium
Address=
Ip=127.0.0.1
Port=41879
Username=
Password=
AddressPrefix=33
ScriptPrefix=55
SecretPrefix=176
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=60
FeePerByte=1200
Confirmations=0
[ENT]
Title=Eternity
Address=
Ip=127.0.0.1
Port=4854
Username=
Password=
AddressPrefix=33
ScriptPrefix=8
SecretPrefix=101
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=150
FeePerByte=45
Confirmations=0
[FAIR]
Title=Faircoin
Address=
Ip=127.0.0.1
Port=40405
Username=
Password=
AddressPrefix=95
ScriptPrefix=36
SecretPrefix=223
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=210
FeePerByte=2000
Confirmations=0
[FJC]
Title=FujiCoin
Address=
Ip=127.0.0.1
Port=3776
Username=
Password=
AddressPrefix=36
ScriptPrefix=16
SecretPrefix=164
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=60
FeePerByte=45
Confirmations=0
[FLO]
Title=Florincoin
Address=
Ip=127.0.0.1
Port=7313
Username=
Password=
AddressPrefix=35
ScriptPrefix=94
SecretPrefix=163
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=40
FeePerByte=250
Confirmations=0
[GBX]
Title=GoByte
Address=
Ip=127.0.0.1
Port=12454
Username=
Password=
AddressPrefix=38
ScriptPrefix=10
SecretPrefix=198
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=150
FeePerByte=45
Confirmations=0
[GIN]
Title=GINcoin
Address=
Ip=127.0.0.1
Port=10211
Username=
Password=
AddressPrefix=38
ScriptPrefix=10
SecretPrefix=198
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=120
FeePerByte=45
Confirmations=0
[HTML]
Title=HTMLcoin
Address=
Ip=127.0.0.1
Port=4889
Username=
Password=
AddressPrefix=41
ScriptPrefix=100
SecretPrefix=169
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=60
FeePerByte=660
Confirmations=0
[HXX]
Title=Hexxcoin
Address=
Ip=127.0.0.1
Port=29200
Username=
Password=
AddressPrefix=40
ScriptPrefix=10
SecretPrefix=210
COIN=100000000
MinimumAmount=0
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
FeePerByte=210
MinTxFee=0
TxVersion=1
BlockTime=150
Confirmations=0
[INN]
Title=Innova
Address=
Ip=127.0.0.1
Port=8818
Username=
Password=
AddressPrefix=102
ScriptPrefix=20
SecretPrefix=195
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=120
FeePerByte=45
Confirmations=0
[IOP]
Title=InternetofPeople
Address=
Ip=127.0.0.1
Port=8337
Username=
Password=
AddressPrefix=117
ScriptPrefix=174
SecretPrefix=49
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=120
FeePerByte=45
Confirmations=0
[IXC]
Title=Ixcoin
Address=
Ip=127.0.0.1
Port=8338
Username=
Password=
AddressPrefix=138
ScriptPrefix=5
SecretPrefix=128
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=600
FeePerByte=45
Confirmations=0
[JEW]
Title=Shekel
Address=
Ip=127.0.0.1
Port=5501
Username=
Password=
AddressPrefix=43
ScriptPrefix=13
SecretPrefix=212
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=60
FeePerByte=45
Confirmations=0
[JIYO]
Title=Jiyo
Address=
Ip=127.0.0.1
Port=6081
Username=
Password=
AddressPrefix=21
ScriptPrefix=25
SecretPrefix=136
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=60
FeePerByte=45
Confirmations=0
[KLKS]
Title=Kalkulus
Address=
Ip=127.0.0.1
Port=51122
Username=
Password=
AddressPrefix=46
ScriptPrefix=13
SecretPrefix=174
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=60
FeePerByte=45
Confirmations=0
[KREDS]
Title=Kreds
Address=
Ip=127.0.0.1
Port=3850
Username=
Password=
AddressPrefix=45
ScriptPrefix=5
SecretPrefix=195
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=120
FeePerByte=45
Confirmations=0
[LBC]
Title=LBRY Credits
Address=
Ip=127.0.0.1
Port=9245
Username=
Password=
AddressPrefix=85
ScriptPrefix=122
SecretPrefix=28
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=false
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=150
FeePerByte=120
Confirmations=0
[LPC]
Title=LightPayCoin
Address=
Ip=127.0.0.1
Port=39798
Username=
Password=
AddressPrefix=49
ScriptPrefix=13
SecretPrefix=179
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=60
FeePerByte=45
Confirmations=0
[LTC]
Title=Litecoin
Address=
Ip=127.0.0.1
Port=9332
Username=
Password=
AddressPrefix=48
ScriptPrefix=5
SecretPrefix=176
COIN=100000000
MinimumAmount=0
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=false
ImportWithNoScanSupported=true
FeePerByte=200
MinTxFee=0
TxVersion=1
BlockTime=150
Confirmations=0
[LYNX]
Title=Lynx
Address=
Ip=127.0.0.1
Port=22567
Username=
Password=
AddressPrefix=45
ScriptPrefix=50
SecretPrefix=173
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=30
FeePerByte=10000
Confirmations=0
[MAC]
Title=MachineCoin
Address=
Ip=127.0.0.1
Port=40332
Username=
Password=
AddressPrefix=50
ScriptPrefix=20
SecretPrefix=178
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=150
FeePerByte=45
Confirmations=0
[MGN]
Title=Magnacoin
Address=
Ip=127.0.0.1
Port=57822
Username=
Password=
AddressPrefix=30
ScriptPrefix=13
SecretPrefix=212
COIN=100000000
MinimumAmount=0
TxVersion=1
DustAmount=0
CreateTxMethod=BTC
GetNewKeySupported=true
ImportWithNoScanSupported=true
MinTxFee=0
BlockTime=60
FeePerByte=2500
Confirmations=0
[MLM]
Title=MktCoin
Address=
Ip=127.0.0.1
Port=9276
Username=
Password=