-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Myriadcoin and Unobtanium #338
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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: { | ||
| public: 0x0488b21e, | ||
| private: 0x0488ade4 | ||
| }, | ||
| pubKeyHash: 0x32, | ||
| scriptHash: 0x09, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: same as zetacoin |
||
| 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: { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: same as dogecoin |
||
| wif: 0xe0, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: same as zetacoin |
||
| 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') | ||
| } | ||
| } | ||
|
|
||
|
|
||
There was a problem hiding this comment.
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