-
Notifications
You must be signed in to change notification settings - Fork 446
Expand file tree
/
Copy pathDashTestnet.php
More file actions
49 lines (42 loc) · 1.07 KB
/
DashTestnet.php
File metadata and controls
49 lines (42 loc) · 1.07 KB
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
<?php
namespace BitWasp\Bitcoin\Network\Networks;
use BitWasp\Bitcoin\Network\Network;
use BitWasp\Bitcoin\Script\ScriptType;
class DashTestnet extends Network
{
/**
* {@inheritdoc}
* @see Network::$base58PrefixMap
*/
protected $base58PrefixMap = [
self::BASE58_ADDRESS_P2PKH => "8b",
self::BASE58_ADDRESS_P2SH => "13",
self::BASE58_WIF => "ef",
];
/**
* {@inheritdoc}
* @see Network::$bip32PrefixMap
*/
protected $bip32PrefixMap = [
self::BIP32_PREFIX_XPUB => "043587cf",
self::BIP32_PREFIX_XPRV => "04358394",
];
/**
* {@inheritdoc}
* @see Network::$bip32ScriptTypeMap
*/
protected $bip32ScriptTypeMap = [
self::BIP32_PREFIX_XPUB => ScriptType::P2PKH,
self::BIP32_PREFIX_XPRV => ScriptType::P2PKH,
];
/**
* {@inheritdoc}
* @see Network::$signedMessagePrefix
*/
protected $signedMessagePrefix = "DarkCoin Signed Message";
/**
* {@inheritdoc}
* @see Network::$p2pMagic
*/
protected $p2pMagic = "ffcae2ce";
}