mirror of
https://github.com/OneKeyHQ/bip39.git
synced 2026-04-29 13:36:01 +00:00
Merge pull request #316 from passionofvc/master
add SLP Token Type https://github.com/simpleledger/slp-specifications…
This commit is contained in:
@@ -3416,11 +3416,11 @@ var ValidationError = validation.ValidationError;
|
|||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
*/
|
*/
|
||||||
var VALID_PREFIXES = ['bitcoincash', 'bchtest', 'bchreg'];
|
var VALID_PREFIXES = ['bitcoincash', 'bchtest', 'bchreg', 'simpleledger', 'slptest'];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks whether a string is a valid prefix; ie., it has a single letter case
|
* Checks whether a string is a valid prefix; ie., it has a single letter case
|
||||||
* and is one of 'bitcoincash', 'bchtest', or 'bchreg'.
|
* and is one of 'bitcoincash', 'bchtest', or 'bchreg', 'simpleledger' or 'slptest'.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {string} prefix
|
* @param {string} prefix
|
||||||
@@ -9011,6 +9011,21 @@ function toCashAddress (address) {
|
|||||||
return encodeAsCashaddr(decoded)
|
return encodeAsCashaddr(decoded)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Translates the given address into SLP format.
|
||||||
|
* @static
|
||||||
|
* @param {string} address - A valid SLP address in any format.
|
||||||
|
* @return {string}
|
||||||
|
* @throws {InvalidAddressError}
|
||||||
|
*/
|
||||||
|
function toSlpAddress (address) {
|
||||||
|
var decoded = decodeAddress(address)
|
||||||
|
return encodeAsSlpaddr(decoded)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Version byte table for base58 formats.
|
* Version byte table for base58 formats.
|
||||||
* @private
|
* @private
|
||||||
@@ -9125,7 +9140,7 @@ function decodeCashAddress (address) {
|
|||||||
} catch (error) {
|
} catch (error) {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
var prefixes = ['bitcoincash', 'bchtest', 'regtest']
|
var prefixes = ['bitcoincash', 'bchtest', 'regtest', 'simpleledger', 'slptest']
|
||||||
for (var i = 0; i < prefixes.length; ++i) {
|
for (var i = 0; i < prefixes.length; ++i) {
|
||||||
try {
|
try {
|
||||||
var prefix = prefixes[i]
|
var prefix = prefixes[i]
|
||||||
@@ -9151,6 +9166,7 @@ function decodeCashAddressWithPrefix (address) {
|
|||||||
var type = decoded.type === 'P2PKH' ? Type.P2PKH : Type.P2SH
|
var type = decoded.type === 'P2PKH' ? Type.P2PKH : Type.P2SH
|
||||||
switch (decoded.prefix) {
|
switch (decoded.prefix) {
|
||||||
case 'bitcoincash':
|
case 'bitcoincash':
|
||||||
|
case 'simpleledger':
|
||||||
return {
|
return {
|
||||||
hash: hash,
|
hash: hash,
|
||||||
format: Format.Cashaddr,
|
format: Format.Cashaddr,
|
||||||
@@ -9158,6 +9174,7 @@ function decodeCashAddressWithPrefix (address) {
|
|||||||
type: type
|
type: type
|
||||||
}
|
}
|
||||||
case 'bchtest':
|
case 'bchtest':
|
||||||
|
case 'slptest':
|
||||||
case 'regtest':
|
case 'regtest':
|
||||||
return {
|
return {
|
||||||
hash: hash,
|
hash: hash,
|
||||||
@@ -9212,6 +9229,19 @@ function encodeAsCashaddr (decoded) {
|
|||||||
return cashaddr.encode(prefix, type, hash)
|
return cashaddr.encode(prefix, type, hash)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Encodes the given decoded address into slp addr format.
|
||||||
|
* @private
|
||||||
|
* @param {object} decoded
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
function encodeAsSlpaddr (decoded) {
|
||||||
|
var prefix = decoded.network === Network.Mainnet ? 'simpleledger' : 'slptest'
|
||||||
|
var type = decoded.type === Type.P2PKH ? 'P2PKH' : 'P2SH'
|
||||||
|
var hash = Uint8Array.from(decoded.hash)
|
||||||
|
return cashaddr.encode(prefix, type, hash)
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a boolean indicating whether the address is in legacy format.
|
* Returns a boolean indicating whether the address is in legacy format.
|
||||||
* @static
|
* @static
|
||||||
@@ -9313,6 +9343,7 @@ module.exports = {
|
|||||||
toLegacyAddress: toLegacyAddress,
|
toLegacyAddress: toLegacyAddress,
|
||||||
toBitpayAddress: toBitpayAddress,
|
toBitpayAddress: toBitpayAddress,
|
||||||
toCashAddress: toCashAddress,
|
toCashAddress: toCashAddress,
|
||||||
|
toSlpAddress: toSlpAddress,
|
||||||
isLegacyAddress: isLegacyAddress,
|
isLegacyAddress: isLegacyAddress,
|
||||||
isBitpayAddress: isBitpayAddress,
|
isBitpayAddress: isBitpayAddress,
|
||||||
isCashAddress: isCashAddress,
|
isCashAddress: isCashAddress,
|
||||||
|
|||||||
@@ -952,6 +952,13 @@
|
|||||||
address = bchaddr.toBitpayAddress(address);
|
address = bchaddr.toBitpayAddress(address);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Bitcoin Cash address format may vary
|
||||||
|
if (networks[DOM.network.val()].name == "SLP - Simple Ledger Protocol") {
|
||||||
|
var bchAddrType = DOM.bitcoinCashAddressType.filter(":checked").val();
|
||||||
|
if (bchAddrType == "cashaddr") {
|
||||||
|
address = bchaddr.toSlpAddress(address);
|
||||||
|
}
|
||||||
|
}
|
||||||
// Segwit addresses are different
|
// Segwit addresses are different
|
||||||
if (isSegwit) {
|
if (isSegwit) {
|
||||||
if (!segwitAvailable) {
|
if (!segwitAvailable) {
|
||||||
@@ -2486,6 +2493,13 @@
|
|||||||
setHdCoin(111);
|
setHdCoin(111);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "SLP - Simple Ledger Protocol",
|
||||||
|
onSelect: function() {
|
||||||
|
DOM.bitcoinCashAddressTypeContainer.removeClass("hidden");
|
||||||
|
setHdCoin(245);
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "SLR - Solarcoin",
|
name: "SLR - Solarcoin",
|
||||||
onSelect: function() {
|
onSelect: function() {
|
||||||
|
|||||||
@@ -564,6 +564,15 @@ it('Allows selection of bitcoin cash', function(done) {
|
|||||||
};
|
};
|
||||||
testNetwork(done, params);
|
testNetwork(done, params);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('Allows selection of simpleledger(SLP)', function(done) {
|
||||||
|
var params = {
|
||||||
|
selectText: "SLP - Simple Ledger Protocol",
|
||||||
|
firstAddress: "simpleledger:qrtffz6ajfsn74gpur7y3epjquz42pvww5acewqmre",
|
||||||
|
};
|
||||||
|
testNetwork(done, params);
|
||||||
|
});
|
||||||
|
|
||||||
it('Allows selection of myriadcoin', function(done) {
|
it('Allows selection of myriadcoin', function(done) {
|
||||||
var params = {
|
var params = {
|
||||||
selectText: "XMY - Myriadcoin",
|
selectText: "XMY - Myriadcoin",
|
||||||
|
|||||||
Reference in New Issue
Block a user