widgets icon indicating copy to clipboard operation
widgets copied to clipboard

Create bitqueryTx.js

Open Horlabrainmoore opened this issue 2 months ago • 0 comments

import { fetchBitcoinTransaction } from "./bitqueryTx.js";

const data = await fetchBitcoinTransaction({ apiKey: process.env.BITQUERY_API_KEY, txHash: "30ecf3a9e06ee0ae220f42bfe6799c0bcd9ef99927308a0bf934bd4192f53968", limit: 10, offset: 0 });

console.log(JSON.stringify(data, null, 2)); { "limit": 10, "offset": 0.01447101, "network": "bitcoin", "address": "bc1qpqlsehzrjmxhutxmlwt6tdjkwafvcgugpv5375", "from": null, "till": null, "dateFormat": "%Y-%m-%d" }

Horlabrainmoore avatar Dec 16 '25 02:12 Horlabrainmoore