-
-
Notifications
You must be signed in to change notification settings - Fork 283
/
Copy pathindex.ts
517 lines (441 loc) · 15.8 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
import { CustomError } from '@trezor/blockchain-link-types/src/constants/errors';
import { MESSAGES, RESPONSES } from '@trezor/blockchain-link-types/src/constants';
import * as utils from '@trezor/blockchain-link-utils/src/blockbook';
import type { Response, SubscriptionAccountInfo } from '@trezor/blockchain-link-types';
import type {
AddressNotification,
BlockNotification,
FiatRatesNotification,
MempoolTransactionNotification,
} from '@trezor/blockchain-link-types/src/blockbook';
import type * as MessageTypes from '@trezor/blockchain-link-types/src/messages';
import { BlockbookAPI } from './websocket';
import { BaseWorker, CONTEXT, ContextType } from '../baseWorker';
type Context = ContextType<BlockbookAPI>;
type Request<T> = T & Context;
const getInfo = async (request: Request<MessageTypes.GetInfo>) => {
const api = await request.connect();
const info = await api.getServerInfo();
return {
type: RESPONSES.GET_INFO,
payload: {
url: api.options.url,
...utils.transformServerInfo(info),
},
} as const;
};
const getBlockHash = async (request: Request<MessageTypes.GetBlockHash>) => {
const api = await request.connect();
const info = await api.getBlockHash(request.payload);
return {
type: RESPONSES.GET_BLOCK_HASH,
payload: info.hash,
} as const;
};
const getBlock = async (request: Request<MessageTypes.GetBlock>) => {
const api = await request.connect();
const info = await api.getBlock(request.payload);
return {
type: RESPONSES.GET_BLOCK,
payload: info,
} as const;
};
const getAccountInfo = async (request: Request<MessageTypes.GetAccountInfo>) => {
const { payload } = request;
const api = await request.connect();
const info = await api.getAccountInfo(payload);
return {
type: RESPONSES.GET_ACCOUNT_INFO,
payload: utils.transformAccountInfo(info),
} as const;
};
const getAccountUtxo = async (request: Request<MessageTypes.GetAccountUtxo>) => {
const { payload } = request;
const api = await request.connect();
const utxos = await api.getAccountUtxo(payload);
return {
type: RESPONSES.GET_ACCOUNT_UTXO,
payload: utils.transformAccountUtxo(utxos),
} as const;
};
const getAccountBalanceHistory = async (
request: Request<MessageTypes.GetAccountBalanceHistory>,
) => {
const { payload } = request;
const api = await request.connect();
const history = await api.getAccountBalanceHistory(payload);
return {
type: RESPONSES.GET_ACCOUNT_BALANCE_HISTORY,
payload: history,
} as const;
};
const getCurrentFiatRates = async (request: Request<MessageTypes.GetCurrentFiatRates>) => {
const { payload } = request;
const api = await request.connect();
const fiatRates = await api.getCurrentFiatRates(payload);
return {
type: RESPONSES.GET_CURRENT_FIAT_RATES,
payload: fiatRates,
} as const;
};
const getFiatRatesForTimestamps = async (
request: Request<MessageTypes.GetFiatRatesForTimestamps>,
) => {
const { payload } = request;
const api = await request.connect();
const { tickers } = await api.getFiatRatesForTimestamps(payload);
return {
type: RESPONSES.GET_FIAT_RATES_FOR_TIMESTAMPS,
payload: { tickers },
} as const;
};
const getFiatRatesTickersList = async (request: Request<MessageTypes.GetFiatRatesTickersList>) => {
const { payload } = request;
const api = await request.connect();
const tickers = await api.getFiatRatesTickersList(payload);
return {
type: RESPONSES.GET_FIAT_RATES_TICKERS_LIST,
payload: {
ts: tickers.ts,
availableCurrencies: tickers.available_currencies, // convert to camelCase
},
} as const;
};
const getTransaction = async (request: Request<MessageTypes.GetTransaction>) => {
const api = await request.connect();
const rawtx = await api.getTransaction(request.payload);
const tx = utils.transformTransaction(rawtx);
return {
type: RESPONSES.GET_TRANSACTION,
payload: tx,
} as const;
};
const getTransactionHex = async (request: Request<MessageTypes.GetTransactionHex>) => {
const api = await request.connect();
const { hex } = await api.getTransaction(request.payload);
if (!hex) throw new CustomError(`Missing hex of ${request.payload}`);
return {
type: RESPONSES.GET_TRANSACTION_HEX,
payload: hex,
} as const;
};
const pushTransaction = async (request: Request<MessageTypes.PushTransaction>) => {
const api = await request.connect();
const resp = await api.pushTransaction(request.payload);
return {
type: RESPONSES.PUSH_TRANSACTION,
payload: resp.result,
} as const;
};
const estimateFee = async (request: Request<MessageTypes.EstimateFee>) => {
const api = await request.connect();
const resp = await api.estimateFee(request.payload);
return {
type: RESPONSES.ESTIMATE_FEE,
payload: resp,
} as const;
};
const rpcCall = async (request: Request<MessageTypes.RpcCall>) => {
const api = await request.connect();
const resp = await api.rpcCall(request.payload);
return {
type: RESPONSES.RPC_CALL,
payload: resp,
} as const;
};
const onNewBlock = ({ post }: Context, event: BlockNotification) => {
post({
id: -1,
type: RESPONSES.NOTIFICATION,
payload: {
type: 'block',
payload: {
blockHeight: event.height,
blockHash: event.hash,
},
},
});
};
const onMempoolTx = ({ post }: Context, payload: MempoolTransactionNotification) => {
post({
id: -1,
type: RESPONSES.NOTIFICATION,
payload: {
type: 'mempool',
payload,
},
});
};
const onTransaction = ({ state, post }: Context, event: AddressNotification) => {
if (!event.tx) return;
const descriptor = event.address;
// check if there is subscribed account with received address
const account = state.getAccount(descriptor);
post({
id: -1,
type: RESPONSES.NOTIFICATION,
payload: {
type: 'notification',
payload: {
descriptor: account ? account.descriptor : descriptor,
tx: account
? utils.transformTransaction(event.tx, account.addresses ?? account.descriptor)
: utils.transformTransaction(event.tx, descriptor),
},
},
});
};
const onNewFiatRates = ({ post }: Context, event: FiatRatesNotification) => {
post({
id: -1,
type: RESPONSES.NOTIFICATION,
payload: {
type: 'fiatRates',
payload: {
rates: event.rates,
},
},
});
};
const subscribeAccounts = async (ctx: Context, accounts: SubscriptionAccountInfo[]) => {
// subscribe to new blocks, confirmed and mempool transactions for given addresses
const api = await ctx.connect();
const { state } = ctx;
state.addAccounts(accounts);
if (!state.getSubscription('notification')) {
api.on('notification', ev => onTransaction(ctx, ev));
state.addSubscription('notification');
}
return api.subscribeAddresses(state.getAddresses());
};
const subscribeAddresses = async (ctx: Context, addresses: string[]) => {
// subscribe to new blocks, confirmed and mempool transactions for given addresses
const api = await ctx.connect();
const { state } = ctx;
state.addAddresses(addresses);
if (!state.getSubscription('notification')) {
api.on('notification', ev => onTransaction(ctx, ev));
state.addSubscription('notification');
}
return api.subscribeAddresses(state.getAddresses());
};
const subscribeBlock = async (ctx: Context) => {
if (ctx.state.getSubscription('block')) return { subscribed: true };
const api = await ctx.connect();
ctx.state.addSubscription('block');
api.on('block', ev => onNewBlock(ctx, ev));
return api.subscribeBlock();
};
const subscribeFiatRates = async (ctx: Context, currency?: string) => {
const api = await ctx.connect();
if (!ctx.state.getSubscription('fiatRates')) {
ctx.state.addSubscription('fiatRates');
api.on('fiatRates', ev => onNewFiatRates(ctx, ev));
}
return api.subscribeFiatRates(currency);
};
const subscribeMempool = async (ctx: Context) => {
const api = await ctx.connect();
if (!ctx.state.getSubscription('mempool')) {
ctx.state.addSubscription('mempool');
api.on('mempool', ev => onMempoolTx(ctx, ev));
}
return api.subscribeMempool();
};
const subscribe = async (request: Request<MessageTypes.Subscribe>) => {
const { payload } = request;
let response: { subscribed: boolean };
if (payload.type === 'accounts') {
response = await subscribeAccounts(request, payload.accounts);
} else if (payload.type === 'addresses') {
response = await subscribeAddresses(request, payload.addresses);
} else if (payload.type === 'block') {
response = await subscribeBlock(request);
} else if (payload.type === 'fiatRates') {
response = await subscribeFiatRates(request, payload.currency);
} else if (payload.type === 'mempool') {
response = await subscribeMempool(request);
} else {
throw new CustomError('invalid_param', '+type');
}
return {
type: RESPONSES.SUBSCRIBE,
payload: response,
} as const;
};
const unsubscribeAccounts = async (
{ state, connect }: Context,
accounts?: SubscriptionAccountInfo[],
) => {
state.removeAccounts(accounts || state.getAccounts());
const api = await connect();
const subscribed = state.getAddresses();
if (subscribed.length < 1) {
// there are no subscribed addresses left
// remove listeners
api.removeAllListeners('notification');
state.removeSubscription('notification');
return api.unsubscribeAddresses();
}
// subscribe remained addresses
return api.subscribeAddresses(subscribed);
};
const unsubscribeAddresses = async ({ state, connect }: Context, addresses?: string[]) => {
const api = await connect();
// remove accounts
if (!addresses) {
state.removeAccounts(state.getAccounts());
}
const subscribed = state.removeAddresses(addresses || state.getAddresses());
if (subscribed.length < 1) {
// there are no subscribed addresses left
// remove listeners
api.removeAllListeners('notification');
state.removeSubscription('notification');
return api.unsubscribeAddresses();
}
// subscribe remained addresses
return api.subscribeAddresses(subscribed);
};
const unsubscribeBlock = async ({ state, connect }: Context) => {
if (!state.getSubscription('block')) return { subscribed: false };
const api = await connect();
api.removeAllListeners('block');
state.removeSubscription('block');
return api.unsubscribeBlock();
};
const unsubscribeFiatRates = async ({ state, connect }: Context) => {
if (!state.getSubscription('fiatRates')) return { subscribed: false };
const api = await connect();
api.removeAllListeners('fiatRates');
state.removeSubscription('fiatRates');
return api.unsubscribeFiatRates();
};
const unsubscribeMempool = async ({ state, connect }: Context) => {
if (!state.getSubscription('mempool')) return { subscribed: false };
const api = await connect();
api.removeAllListeners('mempool');
state.removeSubscription('mempool');
return api.unsubscribeMempool();
};
const unsubscribe = async (request: Request<MessageTypes.Unsubscribe>) => {
const { payload } = request;
let response: { subscribed: boolean };
if (payload.type === 'accounts') {
response = await unsubscribeAccounts(request, payload.accounts);
} else if (payload.type === 'addresses') {
response = await unsubscribeAddresses(request, payload.addresses);
} else if (payload.type === 'block') {
response = await unsubscribeBlock(request);
} else if (payload.type === 'fiatRates') {
response = await unsubscribeFiatRates(request);
} else if (payload.type === 'mempool') {
response = await unsubscribeMempool(request);
} else {
throw new CustomError('invalid_param', '+type');
}
return {
type: RESPONSES.UNSUBSCRIBE,
payload: response,
} as const;
};
const onRequest = (request: Request<MessageTypes.Message>) => {
switch (request.type) {
case MESSAGES.GET_INFO:
return getInfo(request);
case MESSAGES.GET_BLOCK_HASH:
return getBlockHash(request);
case MESSAGES.GET_BLOCK:
return getBlock(request);
case MESSAGES.GET_ACCOUNT_INFO:
return getAccountInfo(request);
case MESSAGES.GET_ACCOUNT_UTXO:
return getAccountUtxo(request);
case MESSAGES.GET_TRANSACTION:
return getTransaction(request);
case MESSAGES.GET_TRANSACTION_HEX:
return getTransactionHex(request);
case MESSAGES.GET_ACCOUNT_BALANCE_HISTORY:
return getAccountBalanceHistory(request);
case MESSAGES.GET_CURRENT_FIAT_RATES:
return getCurrentFiatRates(request);
case MESSAGES.GET_FIAT_RATES_FOR_TIMESTAMPS:
return getFiatRatesForTimestamps(request);
case MESSAGES.GET_FIAT_RATES_TICKERS_LIST:
return getFiatRatesTickersList(request);
case MESSAGES.ESTIMATE_FEE:
return estimateFee(request);
case MESSAGES.RPC_CALL:
return rpcCall(request);
case MESSAGES.PUSH_TRANSACTION:
return pushTransaction(request);
case MESSAGES.SUBSCRIBE:
return subscribe(request);
case MESSAGES.UNSUBSCRIBE:
return unsubscribe(request);
default:
throw new CustomError('worker_unknown_request', `+${request.type}`);
}
};
class BlockbookWorker extends BaseWorker<BlockbookAPI> {
cleanup() {
if (this.api) {
this.api.dispose();
this.api.removeAllListeners();
}
super.cleanup();
}
protected isConnected(api: BlockbookAPI | undefined): api is BlockbookAPI {
return api?.isConnected() ?? false;
}
async tryConnect(url: string): Promise<BlockbookAPI> {
const { timeout, pingTimeout, keepAlive } = this.settings;
const api = new BlockbookAPI({
url,
timeout,
pingTimeout,
keepAlive,
agent: this.proxyAgent,
});
await api.connect();
api.on('disconnected', () => {
this.post({ id: -1, type: RESPONSES.DISCONNECTED, payload: true });
this.cleanup();
});
this.post({
id: -1,
type: RESPONSES.CONNECTED,
});
return api;
}
disconnect() {
if (this.api) {
this.api.disconnect();
}
}
async messageHandler(event: { data: MessageTypes.Message }) {
try {
// skip processed messages
if (await super.messageHandler(event)) return true;
const request: Request<MessageTypes.Message> = {
...event.data,
connect: () => this.connect(),
post: (data: Response) => this.post(data),
state: this.state,
};
const response = await onRequest(request);
this.post({ id: event.data.id, ...response });
} catch (error) {
this.errorResponse(event.data.id, error);
}
}
}
// export worker factory used in src/index
export default function Blockbook() {
return new BlockbookWorker();
}
if (CONTEXT === 'worker') {
// Initialize module if script is running in worker context
const module = new BlockbookWorker();
onmessage = module.messageHandler.bind(module);
}