mirror of
https://github.com/Permissionless-Software-Foundation/bch-js.git
synced 2026-09-22 00:52:01 -07:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
aeb1efe23e | ||
|
|
6e43f795d7 | ||
|
|
e07a5b9da0 | ||
|
|
5ada76eace | ||
|
|
e605f6f386 | ||
|
|
eb9d0bea2b | ||
|
|
f185f5de16 | ||
|
|
d795174916 | ||
|
|
1294bc2149 | ||
|
|
8117448fd3 | ||
|
|
c7b51a38ff | ||
|
|
07d490134a | ||
|
|
a8a4eb68a6 | ||
|
|
c05e2f14e2 | ||
|
|
3540d98910 | ||
|
|
d0129c01f3 | ||
|
|
ad40607e5b | ||
|
|
a4f0ee6e42 | ||
|
|
0b70ea108b | ||
|
|
cef9a3cf52 | ||
|
|
c216f6c075 | ||
|
|
c095af8a29 | ||
|
|
89e4ea1635 |
+2
-1
@@ -1,7 +1,8 @@
|
||||
Copyright 2021 Chris Troutner
|
||||
Copyright 2021 Permissionless Software Foundation contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
|
||||
+2
-2
@@ -18,8 +18,8 @@
|
||||
"test:integration:local:abc": "export RESTURL=http://localhost:3000/v5/ && mocha --timeout 30000 test/integration && mocha --timeout 30000 test/integration/chains/abc/",
|
||||
"test:integration:local:bchn": "export RESTURL=http://localhost:3000/v5/ && mocha --timeout 30000 test/integration/ && mocha --timeout 30000 test/integration/chains/bchn/",
|
||||
"test:integration:local:testnet": "RESTURL=http://localhost:4000/v5/ mocha --timeout 30000 test/integration/chains/testnet",
|
||||
"test:integration:decatur:bchn": "export RESTURL=http://192.168.0.36:3000/v5/ && mocha --timeout 30000 test/integration/ && mocha --timeout 30000 test/integration/chains/bchn/",
|
||||
"test:integration:decatur:abc": "export RESTURL=http://192.168.0.38:3000/v5/ && mocha --timeout 30000 test/integration && mocha --timeout 30000 test/integration/chains/abc/",
|
||||
"test:integration:decatur:bchn": "export RESTURL=http://192.168.2.129:3000/v5/ && mocha --timeout 30000 test/integration/ && mocha --timeout 30000 test/integration/chains/bchn/",
|
||||
"test:integration:decatur:abc": "export RESTURL=http://192.168.2.141:3000/v5/ && mocha --timeout 30000 test/integration && mocha --timeout 30000 test/integration/chains/abc/",
|
||||
"test:integration:temp:bchn": "export RESTURL=http://157.90.174.219:3000/v5/ && mocha --timeout 30000 test/integration/",
|
||||
"test:temp": "export RESTURL=http://localhost:3000/v5/ && mocha --timeout 30000 -g '#Encryption' test/integration/",
|
||||
"test:temp2": "mocha --timeout=30000 -g '#TransactionLib' test/unit/",
|
||||
|
||||
+18
-3
@@ -186,6 +186,21 @@ class Address {
|
||||
return cashAddress.split(':')[1]
|
||||
}
|
||||
|
||||
/**
|
||||
* @api Address.toHash160() toHash160()
|
||||
* @apiName toHash160
|
||||
* @apiGroup Address
|
||||
* @apiDescription Converts any address format to hash160
|
||||
*
|
||||
* @apiExample Example usage:
|
||||
* // cash address mainnet p2pkh
|
||||
* bchjs.Address.toHash160("bitcoincash:qptnmya5wkly7xf97wm5ak23yqdsz3l2cyj7k9vyyh")
|
||||
* // 573d93b475be4f1925f3b74ed951201b0147eac1
|
||||
*
|
||||
* // cash address mainnet p2sh
|
||||
* bchjs.Address.toHash160("bitcoincash:pp7ushdxf5we8mcpaa3wqgsuqt639cu59ur5xu5fug")
|
||||
* // 7dc85da64d1d93ef01ef62e0221c02f512e3942f
|
||||
*/
|
||||
// Converts any address format to hash160
|
||||
toHash160 (address) {
|
||||
const legacyAddress = this.toLegacyAddress(address)
|
||||
@@ -223,7 +238,7 @@ class Address {
|
||||
* @api Address.hash160ToCash() hash160ToCash()
|
||||
* @apiName hash160ToCash
|
||||
* @apiGroup Address
|
||||
* @apiDescription Convert hash160 to cash address.
|
||||
* @apiDescription Convert hash160 to cash address. Accepts either hexadecimal or buffer.
|
||||
*
|
||||
* @apiExample Example usage:
|
||||
* bchjs.Address.hash160ToCash("573d93b475be4f1925f3b74ed951201b0147eac1")
|
||||
@@ -794,13 +809,13 @@ class Address {
|
||||
* @apiDescription Detect an addess from an OutputScript..
|
||||
*
|
||||
* @apiExample Example usage:
|
||||
* const script = bchjs.Script.encode([
|
||||
* const scriptBuffer = bchjs.Script.encode([
|
||||
* Buffer.from("BOX", "ascii"),
|
||||
* bchjs.Script.opcodes.OP_CAT,
|
||||
* Buffer.from("BITBOX", "ascii"),
|
||||
* bchjs.Script.opcodes.OP_EQUAL
|
||||
* ]);
|
||||
* const p2sh_hash160 = bchjs.Crypto.hash160(script);
|
||||
* const p2sh_hash160 = bchjs.Crypto.hash160(scriptBuffer);
|
||||
* const scriptPubKey = bchjs.Script.scriptHash.output.encode(p2sh_hash160);
|
||||
*
|
||||
* // mainnet address from output script
|
||||
|
||||
@@ -33,6 +33,7 @@ const Encryption = require('./encryption')
|
||||
const Utxo = require('./utxo')
|
||||
const Transaction = require('./transaction')
|
||||
const DSProof = require('./dsproof')
|
||||
const Ecash = require('./ecash')
|
||||
|
||||
// Indexers
|
||||
const Ninsight = require('./ninsight')
|
||||
@@ -118,6 +119,7 @@ class BCHJS {
|
||||
this.Transaction = new Transaction(libConfig)
|
||||
|
||||
this.DSProof = new DSProof(libConfig)
|
||||
this.eCash = new Ecash()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+3
-3
@@ -22,7 +22,7 @@ class Crypto {
|
||||
* // buffer from hex
|
||||
* let buffer = Buffer.from('03123464075c7a5fa6b8680afa2c962a02e7bf071c6b2395b0ac711d462cac9354', 'hex')
|
||||
* bchjs.Crypto.sha256(buffer)
|
||||
* // <Buffer 26 b0 78 0a 68 3a 1e 09 8e 9c b8 cf a1 b0 92 42 28 25 00 97>
|
||||
* // <Buffer 97 8c 09 dd 46 09 1d 19 22 fa 01 e9 f4 a9 75 b9 1a 37 1f 26 ba 83 99 de 27 d5 38 01 15 21 21 de>
|
||||
*
|
||||
* */
|
||||
// Translate address from any address format into a specific format.
|
||||
@@ -60,7 +60,7 @@ class Crypto {
|
||||
* @api Crypto.hash256() hash256()
|
||||
* @apiName hash256
|
||||
* @apiGroup Crypto
|
||||
* @apiDescription Utility for creating double sha256 hash digests of data.
|
||||
* @apiDescription Utility for creating double sha256 hash digests of buffer encoded data.
|
||||
*
|
||||
* @apiExample Example usage:
|
||||
* // buffer from hex
|
||||
@@ -86,7 +86,7 @@ class Crypto {
|
||||
* @api Crypto.hash160() hash160()
|
||||
* @apiName hash160
|
||||
* @apiGroup Crypto
|
||||
* @apiDescription Utility for creating ripemd160(sha256()) hash digests of data.
|
||||
* @apiDescription Utility for creating ripemd160(sha256()) hash digests of buffer encoded data.
|
||||
*
|
||||
* @apiExample Example usage:
|
||||
* // buffer from hex
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
/*
|
||||
Utility library for converting units with eCash.
|
||||
*/
|
||||
|
||||
class eCash {
|
||||
/**
|
||||
* @api eCash.toSatoshi() toSatoshi()
|
||||
* @apiName toSatoshi
|
||||
* @apiGroup eCash
|
||||
* @apiDescription
|
||||
* Convert XEC units into satoshi units
|
||||
*
|
||||
* @apiExample Example usage:
|
||||
* // convert 10,704.35 XEC to satoshis:
|
||||
* bchjs.eCash.toSatoshi(10704.35)
|
||||
* // 1070435
|
||||
*/
|
||||
toSatoshi (xec) {
|
||||
if (typeof xec !== 'number') {
|
||||
throw new Error('input must be a floating number representing XEC')
|
||||
}
|
||||
|
||||
return Math.floor(xec * 100)
|
||||
}
|
||||
|
||||
/**
|
||||
* @api eCash.toXec() toXec()
|
||||
* @apiName toXec
|
||||
* @apiGroup eCash
|
||||
* @apiDescription
|
||||
* Convert satoshi units to XEC units
|
||||
*
|
||||
* @apiExample Example usage:
|
||||
* // convert 1,070,435 satoshis to XEC:
|
||||
* bchjs.eCash.toSatoshi(1070435)
|
||||
* // 10704.35
|
||||
*/
|
||||
toXec (sats) {
|
||||
if (typeof sats !== 'number') {
|
||||
throw new Error('input must be a floating number representing satoshis')
|
||||
}
|
||||
|
||||
return sats / 100
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = eCash
|
||||
+2
-2
@@ -142,7 +142,7 @@ class ElectrumX {
|
||||
* (async () => {
|
||||
* try {
|
||||
* let balance = await bchjs.Electrumx.balance('bitcoincash:qrdka2205f4hyukutc2g0s6lykperc8nsu5u2ddpqf');
|
||||
* console.log(utxo);
|
||||
* console.log(balance);
|
||||
* } catch(error) {
|
||||
* console.error(error)
|
||||
* }
|
||||
@@ -159,7 +159,7 @@ class ElectrumX {
|
||||
* (async () => {
|
||||
* try {
|
||||
* let balance = await bchjs.Electrumx.balance(['bitcoincash:qrdka2205f4hyukutc2g0s6lykperc8nsu5u2ddpqf', 'bitcoincash:qpdh9s677ya8tnx7zdhfrn8qfyvy22wj4qa7nwqa5v']);
|
||||
* console.log(utxo);
|
||||
* console.log(balance);
|
||||
* } catch(error) {
|
||||
* console.error(error)
|
||||
* }
|
||||
|
||||
+5
-5
@@ -58,7 +58,7 @@ class Price {
|
||||
* let current = await bchjs.Price.getUsd();
|
||||
* console.log(current);
|
||||
* } catch(err) {
|
||||
* console.err(err)
|
||||
* console.error(err)
|
||||
* }
|
||||
*})()
|
||||
*
|
||||
@@ -94,7 +94,7 @@ class Price {
|
||||
* let current = await bchjs.Price.rates();
|
||||
* console.log(current);
|
||||
* } catch(err) {
|
||||
* console.err(err)
|
||||
* console.error(err)
|
||||
* }
|
||||
*})()
|
||||
*
|
||||
@@ -137,7 +137,7 @@ class Price {
|
||||
* let current = await bchjs.Price.getBchaUsd();
|
||||
* console.log(current);
|
||||
* } catch(err) {
|
||||
* console.err(err)
|
||||
* console.error(err)
|
||||
* }
|
||||
*})()
|
||||
*
|
||||
@@ -175,7 +175,7 @@ class Price {
|
||||
* let current = await bchjs.Price.getXecUsd();
|
||||
* console.log(current);
|
||||
* } catch(err) {
|
||||
* console.err(err)
|
||||
* console.error(err)
|
||||
* }
|
||||
*})()
|
||||
*
|
||||
@@ -210,7 +210,7 @@ class Price {
|
||||
* let current = await bchjs.Price.getBchUsd();
|
||||
* console.log(current);
|
||||
* } catch(err) {
|
||||
* console.err(err)
|
||||
* console.error(err)
|
||||
* }
|
||||
*})()
|
||||
*
|
||||
|
||||
+1
-1
@@ -36,7 +36,7 @@ class Address extends BCHJSAddress {
|
||||
* bchjs.SLP.Address.toSLPAddress('qzm47qz5ue99y9yl4aca7jnz7dwgdenl85jkfx3znl')
|
||||
* // simpleledger:qzm47qz5ue99y9yl4aca7jnz7dwgdenl857dzayzdp
|
||||
*
|
||||
* // tesnet legacy
|
||||
* // testnet legacy
|
||||
* bchjs.SLP.Address.toSLPAddress('msDbtTj7kWXPpYaR7PQmMK84i66fJqQMLx')
|
||||
* // slptest:qzq9je6pntpva3wf6scr7mlnycr54sjgeqauyclpwv
|
||||
*
|
||||
|
||||
@@ -183,6 +183,10 @@ class UTXO {
|
||||
*/
|
||||
async get (address, useWhitelist = false) {
|
||||
try {
|
||||
if (!address) {
|
||||
throw new Error('Address must be an array or a string')
|
||||
}
|
||||
|
||||
// Convert address to an array if it is a string.
|
||||
if (typeof address === 'string') address = [address]
|
||||
|
||||
|
||||
@@ -313,6 +313,14 @@ describe('#blockchain', () => {
|
||||
assert.isString(result)
|
||||
})
|
||||
})
|
||||
|
||||
describe('#getBlockchainInfo', () => {
|
||||
it('should get info about the blockchain', async () => {
|
||||
const result = await bchjs.Blockchain.getBlockchainInfo()
|
||||
|
||||
console.log(`blockchain info: ${JSON.stringify(result, null, 2)}`)
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
function sleep (ms) {
|
||||
|
||||
@@ -0,0 +1,56 @@
|
||||
/*
|
||||
Unit tests for eCash library.
|
||||
*/
|
||||
|
||||
// Global npm libraries
|
||||
const assert = require('chai').assert
|
||||
const Ecash = require('../../src/ecash')
|
||||
const uut = new Ecash()
|
||||
|
||||
describe('#eCash', () => {
|
||||
describe('#toSatoshi', () => {
|
||||
it('should convert XEC to satoshis', () => {
|
||||
const xec = 10704.35
|
||||
|
||||
const result = uut.toSatoshi(xec)
|
||||
|
||||
assert.equal(result, 1070435)
|
||||
})
|
||||
|
||||
it('should throw an error if input is not a number', () => {
|
||||
try {
|
||||
uut.toSatoshi('test')
|
||||
|
||||
assert.fail('Unexpected code path')
|
||||
} catch (err) {
|
||||
assert.equal(
|
||||
err.message,
|
||||
'input must be a floating number representing XEC'
|
||||
)
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
describe('#toXec', () => {
|
||||
it('should convert satoshis to XEC', () => {
|
||||
const sats = 1070435
|
||||
|
||||
const result = uut.toXec(sats)
|
||||
|
||||
assert.equal(result, 10704.35)
|
||||
})
|
||||
|
||||
it('should throw an error if input is not a number', () => {
|
||||
try {
|
||||
uut.toXec('test')
|
||||
|
||||
assert.fail('Unexpected code path')
|
||||
} catch (err) {
|
||||
assert.equal(
|
||||
err.message,
|
||||
'input must be a floating number representing satoshis'
|
||||
)
|
||||
}
|
||||
})
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user