mirror of
https://github.com/OneKeyHQ/bip39.git
synced 2026-04-18 08:22:16 +00:00
@@ -781,6 +781,17 @@ bitcoinjs.bitcoin.networks.ixcoin = {
|
|||||||
wif: 0x80,
|
wif: 0x80,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
bitcoinjs.bitcoin.networks.kobocoin = {
|
||||||
|
messagePrefix: '\x18Kobocoin Signed Message:\n',
|
||||||
|
bip32: {
|
||||||
|
public: 0x0488B21E,
|
||||||
|
private: 0x0488ADE4,
|
||||||
|
},
|
||||||
|
pubKeyHash: 0x23,
|
||||||
|
scriptHash: 0x1c,
|
||||||
|
wif: 0xa3,
|
||||||
|
};
|
||||||
|
|
||||||
bitcoinjs.bitcoin.networks.landcoin = {
|
bitcoinjs.bitcoin.networks.landcoin = {
|
||||||
messagePrefix: '\x18Landcoin Signed Message:\n',
|
messagePrefix: '\x18Landcoin Signed Message:\n',
|
||||||
bip32: {
|
bip32: {
|
||||||
|
|||||||
@@ -1955,6 +1955,14 @@
|
|||||||
setHdCoin(141);
|
setHdCoin(141);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "KOBO - Kobocoin",
|
||||||
|
bip49available: false,
|
||||||
|
onSelect: function() {
|
||||||
|
network = bitcoinjs.bitcoin.networks.kobocoin;
|
||||||
|
setHdCoin(196);
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "LBC - Library Credits",
|
name: "LBC - Library Credits",
|
||||||
segwitAvailable: false,
|
segwitAvailable: false,
|
||||||
|
|||||||
@@ -900,6 +900,13 @@ it('Allows selection of Ixcoin', function(done) {
|
|||||||
};
|
};
|
||||||
testNetwork(done, params);
|
testNetwork(done, params);
|
||||||
});
|
});
|
||||||
|
it('Allows selection of Kobocoin', function(done) {
|
||||||
|
var params = {
|
||||||
|
selectText: "KOBO - Kobocoin",
|
||||||
|
firstAddress: "FTVoNJETXDAM8x7MnmdE8RwWndSr9PQWhy",
|
||||||
|
};
|
||||||
|
testNetwork(done, params);
|
||||||
|
});
|
||||||
it('Allows selection of Landcoin', function(done) {
|
it('Allows selection of Landcoin', function(done) {
|
||||||
var params = {
|
var params = {
|
||||||
selectText: "LDCN - Landcoin",
|
selectText: "LDCN - Landcoin",
|
||||||
|
|||||||
Reference in New Issue
Block a user