Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions src/networks.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,32 @@ var networks = {
dustThreshold: 546, // https://github.com/zetacoin/zetacoin/blob/master/src/core.h#L159
feePerKb: 10000, // https://github.com/zetacoin/zetacoin/blob/master/src/main.cpp#L54
estimateFee: estimateFee('zetacoin')
},
myriadcoin: {
magicPrefix: '\x18Myriadcoin Signed Message:\n',
bip32: {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

warning: same BIP32 constants as bitcoin

public: 0x0488b21e,
private: 0x0488ade4
},
pubKeyHash: 0x32,
scriptHash: 0x09,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

warning: same as zetacoin scriptHash

wif: 0xb2,
dustThreshold: 546, // https://github.com/myriadcoin/myriadcoin/blob/master/src/core.h#L220
feePerKb: 10000, // https://github.com/myriadcoin/myriadcoin/blob/master/src/main.cpp#L53
estimateFee: estimateFee('myriadcoin')
},
unobtanium: {
magicPrefix: '\x18Unobtanium Signed Message:\n',
bip32: {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

warning: same BIP32 constants as bitcoin

public: 0x0488b21e, // https://github.com/unobtanium-official/Unobtanium/pull/8/files
private: 0x0488ade4 // https://github.com/unobtanium-official/Unobtanium/pull/8/files
},
pubKeyHash: 0x82,
scriptHash: 0x1e,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

warning: same as dogecoin pubkeyhash

wif: 0xe0,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

warning: same as zetacoin wif

dustThreshold: 5460, // https://github.com/unobtanium-official/Unobtanium/blob/master/src/core.h#L155
feePerKb: 10000, // https://github.com/unobtanium-official/Unobtanium/blob/master/src/main.cpp#L54
estimateFee: estimateFee('unobtanium')
}
}

Expand Down