This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"49ccbe785e12a90d680e8eaffcab73ea0a1bbe796796d5667cd71ae96563ab32": { | |
"size": 815, | |
"fee": 0.00005141, | |
"modifiedfee": 0.00005141, | |
"time": 1535995526, | |
"height": 539813, | |
"descendantcount": 1, | |
"descendantsize": 815, | |
"descendantfees": 5141, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<input id="text" type="text"></input> | |
<button onclick="decode()">Decode</button> | |
<div id="output"></div> | |
<script> | |
function decode() { | |
const el = document.getElementById('text') | |
const out = document.getElementById('output') | |
const decoded = JSON.stringify(bolt11.decode(el.value), null, 8) | |
console.log(decoded) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let bitpostInterface: BitpostInterfaceForBitcoinJS = new BitpostInterfaceForBitcoinJS({testnet: true}) | |
let bitpostRequest:BitpostRequest=bitpostInterface.createBitpostRequest(['a', 'b'], 1604188800, 0) | |
let response = bitpostRequest.sendRequest() |