forked from MetacoSA/NBitcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dash.cs
522 lines (480 loc) · 20.3 KB
/
Dash.cs
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
using NBitcoin.Crypto;
using NBitcoin.DataEncoders;
using NBitcoin.Protocol;
using System;
using System.IO;
using System.Linq;
namespace NBitcoin.Altcoins
{
// Reference: https://github.com/dashpay/dash/blob/master/src/chainparams.cpp
public class Dash : NetworkSetBase
{
public static Dash Instance { get; } = new Dash();
public override string CryptoCode => "DASH";
private Dash()
{
}
public class DashConsensusFactory : ConsensusFactory
{
private DashConsensusFactory()
{
}
// ReSharper disable once MemberHidesStaticFromOuterClass
public static DashConsensusFactory Instance { get; } = new DashConsensusFactory();
public override BlockHeader CreateBlockHeader()
{
return new DashBlockHeader();
}
public override Block CreateBlock()
{
return new DashBlock(new DashBlockHeader());
}
public override Transaction CreateTransaction()
{
return new DashTransaction();
}
}
#pragma warning disable CS0618 // Type or member is obsolete
public class DashBlockHeader : BlockHeader
{
// https://github.com/dashpay/dash/blob/e596762ca22d703a79c6880a9d3edb1c7c972fd3/src/primitives/block.cpp#L13
static byte[] CalculateHash(byte[] data, int offset, int count)
{
return new HashX11.X11().ComputeBytes(data.Skip(offset).Take(count).ToArray());
}
protected override HashStreamBase CreateHashStream()
{
return BufferedHashStream.CreateFrom(CalculateHash);
}
}
/// <summary>
/// Transactions with version >= 3 have a special transaction type in the version code
/// https://docs.dash.org/en/stable/merchants/technical.html#v0-13-0-integration-notes
/// 0.14 will add more types: https://github.com/dashpay/dips/blob/master/dip-0002-special-transactions.md
/// </summary>
public enum DashTransactionType
{
StandardTransaction = 0,
MasternodeRegistration = 1,
UpdateMasternodeService = 2,
UpdateMasternodeOperator = 3,
MasternodeRevocation = 4,
MasternodeListMerkleProof = 5,
QuorumCommitment = 6
}
public abstract class SpecialTransaction
{
protected SpecialTransaction(byte[] extraPayload)
{
data = new BinaryReader(new MemoryStream(extraPayload));
Version = data.ReadUInt16();
}
protected readonly BinaryReader data;
/// <summary>
/// Version number. Currently set to 1 for all DashTransactionTypes
/// </summary>
public ushort Version { get; set; }
/// <summary>
/// https://github.com/dashevo/dashcore-lib/blob/master/lib/constants/index.js
/// </summary>
public const int PUBKEY_ID_SIZE = 20;
public const int COMPACT_SIGNATURE_SIZE = 65;
public const int SHA256_HASH_SIZE = 32;
public const int BLS_PUBLIC_KEY_SIZE = 48;
public const int BLS_SIGNATURE_SIZE = 96;
public const int IpAddressLength = 16;
protected void MakeSureWeAreAtEndOfPayload()
{
if (data.BaseStream.Position < data.BaseStream.Length)
throw new Exception(
"Failed to parse payload: raw payload is bigger than expected (pos=" +
data.BaseStream.Position + ", len=" + data.BaseStream.Length + ")");
}
}
/// <summary>
/// https://github.com/dashpay/dips/blob/master/dip-0003.md
/// </summary>
public class ProviderRegistrationTransaction : SpecialTransaction
{
public ProviderRegistrationTransaction(byte[] extraPayload) : base(extraPayload)
{
Type = data.ReadUInt16();
Mode = data.ReadUInt16();
CollateralHash = new uint256(data.ReadBytes(SHA256_HASH_SIZE), true);
CollateralIndex = data.ReadUInt32();
IpAddress = data.ReadBytes(IpAddressLength);
Port = BitConverter.ToUInt16(data.ReadBytes(2).Reverse().ToArray(), 0);
KeyIdOwner = new uint160(data.ReadBytes(PUBKEY_ID_SIZE), true);
KeyIdOperator = data.ReadBytes(BLS_PUBLIC_KEY_SIZE);
KeyIdVoting = new uint160(data.ReadBytes(PUBKEY_ID_SIZE), true);
OperatorReward = data.ReadUInt16();
var bs = new BitcoinStream(data.BaseStream, false);
bs.ReadWriteAsVarInt(ref ScriptPayoutSize);
ScriptPayout = new Script(data.ReadBytes((int)ScriptPayoutSize));
InputsHash = new uint256(data.ReadBytes(SHA256_HASH_SIZE), true);
bs.ReadWriteAsVarInt(ref PayloadSigSize);
PayloadSig = data.ReadBytes((int)PayloadSigSize);
MakeSureWeAreAtEndOfPayload();
}
public ushort Type { get; set; }
public ushort Mode { get; set; }
public uint256 CollateralHash { get; set; }
public uint CollateralIndex { get; set; }
public byte[] IpAddress { get; set; }
public ushort Port { get; set; }
public uint160 KeyIdOwner { get; set; }
public byte[] KeyIdOperator { get; set; }
public uint160 KeyIdVoting { get; set; }
public ushort OperatorReward { get; set; }
public uint ScriptPayoutSize;
public Script ScriptPayout { get; set; }
public uint256 InputsHash { get; set; }
public uint PayloadSigSize;
public byte[] PayloadSig { get; set; }
}
public class ProviderUpdateServiceTransaction : SpecialTransaction
{
public ProviderUpdateServiceTransaction(byte[] extraPayload) : base(extraPayload)
{
ProTXHash = new uint256(data.ReadBytes(SHA256_HASH_SIZE), true);
IpAddress = data.ReadBytes(IpAddressLength);
Port = BitConverter.ToUInt16(data.ReadBytes(2).Reverse().ToArray(), 0);
var bs = new BitcoinStream(data.BaseStream, false);
bs.ReadWriteAsVarInt(ref ScriptOperatorPayoutSize);
ScriptOperatorPayout = new Script(data.ReadBytes((int)ScriptOperatorPayoutSize));
InputsHash = new uint256(data.ReadBytes(SHA256_HASH_SIZE), true);
PayloadSig = data.ReadBytes(BLS_SIGNATURE_SIZE);
MakeSureWeAreAtEndOfPayload();
}
public uint256 ProTXHash { get; set; }
public byte[] IpAddress { get; set; }
public ushort Port { get; set; }
public uint ScriptOperatorPayoutSize;
public Script ScriptOperatorPayout { get; set; }
public uint256 InputsHash { get; set; }
public byte[] PayloadSig { get; set; }
}
public class ProviderUpdateRegistrarTransaction : SpecialTransaction
{
public ProviderUpdateRegistrarTransaction(byte[] extraPayload) : base(extraPayload)
{
ProTXHash = new uint256(data.ReadBytes(SHA256_HASH_SIZE), true);
Mode = data.ReadUInt16();
PubKeyOperator = data.ReadBytes(BLS_PUBLIC_KEY_SIZE);
KeyIdVoting = new uint160(data.ReadBytes(PUBKEY_ID_SIZE), true);
var bs = new BitcoinStream(data.BaseStream, false);
bs.ReadWriteAsVarInt(ref ScriptPayoutSize);
ScriptPayout = new Script(data.ReadBytes((int)ScriptPayoutSize));
InputsHash = new uint256(data.ReadBytes(SHA256_HASH_SIZE), true);
if (data.BaseStream.Position < data.BaseStream.Length)
{
bs.ReadWriteAsVarInt(ref PayloadSigSize);
PayloadSig = data.ReadBytes((int)PayloadSigSize);
}
else
PayloadSig = new byte[0];
MakeSureWeAreAtEndOfPayload();
}
public uint256 ProTXHash { get; set; }
public ushort Mode { get; set; }
public byte[] PubKeyOperator { get; set; }
public uint160 KeyIdVoting { get; set; }
public uint ScriptPayoutSize;
public Script ScriptPayout { get; set; }
public uint256 InputsHash { get; set; }
public uint PayloadSigSize;
public byte[] PayloadSig { get; set; }
}
public class ProviderUpdateRevocationTransaction : SpecialTransaction
{
public ProviderUpdateRevocationTransaction(byte[] extraPayload) : base(extraPayload)
{
ProTXHash = new uint256(data.ReadBytes(SHA256_HASH_SIZE), true);
Reason = data.ReadUInt16();
InputsHash = new uint256(data.ReadBytes(SHA256_HASH_SIZE), true);
PayloadSig = data.ReadBytes(BLS_SIGNATURE_SIZE);
MakeSureWeAreAtEndOfPayload();
}
public uint256 ProTXHash { get; set; }
public ushort Reason { get; set; }
public uint256 InputsHash { get; set; }
public uint PayloadSigSize;
public byte[] PayloadSig { get; set; }
}
public abstract class SpecialTransactionWithHeight : SpecialTransaction
{
protected SpecialTransactionWithHeight(byte[] extraPayload) : base(extraPayload)
{
Height = data.ReadUInt32();
}
/// <summary>
/// Height of the block
/// </summary>
public uint Height { get; set; }
}
/// <summary>
/// For DashTransactionType.MasternodeListMerkleProof
/// https://github.com/dashpay/dips/blob/master/dip-0004.md
/// Only needs deserialization here, ExtraPayload can still be serialized
/// </summary>
public class CoinbaseSpecialTransaction : SpecialTransactionWithHeight
{
public CoinbaseSpecialTransaction(byte[] extraPayload) : base(extraPayload)
{
MerkleRootMNList = new uint256(data.ReadBytes(SHA256_HASH_SIZE));
MakeSureWeAreAtEndOfPayload();
}
/// <summary>
/// Merkle root of the masternode list
/// </summary>
public uint256 MerkleRootMNList { get; set; }
}
/// <summary>
/// https://github.com/dashevo/dashcore-lib/blob/master/lib/transaction/payload/commitmenttxpayload.js
/// </summary>
public class QuorumCommitmentTransaction : SpecialTransactionWithHeight
{
public QuorumCommitmentTransaction(byte[] extraPayload) : base(extraPayload)
{
Commitment = new QuorumCommitment(data);
MakeSureWeAreAtEndOfPayload();
}
public QuorumCommitment Commitment { get; set; }
}
public class QuorumCommitment
{
public QuorumCommitment(BinaryReader data)
{
QfcVersion = data.ReadUInt16();
LlmqType = data.ReadByte();
QuorumHash = new uint256(data.ReadBytes(SpecialTransaction.SHA256_HASH_SIZE));
var bs = new BitcoinStream(data.BaseStream, false);
bs.ReadWriteAsVarInt(ref SignersSize);
Signers = data.ReadBytes(((int)SignersSize + 7) / 8);
bs.ReadWriteAsVarInt(ref ValidMembersSize);
ValidMembers = data.ReadBytes(((int)ValidMembersSize + 7) / 8);
QuorumPublicKey = data.ReadBytes(SpecialTransaction.BLS_PUBLIC_KEY_SIZE);
QuorumVvecHash = new uint256(data.ReadBytes(SpecialTransaction.SHA256_HASH_SIZE));
QuorumSig = data.ReadBytes(SpecialTransaction.BLS_SIGNATURE_SIZE);
Sig = data.ReadBytes(SpecialTransaction.BLS_SIGNATURE_SIZE);
}
public ushort QfcVersion { get; set; }
public byte LlmqType { get; set; }
public uint256 QuorumHash { get; set; }
public uint SignersSize;
public byte[] Signers { get; set; }
public uint ValidMembersSize;
public byte[] ValidMembers { get; set; }
public byte[] QuorumPublicKey { get; set; }
public uint256 QuorumVvecHash { get; set; }
public byte[] QuorumSig { get; set; }
public byte[] Sig { get; set; }
}
/// <summary>
/// https://docs.dash.org/en/stable/merchants/technical.html#v0-13-0-integration-notes
/// </summary>
public class DashTransaction : Transaction
{
public uint DashVersion => Version & 0xffff;
public DashTransactionType DashType => (DashTransactionType)((Version >> 16) & 0xffff);
public byte[] ExtraPayload = new byte[0];
public ProviderRegistrationTransaction ProRegTx =>
DashType == DashTransactionType.MasternodeRegistration
? new ProviderRegistrationTransaction(ExtraPayload)
: null;
public ProviderUpdateServiceTransaction ProUpServTx =>
DashType == DashTransactionType.UpdateMasternodeService
? new ProviderUpdateServiceTransaction(ExtraPayload)
: null;
public ProviderUpdateRegistrarTransaction ProUpRegTx =>
DashType == DashTransactionType.UpdateMasternodeOperator
? new ProviderUpdateRegistrarTransaction(ExtraPayload)
: null;
public ProviderUpdateRevocationTransaction ProUpRevTx =>
DashType == DashTransactionType.MasternodeRevocation
? new ProviderUpdateRevocationTransaction(ExtraPayload)
: null;
public CoinbaseSpecialTransaction CbTx =>
DashType == DashTransactionType.MasternodeListMerkleProof
? new CoinbaseSpecialTransaction(ExtraPayload)
: null;
public QuorumCommitmentTransaction QcTx =>
DashType == DashTransactionType.QuorumCommitment
? new QuorumCommitmentTransaction(ExtraPayload)
: null;
public override void ReadWrite(BitcoinStream stream)
{
base.ReadWrite(stream);
// Support for Dash 0.13 extraPayload for Special Transactions
// https://github.com/dashpay/dips/blob/master/dip-0002-special-transactions.md
if (DashVersion >= 3 && DashType != DashTransactionType.StandardTransaction)
{
// Extra payload size is VarInt
uint extraPayloadSize = (uint)ExtraPayload.Length;
stream.ReadWriteAsVarInt(ref extraPayloadSize);
if (ExtraPayload.Length != extraPayloadSize)
ExtraPayload = new byte[extraPayloadSize];
stream.ReadWrite(ref ExtraPayload);
}
}
}
public class DashBlock : Block
{
#pragma warning disable CS0612 // Type or member is obsolete
public DashBlock(DashBlockHeader h) : base(h)
#pragma warning restore CS0612 // Type or member is obsolete
{
}
public override ConsensusFactory GetConsensusFactory()
{
return Instance.Mainnet.Consensus.ConsensusFactory;
}
public override string ToString()
{
return "DashBlock " + Header + ", Height=" + GetCoinbaseHeight() +
", Version=" + Header.Version + ", Txs=" + Transactions.Count;
}
}
#pragma warning restore CS0618 // Type or member is obsolete
protected override void PostInit()
{
RegisterDefaultCookiePath("DashCore");
}
static uint256 GetPoWHash(BlockHeader header)
{
var headerBytes = header.ToBytes();
var h = SCrypt.ComputeDerivedKey(headerBytes, headerBytes, 1024, 1, 1, null, 32);
return new uint256(h);
}
protected override NetworkBuilder CreateMainnet()
{
var builder = new NetworkBuilder();
builder.SetConsensus(new Consensus()
{
SubsidyHalvingInterval = 210240,
MajorityEnforceBlockUpgrade = 750,
MajorityRejectBlockOutdated = 950,
MajorityWindow = 1000,
BIP34Hash = new uint256("0x000007d91d1254d60e2dd1ae580383070a4ddffa4c64c2eeb4a2f9ecc0414343"),
PowLimit = new Target(new uint256("0x000007d91d1254d60e2dd1ae580383070a4ddffa4c64c2eeb4a2f9ecc0414343")),
MinimumChainWork = new uint256("0x000000000000000000000000000000000000000000000100a308553b4863b755"),
PowTargetTimespan = TimeSpan.FromSeconds(24 * 60 * 60),
PowTargetSpacing = TimeSpan.FromSeconds(2.5 * 60),
PowAllowMinDifficultyBlocks = false,
CoinbaseMaturity = 100,
PowNoRetargeting = false,
RuleChangeActivationThreshold = 1916,
MinerConfirmationWindow = 2016,
ConsensusFactory = DashConsensusFactory.Instance,
SupportSegwit = false
})
.SetBase58Bytes(Base58Type.PUBKEY_ADDRESS, new byte[] { 76 })
.SetBase58Bytes(Base58Type.SCRIPT_ADDRESS, new byte[] { 16 })
.SetBase58Bytes(Base58Type.SECRET_KEY, new byte[] { 204 })
.SetBase58Bytes(Base58Type.EXT_PUBLIC_KEY, new byte[] { 0x04, 0x88, 0xB2, 0x1E })
.SetBase58Bytes(Base58Type.EXT_SECRET_KEY, new byte[] { 0x04, 0x88, 0xAD, 0xE4 })
.SetBech32(Bech32Type.WITNESS_PUBKEY_ADDRESS, Encoders.Bech32("dash"))
.SetBech32(Bech32Type.WITNESS_SCRIPT_ADDRESS, Encoders.Bech32("dash"))
.SetMagic(0xBD6B0CBF)
.SetPort(9999)
.SetRPCPort(9998)
.SetMaxP2PVersion(70213)
.SetName("dash-main")
.AddAlias("dash-mainnet")
.AddDNSSeeds(new[]
{
new DNSSeedData("dash.org", "dnsseed.dash.org"),
new DNSSeedData("dashdot.io", "dnsseed.dashdot.io"),
new DNSSeedData("masternode.io", "dnsseed.masternode.io"),
new DNSSeedData("dashpay.io", "dnsseed.dashpay.io")
})
.AddSeeds(new NetworkAddress[0])
.SetGenesis("010000000000000000000000000000000000000000000000000000000000000000000000c762a6567f3cc092f0684bb62b7e00a84890b990f07cc71a6bb58d64b98e02e0022ddb52f0ff0f1ec23fb9010101000000010000000000000000000000000000000000000000000000000000000000000000ffffffff6204ffff001d01044c5957697265642030392f4a616e2f3230313420546865204772616e64204578706572696d656e7420476f6573204c6976653a204f76657273746f636b2e636f6d204973204e6f7720416363657074696e6720426974636f696e73ffffffff0100f2052a010000004341040184710fa689ad5023690c80f3a49c8f13f8d45b8c857fbcbc8bc4a8e4d3eb4b10f4d4604fa08dce601aaf0f470216fe1b51850b4acf21b179c45070ac7b03a9ac00000000");
return builder;
}
protected override NetworkBuilder CreateTestnet()
{
var builder = new NetworkBuilder();
builder.SetConsensus(new Consensus()
{
SubsidyHalvingInterval = 210240,
MajorityEnforceBlockUpgrade = 51,
MajorityRejectBlockOutdated = 75,
MajorityWindow = 100,
BIP34Hash = new uint256("0x0000047d24635e347be3aaaeb66c26be94901a2f962feccd4f95090191f208c1"),
PowLimit = new Target(new uint256("0x00000fffff000000000000000000000000000000000000000000000000000000")),
MinimumChainWork = new uint256("0x000000000000000000000000000000000000000000000000000924e924a21715"),
PowTargetTimespan = TimeSpan.FromSeconds(24 * 60 * 60),
PowTargetSpacing = TimeSpan.FromSeconds(2.5 * 60),
PowAllowMinDifficultyBlocks = true,
CoinbaseMaturity = 100,
PowNoRetargeting = false,
RuleChangeActivationThreshold = 1512,
MinerConfirmationWindow = 2016,
ConsensusFactory = DashConsensusFactory.Instance,
SupportSegwit = false
})
.SetBase58Bytes(Base58Type.PUBKEY_ADDRESS, new byte[] { 140 })
.SetBase58Bytes(Base58Type.SCRIPT_ADDRESS, new byte[] { 19 })
.SetBase58Bytes(Base58Type.SECRET_KEY, new byte[] { 239 })
.SetBase58Bytes(Base58Type.EXT_PUBLIC_KEY, new byte[] { 0x04, 0x35, 0x87, 0xCF })
.SetBase58Bytes(Base58Type.EXT_SECRET_KEY, new byte[] { 0x04, 0x35, 0x83, 0x94 })
.SetBech32(Bech32Type.WITNESS_PUBKEY_ADDRESS, Encoders.Bech32("tdash"))
.SetBech32(Bech32Type.WITNESS_SCRIPT_ADDRESS, Encoders.Bech32("tdash"))
.SetMagic(0xFFCAE2CE)
.SetPort(19999)
.SetRPCPort(19998)
.SetMaxP2PVersion(70213)
.SetName("dash-test")
.AddAlias("dash-testnet")
.AddDNSSeeds(new[]
{
new DNSSeedData("dashdot.io", "testnet-seed.dashdot.io"),
new DNSSeedData("masternode.io", "test.dnsseed.masternode.io")
})
.AddSeeds(new NetworkAddress[0])
.SetGenesis("010000000000000000000000000000000000000000000000000000000000000000000000c762a6567f3cc092f0684bb62b7e00a84890b990f07cc71a6bb58d64b98e02e0dee1e352f0ff0f1ec3c927e60101000000010000000000000000000000000000000000000000000000000000000000000000ffffffff6204ffff001d01044c5957697265642030392f4a616e2f3230313420546865204772616e64204578706572696d656e7420476f6573204c6976653a204f76657273746f636b2e636f6d204973204e6f7720416363657074696e6720426974636f696e73ffffffff0100f2052a010000004341040184710fa689ad5023690c80f3a49c8f13f8d45b8c857fbcbc8bc4a8e4d3eb4b10f4d4604fa08dce601aaf0f470216fe1b51850b4acf21b179c45070ac7b03a9ac00000000");
return builder;
}
protected override NetworkBuilder CreateRegtest()
{
var builder = new NetworkBuilder();
builder.SetConsensus(new Consensus()
{
SubsidyHalvingInterval = 150,
MajorityEnforceBlockUpgrade = 750,
MajorityRejectBlockOutdated = 950,
MajorityWindow = 1000,
BIP34Hash = new uint256(),
PowLimit = new Target(new uint256("7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")),
MinimumChainWork = new uint256("0x000000000000000000000000000000000000000000000000000924e924a21715"),
PowTargetTimespan = TimeSpan.FromSeconds(24 * 60 * 60),
PowTargetSpacing = TimeSpan.FromSeconds(2.5 * 60),
PowAllowMinDifficultyBlocks = true,
CoinbaseMaturity = 100,
PowNoRetargeting = true,
RuleChangeActivationThreshold = 108,
MinerConfirmationWindow = 144,
ConsensusFactory = DashConsensusFactory.Instance,
SupportSegwit = false
})
.SetBase58Bytes(Base58Type.PUBKEY_ADDRESS, new byte[] { 140 })
.SetBase58Bytes(Base58Type.SCRIPT_ADDRESS, new byte[] { 19 })
.SetBase58Bytes(Base58Type.SECRET_KEY, new byte[] { 239 })
.SetBase58Bytes(Base58Type.EXT_PUBLIC_KEY, new byte[] { 0x04, 0x35, 0x87, 0xCF })
.SetBase58Bytes(Base58Type.EXT_SECRET_KEY, new byte[] { 0x04, 0x35, 0x83, 0x94 })
.SetBech32(Bech32Type.WITNESS_PUBKEY_ADDRESS, Encoders.Bech32("tdash"))
.SetBech32(Bech32Type.WITNESS_SCRIPT_ADDRESS, Encoders.Bech32("tdash"))
.SetMagic(0xDCB7C1FC)
.SetPort(19994)
.SetRPCPort(19993)
.SetMaxP2PVersion(70213)
.SetName("dash-reg")
.AddAlias("dash-regtest")
.AddDNSSeeds(new DNSSeedData[0])
.AddSeeds(new NetworkAddress[0])
.SetGenesis("010000000000000000000000000000000000000000000000000000000000000000000000c762a6567f3cc092f0684bb62b7e00a84890b990f07cc71a6bb58d64b98e02e0b9968054ffff7f20ffba10000101000000010000000000000000000000000000000000000000000000000000000000000000ffffffff6204ffff001d01044c5957697265642030392f4a616e2f3230313420546865204772616e64204578706572696d656e7420476f6573204c6976653a204f76657273746f636b2e636f6d204973204e6f7720416363657074696e6720426974636f696e73ffffffff0100f2052a010000004341040184710fa689ad5023690c80f3a49c8f13f8d45b8c857fbcbc8bc4a8e4d3eb4b10f4d4604fa08dce601aaf0f470216fe1b51850b4acf21b179c45070ac7b03a9ac00000000");
return builder;
}
}
}