You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
995 B
22 lines
995 B
const ElectrumClient = require('..')
|
|
|
|
const main = async () => {
|
|
const ecl = new ElectrumClient(50002, 'bitcoins.sk', 'tls')
|
|
await ecl.connect()
|
|
try{
|
|
const ver = await ecl.server_version("3.0.5", "1.1")
|
|
console.log(ver)
|
|
const balance = await ecl.blockchainScripthash_getBalance("676ca8550e249787290b987e12cebdb2e9b26d88c003d836ffb1cb03ffcbea7c")
|
|
console.log(balance)
|
|
const unspent = await ecl.blockchainScripthash_listunspent("676ca8550e249787290b987e12cebdb2e9b26d88c003d836ffb1cb03ffcbea7c")
|
|
console.log(unspent)
|
|
const history = await ecl.blockchainScripthash_getHistory("676ca8550e249787290b987e12cebdb2e9b26d88c003d836ffb1cb03ffcbea7c")
|
|
console.log(history)
|
|
const mempool = await ecl.blockchainScripthash_getMempool("676ca8550e249787290b987e12cebdb2e9b26d88c003d836ffb1cb03ffcbea7c")
|
|
console.log(mempool)
|
|
}catch(e){
|
|
console.log(e)
|
|
}
|
|
await ecl.close()
|
|
}
|
|
main().catch(console.log)
|
|
|