Skip to content

Commit f12178d

Browse files
committed
Merge branch 'master' into feat/staging-cleanup
2 parents ea6c861 + 8eb0c6e commit f12178d

File tree

1 file changed

+165
-0
lines changed

1 file changed

+165
-0
lines changed

src/services/DigiByteOverride.ts

+165
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,165 @@
1+
import { DigiByte } from "@renproject/chains-bitcoin";
2+
import {
3+
BitcoinAPI,
4+
UTXO,
5+
} from "@renproject/chains-bitcoin/build/main/APIs/API";
6+
import { Insight } from "@renproject/chains-bitcoin/build/main/APIs/insight";
7+
8+
const nowNodesApiKey = "5GKhcZUJDaus0qb1Wn4I9S7wEYXgmRxz";
9+
const nowNodesMainnet = "https://dgb.nownodes.io/api/v2";
10+
const nowNodesParams = {
11+
headers: {
12+
"api-key": nowNodesApiKey,
13+
"Content-Type": "application/json",
14+
},
15+
method: "GET",
16+
};
17+
18+
type NowNodeUXTO = {
19+
txid: string;
20+
vout: number;
21+
value: string;
22+
height: number;
23+
confirmations: number;
24+
scriptPubKey: string;
25+
};
26+
27+
type NowNodeVin = {
28+
txid: string;
29+
sequence: number;
30+
n: number;
31+
addresses: string[];
32+
isAddress: boolean;
33+
value: string;
34+
hex: string;
35+
};
36+
37+
type NowNodeVout = {
38+
value: string;
39+
n: number;
40+
spent: boolean;
41+
hex: string;
42+
addresses: string[];
43+
isAddress: boolean;
44+
};
45+
46+
type NowNodeTX = {
47+
txid: string;
48+
version: number;
49+
lockTime: number;
50+
vin: NowNodeVin[];
51+
vout: NowNodeVout[];
52+
blockHash: string;
53+
blockHeight: number;
54+
confirmations: number;
55+
blockTime: number;
56+
value: string;
57+
valueIn: string;
58+
fees: string;
59+
hex: string;
60+
};
61+
62+
type NowNodeAddressResponse = {
63+
transactions: NowNodeTX[];
64+
};
65+
66+
class NowNodesDigibyteApi implements BitcoinAPI {
67+
public url: string;
68+
69+
constructor(url?: string) {
70+
this.url = url || nowNodesMainnet;
71+
}
72+
73+
async fetchUTXO(txHash: string, vOut: number) {
74+
const tx: NowNodeTX = await fetch(
75+
`${nowNodesMainnet}/tx/${txHash}`,
76+
nowNodesParams
77+
).then((response) => response.json());
78+
const uxto: UTXO = {
79+
amount: tx.vout[vOut].value,
80+
confirmations: tx.confirmations,
81+
txHash,
82+
vOut,
83+
};
84+
return uxto;
85+
}
86+
87+
async fetchTXs(address: string) {
88+
console.log("fetchTXs", address, nowNodesMainnet);
89+
const data: NowNodeAddressResponse = await fetch(
90+
`${nowNodesMainnet}/address/${address}?details=txs`,
91+
nowNodesParams
92+
).then((response) => response.json());
93+
console.log("fetchTXs result", data);
94+
95+
const uxtos: UTXO[] = [];
96+
97+
for (const tx of data.transactions) {
98+
for (let i = 0; i < tx.vout.length; i++) {
99+
const vout = tx.vout[i];
100+
if (vout.addresses.indexOf(address) >= 0) {
101+
uxtos.push({
102+
txHash: tx.txid,
103+
amount: vout.value,
104+
vOut: vout.n,
105+
confirmations: tx.confirmations || 0,
106+
});
107+
}
108+
}
109+
}
110+
111+
console.log("fetchTXs final", uxtos);
112+
return uxtos;
113+
}
114+
115+
async fetchUTXOs(address: string, confirmations?: number) {
116+
console.log("fetchUTXOs", address);
117+
const txs: NowNodeUXTO[] = await fetch(
118+
`${nowNodesMainnet}/utxo/${address}`,
119+
nowNodesParams
120+
).then((response) => response.json());
121+
console.log("fetchUTXOs result", txs);
122+
123+
const uxtos: UTXO[] = (txs || []).map((tx) => {
124+
const uxto: UTXO = {
125+
amount: tx.value,
126+
confirmations: tx.confirmations,
127+
txHash: tx.txid,
128+
vOut: tx.vout,
129+
};
130+
return uxto;
131+
});
132+
console.log("fetchUTXOs final", uxtos);
133+
return uxtos;
134+
}
135+
136+
async broadcastTransaction(hex: string) {
137+
console.log("broadcastTransaction", hex);
138+
await fetch(
139+
`${nowNodesMainnet}/sendtx/${hex}`,
140+
nowNodesParams
141+
).then((response) => response.json());
142+
return hex;
143+
}
144+
}
145+
146+
const nowNodeApiMainnet = new NowNodesDigibyteApi();
147+
148+
export const DigiByteInstance = DigiByte();
149+
DigiByteInstance.withDefaultAPIs = (network) => {
150+
switch (network) {
151+
case "mainnet":
152+
return DigiByteInstance.withAPI(
153+
Insight("https://multichain-web-proxy.herokuapp.com/digibyte-mainnet")
154+
)
155+
.withAPI(Insight("https://digiexplorer.info/api"))
156+
.withAPI(nowNodeApiMainnet)
157+
.withAPI(Insight("https://insight.digibyte.host/api"));
158+
case "testnet":
159+
return DigiByteInstance.withAPI(
160+
Insight("https://testnetexplorer.digibyteservers.io/api")
161+
);
162+
case "regtest":
163+
throw new Error(`Regtest is currently not supported.`);
164+
}
165+
};

0 commit comments

Comments
 (0)