-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalgod.ts
559 lines (532 loc) · 18.5 KB
/
algod.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
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
import type {Algodv2} from "algosdk";
import type {
AccountApplicationInformationData, AccountApplicationInformationResponse,
AccountAssetInformationData,
AccountInformationData,
GetApplicationBoxByNameData,
GetApplicationBoxesData,
GetApplicationByIdData,
GetAssetByIdData,
GetBlockData,
GetBlockHashData,
GetLedgerStateDeltaData,
GetLedgerStateDeltaForTransactionGroupData,
GetPendingTransactionsByAddressData,
GetTransactionGroupLedgerStateDeltasForRoundData,
GetTransactionProofData,
PendingTransactionInformationData,
WaitForBlockData,
} from "@awesome-algorand/algod-fetch";
type Params = {
signal: AbortSignal
}
/**
* Get Account Application Information Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {AccountApplicationInformationData} data The address and application ID to look up.
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#accountApplicationInformation
*/
export function accountApplicationInformation<T>(
client: Algodv2,
data: AccountApplicationInformationData,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'accountApplicationInformation', data],
queryFn: ({signal}: Params) => client.accountApplicationInformation(data.address, data.applicationId).do(undefined, {signal}),
...options
}
}
/**
* Get Account Asset Information Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {AccountAssetInformationData} data The address and asset ID to look up.
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#accountAssetInformation
*/
export function accountAssetInformation<T>(
client: Algodv2,
data: AccountAssetInformationData,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'accountAssetInformation', data],
queryFn: ({signal}: Params) => client.accountAssetInformation(data.address, data.assetId).do(undefined, {signal}),
...options
}
}
/**
* Get Account Information Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {AccountInformationData} data The address to look up.
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#accountInformation
*/
export function accountInformation<T>(
client: Algodv2,
data: AccountInformationData,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'accountInformation', data],
queryFn: ({signal}: Params) => client.accountInformation(data.address).do(undefined, {signal}),
...options
}
}
/**
* Get Block Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {GetBlockData} data The round number of the block to get.
* @param {object} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#block
*/
export function getBlock<T>(
client: Algodv2,
data: GetBlockData,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'getBlock', data],
queryFn: ({signal}: Params) => client.block(data.round).do(undefined, {signal}),
staleTime: Infinity,
cacheTime: Infinity,
...options
}
}
/**
* Get Genesis Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#genesis
*/
export function getGenesis<T>(
client: Algodv2,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'getGenesis'],
queryFn: ({signal}: Params) => client.genesis().do(undefined, {signal}),
staleTime: Infinity,
cacheTime: Infinity,
...options
}
}
/**
* Get Application Box By Name Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {GetApplicationBoxByNameData} data Application and box name to look up.* @param {QueryOptions} [options] QueryOption overrides
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#getApplicationBoxByName
*/
export function getApplicationBoxByName<T>(
client: Algodv2,
data: GetApplicationBoxByNameData,
options: T = {} as T,
) {
const encoder = new TextEncoder()
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'getApplicationBoxByName', data],
queryFn: ({signal}: Params) => client.getApplicationBoxByName(data.applicationId, encoder.encode(data.name)).do(undefined, {signal}),
...options
}
}
/**
* Get Application Boxes Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {GetApplicationBoxesData} data The application ID to look up.
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#getApplicationBoxes
*/
export function getApplicationBoxes<T>(
client: Algodv2,
data: GetApplicationBoxesData,
options: T = {} as T,
) {
// TODO: .max()
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'getApplicationBoxes', data],
queryFn: ({signal}: Params) => client.getApplicationBoxes(data.applicationId).do(undefined, {signal}),
...options
}
}
/**
* Get Application By ID Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {GetApplicationByIdData} data The application ID to look up.
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#getApplicationByID
*/
export function getApplicationById<T>(
client: Algodv2,
data: GetApplicationByIdData,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'getApplicationById', data],
queryFn: ({signal}: Params) => client.getApplicationByID(data.applicationId).do(undefined, {signal}),
...options
}
}
/**
* Get Asset By ID Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {GetAssetByIdData} data The asset ID to look up.
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#getAssetByID
*/
export function getAssetById<T>(
client: Algodv2,
data: GetAssetByIdData,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'getAssetById', data],
queryFn: ({signal}: Params) => client.getAssetByID(data.assetId).do(undefined, {signal}),
...options
}
}
/**
* Get Block Hash Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {GetBlockHashData} data The round number to be searched for
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#getBlockHash
*/
export function getBlockHash<T>(
client: Algodv2,
data: GetBlockHashData,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'getBlockHash', data],
queryFn: ({signal}: Params) => client.getBlockHash(data.round).do(undefined, {signal}),
staleTime: Infinity,
cacheTime: Infinity,
...options
}
}
/**
* Get Block Offset Timestamp Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#getBlockOffsetTimestamp
*/
export function getBlockTimeStampOffset<T>(
client: Algodv2,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'getBlockTimeStampOffset'],
queryFn: ({signal}: Params) => client.getBlockOffsetTimestamp().do(undefined, {signal}),
...options
}
}
/**
* Get Ledger State Delta Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {GetLedgerStateDeltaData} data The round number to be searched for
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#getLedgerStateDelta
*/
export function getLedgerStateDelta<T>(
client: Algodv2,
data: GetLedgerStateDeltaData,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'getLedgerStateDelta', data],
queryFn: ({signal}: Params) => client.getLedgerStateDelta(data.round).do(undefined, {signal}),
...options
}
}
/**
* Get Ledger State Delta For Transaction Group Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {GetLedgerStateDeltaForTransactionGroupData} data The transaction group ID to be searched for
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#getLedgerStateDeltaForTransactionGroup
*/
export function getLedgerStateDeltaForTransactionGroup<T>(
client: Algodv2,
data: GetLedgerStateDeltaForTransactionGroupData,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'getLedgerStateDeltaForTransactionGroup', data],
queryFn: ({signal}: Params) => client.getLedgerStateDeltaForTransactionGroup(data.id).do(undefined, {signal}),
...options
}
}
/**
* Get Sync Round Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#getSyncRound
*/
export function getSyncRound<T>(
client: Algodv2,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'getSyncRound'],
queryFn: ({signal}: Params) => client.getSyncRound().do(undefined, {signal}),
...options
}
}
/**
* Get Transaction Group Ledger State Deltas For Round Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {GetTransactionGroupLedgerStateDeltasForRoundData} data The round number to be searched for
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#getTransactionGroupLedgerStateDeltasForRound
*/
export function getTransactionGroupLedgerStateDeltasForRound<T>(
client: Algodv2,
data: GetTransactionGroupLedgerStateDeltasForRoundData,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'getTransactionGroupLedgerStateDeltasForRound', data],
queryFn: ({signal}: Params) => client.getTransactionGroupLedgerStateDeltasForRound(data.round).do(undefined, {signal}),
...options
}
}
/**
* Get Transaction Params Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#getTransactionParams
*/
export function transactionParams<T>(
client: Algodv2,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'transactionParams'],
queryFn: ({signal}: Params) => client.getTransactionParams().do(undefined, {signal}),
...options
}
}
/**
* Get Transaction Proof Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {GetTransactionProofData} data The transaction ID and round number to be searched for
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#getTransactionProof
*/
export function getTransactionProof<T>(
client: Algodv2,
data: GetTransactionProofData,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'getTransactionProof', data],
queryFn: ({signal}: Params) => client.getTransactionProof(data.round, data.txid).do(undefined, {signal}),
staleTime: Infinity,
cacheTime: Infinity,
...options
}
}
/**
* Get Health Check Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#healthCheck
*/
export function healthCheck<T>(
client: Algodv2,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'healthCheck'],
queryFn: ({signal}: Params) => client.healthCheck().do(undefined, {signal}).then(()=>null),
...options
}
}
/**
* Get Pending Transactions By Address Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {GetPendingTransactionsByAddressData} data The address to look up.
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#pendingTransactionByAddress
*/
export function getPendingTransactionsByAddress<T>(
client: Algodv2,
data: GetPendingTransactionsByAddressData,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'getPendingTransactionsByAddress', data],
queryFn: ({signal}: Params) => client.pendingTransactionByAddress(data.address).do(undefined, {signal}),
...options
}
}
/**
* Get Pending Transaction Information Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {PendingTransactionInformationData} data The transaction ID to look up.
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#pendingTransactionInformation
*/
export function pendingTransactionInformation<T>(
client: Algodv2,
data: PendingTransactionInformationData,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'pendingTransactionInformation', data],
queryFn: ({signal}: Params) => client.pendingTransactionInformation(data.txid).do(undefined, {signal}),
...options
}
}
/**
* Get Pending Transactions Information Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#pendingTransactionsInformation
*/
export function getPendingTransactions<T>(
client: Algodv2,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'getPendingTransactions'],
queryFn: ({signal}: Params) => client.pendingTransactionsInformation().do(undefined, {signal}),
...options
}
}
/**
* Get Ready Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#ready
*/
export function getReady<T>(
client: Algodv2,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'getReady'],
queryFn: ({signal}: Params) => client.ready().do(undefined, {signal}),
...options
}
}
/**
* Get Status Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#status
*/
export function getStatus<T>(
client: Algodv2,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'getStatus'],
queryFn: ({signal}: Params) => client.status().do(undefined, {signal}),
...options
}
}
/**
* Get Status After Block Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {WaitForBlockData} data The round number to be searched for
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#statusAfterBlock
*/
export function waitForBlock<T>(
client: Algodv2,
data: WaitForBlockData,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'waitForBlock', data],
queryFn: ({signal}: Params) => client.statusAfterBlock(data.round).do(undefined, {signal}),
...options
}
}
/**
* Get Supply Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#supply
*/
export function getSupply<T>(
client: Algodv2,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'getSupply'],
queryFn: ({signal}: Params) => client.supply().do(undefined, {signal}),
...options
}
}
/**
* Get Versions Check Query Options
*
* @param {Algodv2} client The Algodv2 client to use.
* @param {QueryOptions} [options] QueryOption overrides
* @see https://algorand.github.io/js-algorand-sdk/classes/Algodv2.html#versionsCheck
*/
export function getVersion<T>(
client: Algodv2,
options: T = {} as T,
) {
return {
//@ts-expect-error, access private baseURL
queryKey: [client.c.bc.baseURL.origin, 'getVersion'],
queryFn: ({signal}: Params) => client.versionsCheck().do(undefined, {signal}),
...options
}
}