@indexing/jiti 0.0.78 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +251 -70
- package/dist/main.js.map +1 -1
- package/dist/module.js +250 -70
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +2020 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -1
package/dist/types.d.ts
CHANGED
|
@@ -1,3 +1,2023 @@
|
|
|
1
|
+
export interface AptosBlockTransactionsChanges {
|
|
2
|
+
address: string;
|
|
3
|
+
state_key_hash: string;
|
|
4
|
+
data: Record<string, unknown> | null;
|
|
5
|
+
type: string;
|
|
6
|
+
handle: string;
|
|
7
|
+
key: string;
|
|
8
|
+
value: string;
|
|
9
|
+
}
|
|
10
|
+
export interface AptosBlockTransactionsEventsGuid {
|
|
11
|
+
creation_number: string;
|
|
12
|
+
account_address: string;
|
|
13
|
+
}
|
|
14
|
+
export interface AptosBlockTransactionsEventsData {
|
|
15
|
+
epoch?: string;
|
|
16
|
+
failed_proposer_indices?: unknown[];
|
|
17
|
+
hash?: string;
|
|
18
|
+
height?: string;
|
|
19
|
+
previous_block_votes_bitvec?: string;
|
|
20
|
+
proposer?: string;
|
|
21
|
+
round?: string;
|
|
22
|
+
time_microseconds?: string;
|
|
23
|
+
__variant__?: string;
|
|
24
|
+
ask_prices?: string[];
|
|
25
|
+
ask_sizes?: string[];
|
|
26
|
+
bid_prices?: string[];
|
|
27
|
+
bid_sizes?: string[];
|
|
28
|
+
cancelled_ask_prices?: unknown[];
|
|
29
|
+
cancelled_ask_sizes?: unknown[];
|
|
30
|
+
cancelled_bid_prices?: unknown[];
|
|
31
|
+
cancelled_bid_sizes?: unknown[];
|
|
32
|
+
market?: string;
|
|
33
|
+
order_id?: string;
|
|
34
|
+
parent?: string;
|
|
35
|
+
previous_seq_num?: string;
|
|
36
|
+
sequence_number?: string;
|
|
37
|
+
user?: string;
|
|
38
|
+
execution_gas_units?: string;
|
|
39
|
+
io_gas_units?: string;
|
|
40
|
+
storage_fee_octas?: string;
|
|
41
|
+
storage_fee_refund_octas?: string;
|
|
42
|
+
total_charge_gas_units?: string;
|
|
43
|
+
}
|
|
44
|
+
export interface AptosBlockTransactionsEvents {
|
|
45
|
+
guid: AptosBlockTransactionsEventsGuid;
|
|
46
|
+
sequence_number: string;
|
|
47
|
+
type: string;
|
|
48
|
+
data: AptosBlockTransactionsEventsData;
|
|
49
|
+
}
|
|
50
|
+
export interface AptosBlockTransactionsBlockMetadataExtension {
|
|
51
|
+
randomness: null;
|
|
52
|
+
type: string;
|
|
53
|
+
}
|
|
54
|
+
export interface AptosBlockTransactionsBlockEndInfo {
|
|
55
|
+
block_gas_limit_reached: boolean;
|
|
56
|
+
block_output_limit_reached: boolean;
|
|
57
|
+
block_effective_block_gas_units: number;
|
|
58
|
+
block_approx_output_size: number;
|
|
59
|
+
}
|
|
60
|
+
export interface AptosBlockTransactionsPayload {
|
|
61
|
+
function: string;
|
|
62
|
+
type_arguments: unknown[];
|
|
63
|
+
arguments: (Record<string, unknown> | string | unknown[])[];
|
|
64
|
+
type: string;
|
|
65
|
+
}
|
|
66
|
+
export interface AptosBlockTransactionsSignature {
|
|
67
|
+
public_key: string;
|
|
68
|
+
signature: string;
|
|
69
|
+
type: string;
|
|
70
|
+
}
|
|
71
|
+
export interface AptosBlockTransactions {
|
|
72
|
+
version: string;
|
|
73
|
+
hash: string;
|
|
74
|
+
state_change_hash: string;
|
|
75
|
+
event_root_hash: string;
|
|
76
|
+
state_checkpoint_hash: null | string;
|
|
77
|
+
gas_used: string;
|
|
78
|
+
success: boolean;
|
|
79
|
+
vm_status: string;
|
|
80
|
+
accumulator_root_hash: string;
|
|
81
|
+
changes: AptosBlockTransactionsChanges[];
|
|
82
|
+
id: string;
|
|
83
|
+
epoch: string;
|
|
84
|
+
round: string;
|
|
85
|
+
events: AptosBlockTransactionsEvents[];
|
|
86
|
+
previous_block_votes_bitvec: number[];
|
|
87
|
+
proposer: string;
|
|
88
|
+
failed_proposer_indices: unknown[];
|
|
89
|
+
timestamp: string;
|
|
90
|
+
block_metadata_extension: AptosBlockTransactionsBlockMetadataExtension;
|
|
91
|
+
type: string;
|
|
92
|
+
block_end_info: AptosBlockTransactionsBlockEndInfo;
|
|
93
|
+
sender?: string;
|
|
94
|
+
sequence_number?: string;
|
|
95
|
+
max_gas_amount?: string;
|
|
96
|
+
gas_unit_price?: string;
|
|
97
|
+
expiration_timestamp_secs?: string;
|
|
98
|
+
payload?: AptosBlockTransactionsPayload;
|
|
99
|
+
signature?: AptosBlockTransactionsSignature;
|
|
100
|
+
replay_protection_nonce?: string;
|
|
101
|
+
}
|
|
102
|
+
export interface AptosBlock {
|
|
103
|
+
block_height: string;
|
|
104
|
+
block_hash: string;
|
|
105
|
+
block_timestamp: string;
|
|
106
|
+
first_version: string;
|
|
107
|
+
last_version: string;
|
|
108
|
+
transactions: AptosBlockTransactions[];
|
|
109
|
+
_network: string;
|
|
110
|
+
_vm: string;
|
|
111
|
+
}
|
|
112
|
+
export interface CardanoBlockBlockIdentifier {
|
|
113
|
+
index: number;
|
|
114
|
+
hash: string;
|
|
115
|
+
}
|
|
116
|
+
export interface CardanoBlockParentBlockIdentifier {
|
|
117
|
+
index: number;
|
|
118
|
+
hash: string;
|
|
119
|
+
}
|
|
120
|
+
export interface CardanoBlockTransactionsTransactionIdentifier {
|
|
121
|
+
hash: string;
|
|
122
|
+
}
|
|
123
|
+
export interface CardanoBlockTransactionsOperationsOperationIdentifier {
|
|
124
|
+
index: number;
|
|
125
|
+
network_index?: number;
|
|
126
|
+
}
|
|
127
|
+
export interface CardanoBlockTransactionsOperationsAccount {
|
|
128
|
+
address: string;
|
|
129
|
+
}
|
|
130
|
+
export interface CardanoBlockTransactionsOperationsAmountCurrency {
|
|
131
|
+
symbol: string;
|
|
132
|
+
decimals: number;
|
|
133
|
+
}
|
|
134
|
+
export interface CardanoBlockTransactionsOperationsAmount {
|
|
135
|
+
value: string;
|
|
136
|
+
currency: CardanoBlockTransactionsOperationsAmountCurrency;
|
|
137
|
+
}
|
|
138
|
+
export interface CardanoBlockTransactionsOperationsCoinChangeCoinIdentifier {
|
|
139
|
+
identifier: string;
|
|
140
|
+
}
|
|
141
|
+
export interface CardanoBlockTransactionsOperationsCoinChange {
|
|
142
|
+
coin_identifier: CardanoBlockTransactionsOperationsCoinChangeCoinIdentifier;
|
|
143
|
+
coin_action: string;
|
|
144
|
+
}
|
|
145
|
+
export interface CardanoBlockTransactionsOperationsMetadataTokenbundleTokensCurrency {
|
|
146
|
+
symbol: string;
|
|
147
|
+
decimals: number;
|
|
148
|
+
}
|
|
149
|
+
export interface CardanoBlockTransactionsOperationsMetadataTokenbundleTokens {
|
|
150
|
+
value: string;
|
|
151
|
+
currency: CardanoBlockTransactionsOperationsMetadataTokenbundleTokensCurrency;
|
|
152
|
+
}
|
|
153
|
+
export interface CardanoBlockTransactionsOperationsMetadataTokenbundle {
|
|
154
|
+
policyId: string;
|
|
155
|
+
tokens: CardanoBlockTransactionsOperationsMetadataTokenbundleTokens[];
|
|
156
|
+
}
|
|
157
|
+
export interface CardanoBlockTransactionsOperationsMetadataWithdrawalamountCurrency {
|
|
158
|
+
symbol: string;
|
|
159
|
+
decimals: number;
|
|
160
|
+
}
|
|
161
|
+
export interface CardanoBlockTransactionsOperationsMetadataWithdrawalamount {
|
|
162
|
+
value: string;
|
|
163
|
+
currency: CardanoBlockTransactionsOperationsMetadataWithdrawalamountCurrency;
|
|
164
|
+
}
|
|
165
|
+
export interface CardanoBlockTransactionsOperationsMetadata {
|
|
166
|
+
tokenBundle?: CardanoBlockTransactionsOperationsMetadataTokenbundle[];
|
|
167
|
+
withdrawalAmount?: CardanoBlockTransactionsOperationsMetadataWithdrawalamount;
|
|
168
|
+
}
|
|
169
|
+
export interface CardanoBlockTransactionsOperationsRelatedOperations {
|
|
170
|
+
index: number;
|
|
171
|
+
}
|
|
172
|
+
export interface CardanoBlockTransactionsOperations {
|
|
173
|
+
operation_identifier: CardanoBlockTransactionsOperationsOperationIdentifier;
|
|
174
|
+
type: string;
|
|
175
|
+
status: string;
|
|
176
|
+
account: CardanoBlockTransactionsOperationsAccount;
|
|
177
|
+
amount: CardanoBlockTransactionsOperationsAmount;
|
|
178
|
+
coin_change: CardanoBlockTransactionsOperationsCoinChange;
|
|
179
|
+
metadata: CardanoBlockTransactionsOperationsMetadata;
|
|
180
|
+
related_operations: CardanoBlockTransactionsOperationsRelatedOperations[];
|
|
181
|
+
}
|
|
182
|
+
export interface CardanoBlockTransactionsMetadata {
|
|
183
|
+
size: number;
|
|
184
|
+
scriptSize: number;
|
|
185
|
+
}
|
|
186
|
+
export interface CardanoBlockTransactions {
|
|
187
|
+
transaction_identifier: CardanoBlockTransactionsTransactionIdentifier;
|
|
188
|
+
operations: CardanoBlockTransactionsOperations[];
|
|
189
|
+
metadata: CardanoBlockTransactionsMetadata;
|
|
190
|
+
}
|
|
191
|
+
export interface CardanoBlockMetadata {
|
|
192
|
+
transactionsCount: number;
|
|
193
|
+
createdBy: string;
|
|
194
|
+
size: number;
|
|
195
|
+
epochNo: number;
|
|
196
|
+
slotNo: number;
|
|
197
|
+
}
|
|
198
|
+
export interface CardanoBlock {
|
|
199
|
+
block_identifier: CardanoBlockBlockIdentifier;
|
|
200
|
+
parent_block_identifier: CardanoBlockParentBlockIdentifier;
|
|
201
|
+
timestamp: number;
|
|
202
|
+
transactions: CardanoBlockTransactions[];
|
|
203
|
+
metadata: CardanoBlockMetadata;
|
|
204
|
+
_network: string;
|
|
205
|
+
_vm: string;
|
|
206
|
+
}
|
|
207
|
+
export interface CosmosBlockBlockIdParts {
|
|
208
|
+
total: number;
|
|
209
|
+
hash: string;
|
|
210
|
+
}
|
|
211
|
+
export interface CosmosBlockBlockId {
|
|
212
|
+
hash: string;
|
|
213
|
+
parts: CosmosBlockBlockIdParts;
|
|
214
|
+
}
|
|
215
|
+
export interface CosmosBlockBlockHeaderVersion {
|
|
216
|
+
block: string;
|
|
217
|
+
}
|
|
218
|
+
export interface CosmosBlockBlockHeaderLastBlockIdParts {
|
|
219
|
+
total: number;
|
|
220
|
+
hash: string;
|
|
221
|
+
}
|
|
222
|
+
export interface CosmosBlockBlockHeaderLastBlockId {
|
|
223
|
+
hash: string;
|
|
224
|
+
parts: CosmosBlockBlockHeaderLastBlockIdParts;
|
|
225
|
+
}
|
|
226
|
+
export interface CosmosBlockBlockHeader {
|
|
227
|
+
version: CosmosBlockBlockHeaderVersion;
|
|
228
|
+
chain_id: string;
|
|
229
|
+
height: string;
|
|
230
|
+
time: string;
|
|
231
|
+
last_block_id: CosmosBlockBlockHeaderLastBlockId;
|
|
232
|
+
last_commit_hash: string;
|
|
233
|
+
data_hash: string;
|
|
234
|
+
validators_hash: string;
|
|
235
|
+
next_validators_hash: string;
|
|
236
|
+
consensus_hash: string;
|
|
237
|
+
app_hash: string;
|
|
238
|
+
last_results_hash: string;
|
|
239
|
+
evidence_hash: string;
|
|
240
|
+
proposer_address: string;
|
|
241
|
+
}
|
|
242
|
+
export interface CosmosBlockBlockData {
|
|
243
|
+
txs: string[];
|
|
244
|
+
}
|
|
245
|
+
export interface CosmosBlockBlockEvidence {
|
|
246
|
+
evidence: unknown[];
|
|
247
|
+
}
|
|
248
|
+
export interface CosmosBlockBlockLastCommitBlockIdParts {
|
|
249
|
+
total: number;
|
|
250
|
+
hash: string;
|
|
251
|
+
}
|
|
252
|
+
export interface CosmosBlockBlockLastCommitBlockId {
|
|
253
|
+
hash: string;
|
|
254
|
+
parts: CosmosBlockBlockLastCommitBlockIdParts;
|
|
255
|
+
}
|
|
256
|
+
export interface CosmosBlockBlockLastCommitSignatures {
|
|
257
|
+
block_id_flag: number;
|
|
258
|
+
validator_address: string;
|
|
259
|
+
timestamp: string;
|
|
260
|
+
signature: string;
|
|
261
|
+
}
|
|
262
|
+
export interface CosmosBlockBlockLastCommit {
|
|
263
|
+
height: string;
|
|
264
|
+
round: number;
|
|
265
|
+
block_id: CosmosBlockBlockLastCommitBlockId;
|
|
266
|
+
signatures: CosmosBlockBlockLastCommitSignatures[];
|
|
267
|
+
}
|
|
268
|
+
export interface CosmosBlockBlock {
|
|
269
|
+
header: CosmosBlockBlockHeader;
|
|
270
|
+
data: CosmosBlockBlockData;
|
|
271
|
+
evidence: CosmosBlockBlockEvidence;
|
|
272
|
+
last_commit: CosmosBlockBlockLastCommit;
|
|
273
|
+
}
|
|
274
|
+
export interface CosmosBlockTxsResultsEventsAttributes {
|
|
275
|
+
key: string;
|
|
276
|
+
value: string;
|
|
277
|
+
index: boolean;
|
|
278
|
+
}
|
|
279
|
+
export interface CosmosBlockTxsResultsEvents {
|
|
280
|
+
type: string;
|
|
281
|
+
attributes: CosmosBlockTxsResultsEventsAttributes[];
|
|
282
|
+
}
|
|
283
|
+
export interface CosmosBlockTxsResults {
|
|
284
|
+
code: number;
|
|
285
|
+
data: string;
|
|
286
|
+
log: string;
|
|
287
|
+
info: string;
|
|
288
|
+
gas_wanted: string;
|
|
289
|
+
gas_used: string;
|
|
290
|
+
events: CosmosBlockTxsResultsEvents[];
|
|
291
|
+
codespace: string;
|
|
292
|
+
}
|
|
293
|
+
export interface CosmosBlockFinalizeBlockEventsAttributes {
|
|
294
|
+
key: string;
|
|
295
|
+
value: string;
|
|
296
|
+
index: boolean;
|
|
297
|
+
}
|
|
298
|
+
export interface CosmosBlockFinalizeBlockEvents {
|
|
299
|
+
type: string;
|
|
300
|
+
attributes: CosmosBlockFinalizeBlockEventsAttributes[];
|
|
301
|
+
}
|
|
302
|
+
export interface CosmosBlockConsensusParamUpdatesBlock {
|
|
303
|
+
max_bytes: string;
|
|
304
|
+
max_gas: string;
|
|
305
|
+
}
|
|
306
|
+
export interface CosmosBlockConsensusParamUpdatesEvidence {
|
|
307
|
+
max_age_num_blocks: string;
|
|
308
|
+
max_age_duration: string;
|
|
309
|
+
max_bytes: string;
|
|
310
|
+
}
|
|
311
|
+
export interface CosmosBlockConsensusParamUpdatesValidator {
|
|
312
|
+
pub_key_types: string[];
|
|
313
|
+
}
|
|
314
|
+
export interface CosmosBlockConsensusParamUpdatesVersion {
|
|
315
|
+
}
|
|
316
|
+
export interface CosmosBlockConsensusParamUpdatesAbci {
|
|
317
|
+
}
|
|
318
|
+
export interface CosmosBlockConsensusParamUpdates {
|
|
319
|
+
block: CosmosBlockConsensusParamUpdatesBlock;
|
|
320
|
+
evidence: CosmosBlockConsensusParamUpdatesEvidence;
|
|
321
|
+
validator: CosmosBlockConsensusParamUpdatesValidator;
|
|
322
|
+
version: CosmosBlockConsensusParamUpdatesVersion;
|
|
323
|
+
abci: CosmosBlockConsensusParamUpdatesAbci;
|
|
324
|
+
}
|
|
325
|
+
export interface CosmosBlock {
|
|
326
|
+
block_id: CosmosBlockBlockId;
|
|
327
|
+
block: CosmosBlockBlock;
|
|
328
|
+
height: string;
|
|
329
|
+
txs_results: CosmosBlockTxsResults[];
|
|
330
|
+
finalize_block_events: CosmosBlockFinalizeBlockEvents[];
|
|
331
|
+
validator_updates: null;
|
|
332
|
+
consensus_param_updates: CosmosBlockConsensusParamUpdates;
|
|
333
|
+
app_hash: string;
|
|
334
|
+
_network: string;
|
|
335
|
+
_vm: string;
|
|
336
|
+
}
|
|
337
|
+
export interface EvmBlockTransactionsAccesslist {
|
|
338
|
+
address: string;
|
|
339
|
+
storageKeys: string[];
|
|
340
|
+
}
|
|
341
|
+
export interface EvmBlockTransactionsReceiptLogs {
|
|
342
|
+
address: string;
|
|
343
|
+
topics: string[];
|
|
344
|
+
data: string;
|
|
345
|
+
blockNumber: number;
|
|
346
|
+
transactionHash: string;
|
|
347
|
+
transactionIndex: number;
|
|
348
|
+
blockHash: string;
|
|
349
|
+
blockTimestamp: string;
|
|
350
|
+
logIndex: number;
|
|
351
|
+
removed: boolean;
|
|
352
|
+
}
|
|
353
|
+
export interface EvmBlockTransactionsReceipt {
|
|
354
|
+
blockHash: string;
|
|
355
|
+
blockNumber: number;
|
|
356
|
+
contractAddress: null | string;
|
|
357
|
+
cumulativeGasUsed: number;
|
|
358
|
+
effectiveGasPrice: number;
|
|
359
|
+
from: string;
|
|
360
|
+
gasUsed: number;
|
|
361
|
+
logs: EvmBlockTransactionsReceiptLogs[];
|
|
362
|
+
logsBloom: string;
|
|
363
|
+
status: boolean;
|
|
364
|
+
to: null | string;
|
|
365
|
+
transactionHash: string;
|
|
366
|
+
transactionIndex: number;
|
|
367
|
+
type: string;
|
|
368
|
+
depositNonce?: string;
|
|
369
|
+
depositReceiptVersion?: string;
|
|
370
|
+
blobGasUsed?: string;
|
|
371
|
+
l1GasPrice?: string;
|
|
372
|
+
l1GasUsed?: string;
|
|
373
|
+
l1Fee?: string;
|
|
374
|
+
l1BaseFeeScalar?: string;
|
|
375
|
+
l1BlobBaseFee?: string;
|
|
376
|
+
l1BlobBaseFeeScalar?: string;
|
|
377
|
+
daFootprintGasScalar?: string;
|
|
378
|
+
gasUsedForL1?: string;
|
|
379
|
+
l1BlockNumber?: string;
|
|
380
|
+
timeboosted?: boolean;
|
|
381
|
+
}
|
|
382
|
+
export interface EvmBlockTransactionsTracesAction {
|
|
383
|
+
from: string;
|
|
384
|
+
callType?: string;
|
|
385
|
+
gas: string;
|
|
386
|
+
input?: string;
|
|
387
|
+
to?: string;
|
|
388
|
+
value: string;
|
|
389
|
+
init?: string;
|
|
390
|
+
creationMethod?: string;
|
|
391
|
+
}
|
|
392
|
+
export interface EvmBlockTransactionsTraces {
|
|
393
|
+
action: EvmBlockTransactionsTracesAction;
|
|
394
|
+
blockHash: string;
|
|
395
|
+
blockNumber: number;
|
|
396
|
+
result: Record<string, unknown> | null;
|
|
397
|
+
subtraces: number;
|
|
398
|
+
traceAddress: number[];
|
|
399
|
+
transactionHash: string;
|
|
400
|
+
transactionPosition: number;
|
|
401
|
+
type: string;
|
|
402
|
+
error: string;
|
|
403
|
+
}
|
|
404
|
+
export interface EvmBlockTransactionsAuthorizationlist {
|
|
405
|
+
chainId: string;
|
|
406
|
+
address: string;
|
|
407
|
+
nonce: string;
|
|
408
|
+
yParity: string;
|
|
409
|
+
r: string;
|
|
410
|
+
s: string;
|
|
411
|
+
}
|
|
412
|
+
export interface EvmBlockTransactions {
|
|
413
|
+
type: number;
|
|
414
|
+
chainId: string;
|
|
415
|
+
nonce: number;
|
|
416
|
+
gas: number;
|
|
417
|
+
maxFeePerGas: string;
|
|
418
|
+
maxPriorityFeePerGas: string;
|
|
419
|
+
to: null | string;
|
|
420
|
+
value: string;
|
|
421
|
+
accessList: EvmBlockTransactionsAccesslist[];
|
|
422
|
+
input: string;
|
|
423
|
+
r: string;
|
|
424
|
+
s: string;
|
|
425
|
+
yParity: string;
|
|
426
|
+
v: string;
|
|
427
|
+
hash: string;
|
|
428
|
+
blockHash: string;
|
|
429
|
+
blockNumber: number;
|
|
430
|
+
transactionIndex: number;
|
|
431
|
+
from: string;
|
|
432
|
+
gasPrice: string;
|
|
433
|
+
receipt: EvmBlockTransactionsReceipt;
|
|
434
|
+
traces: EvmBlockTransactionsTraces[];
|
|
435
|
+
authorizationList: EvmBlockTransactionsAuthorizationlist[];
|
|
436
|
+
sourceHash?: string;
|
|
437
|
+
mint?: string;
|
|
438
|
+
depositReceiptVersion?: string;
|
|
439
|
+
}
|
|
440
|
+
export interface EvmBlockWithdrawals {
|
|
441
|
+
index: string;
|
|
442
|
+
validatorIndex: string;
|
|
443
|
+
address: string;
|
|
444
|
+
amount: string;
|
|
445
|
+
}
|
|
446
|
+
export interface EvmBlock {
|
|
447
|
+
hash: string;
|
|
448
|
+
parentHash: string;
|
|
449
|
+
sha3Uncles: string;
|
|
450
|
+
miner: string;
|
|
451
|
+
stateRoot: string;
|
|
452
|
+
transactionsRoot: string;
|
|
453
|
+
receiptsRoot: string;
|
|
454
|
+
logsBloom: string;
|
|
455
|
+
difficulty: string;
|
|
456
|
+
number: number;
|
|
457
|
+
gasLimit: number;
|
|
458
|
+
gasUsed: number;
|
|
459
|
+
timestamp: number;
|
|
460
|
+
extraData: string;
|
|
461
|
+
mixHash: string;
|
|
462
|
+
nonce: string;
|
|
463
|
+
baseFeePerGas: number;
|
|
464
|
+
withdrawalsRoot?: string;
|
|
465
|
+
blobGasUsed?: string;
|
|
466
|
+
excessBlobGas?: string;
|
|
467
|
+
parentBeaconBlockRoot?: string;
|
|
468
|
+
requestsHash?: string;
|
|
469
|
+
size: number;
|
|
470
|
+
uncles: unknown[];
|
|
471
|
+
transactions: EvmBlockTransactions[];
|
|
472
|
+
withdrawals?: EvmBlockWithdrawals[];
|
|
473
|
+
_network: string;
|
|
474
|
+
_vm: string;
|
|
475
|
+
l1BlockNumber?: string;
|
|
476
|
+
sendCount?: string;
|
|
477
|
+
sendRoot?: string;
|
|
478
|
+
}
|
|
479
|
+
export interface FilecoinBlockCids {
|
|
480
|
+
'/': string;
|
|
481
|
+
}
|
|
482
|
+
export interface FilecoinBlockBlocksTicket {
|
|
483
|
+
VRFProof: string;
|
|
484
|
+
}
|
|
485
|
+
export interface FilecoinBlockBlocksElectionproof {
|
|
486
|
+
WinCount: number;
|
|
487
|
+
VRFProof: string;
|
|
488
|
+
}
|
|
489
|
+
export interface FilecoinBlockBlocksBeaconentries {
|
|
490
|
+
Round: number;
|
|
491
|
+
Data: string;
|
|
492
|
+
}
|
|
493
|
+
export interface FilecoinBlockBlocksWinpostproof {
|
|
494
|
+
PoStProof: number;
|
|
495
|
+
ProofBytes: string;
|
|
496
|
+
}
|
|
497
|
+
export interface FilecoinBlockBlocksParents {
|
|
498
|
+
'/': string;
|
|
499
|
+
}
|
|
500
|
+
export interface FilecoinBlockBlocksParentstateroot {
|
|
501
|
+
'/': string;
|
|
502
|
+
}
|
|
503
|
+
export interface FilecoinBlockBlocksParentmessagereceipts {
|
|
504
|
+
'/': string;
|
|
505
|
+
}
|
|
506
|
+
export interface FilecoinBlockBlocksMessages {
|
|
507
|
+
'/': string;
|
|
508
|
+
}
|
|
509
|
+
export interface FilecoinBlockBlocksBlsaggregate {
|
|
510
|
+
Type: number;
|
|
511
|
+
Data: string;
|
|
512
|
+
}
|
|
513
|
+
export interface FilecoinBlockBlocksBlocksig {
|
|
514
|
+
Type: number;
|
|
515
|
+
Data: string;
|
|
516
|
+
}
|
|
517
|
+
export interface FilecoinBlockBlocks {
|
|
518
|
+
Miner: string;
|
|
519
|
+
Ticket: FilecoinBlockBlocksTicket;
|
|
520
|
+
ElectionProof: FilecoinBlockBlocksElectionproof;
|
|
521
|
+
BeaconEntries: FilecoinBlockBlocksBeaconentries[];
|
|
522
|
+
WinPoStProof: FilecoinBlockBlocksWinpostproof[];
|
|
523
|
+
Parents: FilecoinBlockBlocksParents[];
|
|
524
|
+
ParentWeight: string;
|
|
525
|
+
Height: number;
|
|
526
|
+
ParentStateRoot: FilecoinBlockBlocksParentstateroot;
|
|
527
|
+
ParentMessageReceipts: FilecoinBlockBlocksParentmessagereceipts;
|
|
528
|
+
Messages: FilecoinBlockBlocksMessages;
|
|
529
|
+
BLSAggregate: FilecoinBlockBlocksBlsaggregate;
|
|
530
|
+
Timestamp: number;
|
|
531
|
+
BlockSig: FilecoinBlockBlocksBlocksig;
|
|
532
|
+
ForkSignaling: number;
|
|
533
|
+
ParentBaseFee: string;
|
|
534
|
+
}
|
|
535
|
+
export interface FilecoinBlockMessagesCid {
|
|
536
|
+
'/': string;
|
|
537
|
+
}
|
|
538
|
+
export interface FilecoinBlockMessagesBlockmessagesBlsmessagesCid {
|
|
539
|
+
'/': string;
|
|
540
|
+
}
|
|
541
|
+
export interface FilecoinBlockMessagesBlockmessagesBlsmessages {
|
|
542
|
+
Version: number;
|
|
543
|
+
To: string;
|
|
544
|
+
From: string;
|
|
545
|
+
Nonce: number;
|
|
546
|
+
Value: string;
|
|
547
|
+
GasLimit: number;
|
|
548
|
+
GasFeeCap: string;
|
|
549
|
+
GasPremium: string;
|
|
550
|
+
Method: number;
|
|
551
|
+
Params: string;
|
|
552
|
+
CID: FilecoinBlockMessagesBlockmessagesBlsmessagesCid;
|
|
553
|
+
}
|
|
554
|
+
export interface FilecoinBlockMessagesBlockmessagesSecpkmessagesMessageCid {
|
|
555
|
+
'/': string;
|
|
556
|
+
}
|
|
557
|
+
export interface FilecoinBlockMessagesBlockmessagesSecpkmessagesMessage {
|
|
558
|
+
Version: number;
|
|
559
|
+
To: string;
|
|
560
|
+
From: string;
|
|
561
|
+
Nonce: number;
|
|
562
|
+
Value: string;
|
|
563
|
+
GasLimit: number;
|
|
564
|
+
GasFeeCap: string;
|
|
565
|
+
GasPremium: string;
|
|
566
|
+
Method: number;
|
|
567
|
+
Params: null | string;
|
|
568
|
+
CID: FilecoinBlockMessagesBlockmessagesSecpkmessagesMessageCid;
|
|
569
|
+
}
|
|
570
|
+
export interface FilecoinBlockMessagesBlockmessagesSecpkmessagesSignature {
|
|
571
|
+
Type: number;
|
|
572
|
+
Data: string;
|
|
573
|
+
}
|
|
574
|
+
export interface FilecoinBlockMessagesBlockmessagesSecpkmessagesCid {
|
|
575
|
+
'/': string;
|
|
576
|
+
}
|
|
577
|
+
export interface FilecoinBlockMessagesBlockmessagesSecpkmessages {
|
|
578
|
+
Message: FilecoinBlockMessagesBlockmessagesSecpkmessagesMessage;
|
|
579
|
+
Signature: FilecoinBlockMessagesBlockmessagesSecpkmessagesSignature;
|
|
580
|
+
CID: FilecoinBlockMessagesBlockmessagesSecpkmessagesCid;
|
|
581
|
+
}
|
|
582
|
+
export interface FilecoinBlockMessagesBlockmessagesCids {
|
|
583
|
+
'/': string;
|
|
584
|
+
}
|
|
585
|
+
export interface FilecoinBlockMessagesBlockmessages {
|
|
586
|
+
BlsMessages: FilecoinBlockMessagesBlockmessagesBlsmessages[];
|
|
587
|
+
SecpkMessages: FilecoinBlockMessagesBlockmessagesSecpkmessages[];
|
|
588
|
+
Cids: FilecoinBlockMessagesBlockmessagesCids[];
|
|
589
|
+
}
|
|
590
|
+
export interface FilecoinBlockMessages {
|
|
591
|
+
cid: FilecoinBlockMessagesCid;
|
|
592
|
+
blockMessages: FilecoinBlockMessagesBlockmessages;
|
|
593
|
+
}
|
|
594
|
+
export interface FilecoinBlockReceipts {
|
|
595
|
+
ExitCode: number;
|
|
596
|
+
Return: null | string;
|
|
597
|
+
GasUsed: number;
|
|
598
|
+
EventsRoot: Record<string, unknown> | null;
|
|
599
|
+
}
|
|
600
|
+
export interface FilecoinBlock {
|
|
601
|
+
Cids: FilecoinBlockCids[];
|
|
602
|
+
Blocks: FilecoinBlockBlocks[];
|
|
603
|
+
Height: number;
|
|
604
|
+
messages: FilecoinBlockMessages[];
|
|
605
|
+
receipts: FilecoinBlockReceipts[];
|
|
606
|
+
_network: string;
|
|
607
|
+
_vm: string;
|
|
608
|
+
}
|
|
609
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesCreatednodeNewfields {
|
|
610
|
+
Account?: string;
|
|
611
|
+
BookDirectory?: string;
|
|
612
|
+
OwnerNode?: string;
|
|
613
|
+
Sequence?: number;
|
|
614
|
+
TakerGets?: Record<string, unknown> | string;
|
|
615
|
+
TakerPays?: Record<string, unknown> | string;
|
|
616
|
+
ExchangeRate?: string;
|
|
617
|
+
RootIndex?: string;
|
|
618
|
+
TakerGetsCurrency?: string;
|
|
619
|
+
TakerGetsIssuer?: string;
|
|
620
|
+
TakerPaysCurrency?: string;
|
|
621
|
+
TakerPaysIssuer?: string;
|
|
622
|
+
Flags?: number;
|
|
623
|
+
Expiration?: number;
|
|
624
|
+
Amount?: string;
|
|
625
|
+
NFTokenID?: string;
|
|
626
|
+
Owner?: string;
|
|
627
|
+
TicketSequence?: number;
|
|
628
|
+
IndexPrevious?: string;
|
|
629
|
+
Destination?: string;
|
|
630
|
+
}
|
|
631
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesCreatednode {
|
|
632
|
+
LedgerEntryType: string;
|
|
633
|
+
LedgerIndex: string;
|
|
634
|
+
NewFields: RippleLedgerTransactionsMetadataAffectednodesCreatednodeNewfields;
|
|
635
|
+
}
|
|
636
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsNftokensNftoken {
|
|
637
|
+
NFTokenID: string;
|
|
638
|
+
URI: string;
|
|
639
|
+
}
|
|
640
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsNftokens {
|
|
641
|
+
NFToken: RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsNftokensNftoken;
|
|
642
|
+
}
|
|
643
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsHighlimit {
|
|
644
|
+
currency: string;
|
|
645
|
+
issuer: string;
|
|
646
|
+
value: string;
|
|
647
|
+
}
|
|
648
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsLowlimit {
|
|
649
|
+
currency: string;
|
|
650
|
+
issuer: string;
|
|
651
|
+
value: string;
|
|
652
|
+
}
|
|
653
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsAsset {
|
|
654
|
+
currency: string;
|
|
655
|
+
}
|
|
656
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsAsset2 {
|
|
657
|
+
currency: string;
|
|
658
|
+
issuer: string;
|
|
659
|
+
}
|
|
660
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsAuctionslotPrice {
|
|
661
|
+
currency: string;
|
|
662
|
+
issuer: string;
|
|
663
|
+
value: string;
|
|
664
|
+
}
|
|
665
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsAuctionslot {
|
|
666
|
+
Account: string;
|
|
667
|
+
Expiration: number;
|
|
668
|
+
Price: RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsAuctionslotPrice;
|
|
669
|
+
}
|
|
670
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsLptokenbalance {
|
|
671
|
+
currency: string;
|
|
672
|
+
issuer: string;
|
|
673
|
+
value: string;
|
|
674
|
+
}
|
|
675
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsVoteslotsVoteentry {
|
|
676
|
+
Account: string;
|
|
677
|
+
VoteWeight: number;
|
|
678
|
+
}
|
|
679
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsVoteslots {
|
|
680
|
+
VoteEntry?: RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsVoteslotsVoteentry;
|
|
681
|
+
}
|
|
682
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfields {
|
|
683
|
+
Account?: string;
|
|
684
|
+
Balance?: Record<string, unknown> | string;
|
|
685
|
+
Flags: number;
|
|
686
|
+
OwnerCount?: number;
|
|
687
|
+
Sequence?: number;
|
|
688
|
+
IndexPrevious?: string;
|
|
689
|
+
Owner?: string;
|
|
690
|
+
RootIndex?: string;
|
|
691
|
+
IndexNext?: string;
|
|
692
|
+
BurnedNFTokens?: number;
|
|
693
|
+
FirstNFTokenSequence?: number;
|
|
694
|
+
MintedNFTokens?: number;
|
|
695
|
+
TicketCount?: number;
|
|
696
|
+
NFTokens?: RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsNftokens[];
|
|
697
|
+
NextPageMin?: string;
|
|
698
|
+
PreviousPageMin?: string;
|
|
699
|
+
HighLimit?: RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsHighlimit;
|
|
700
|
+
HighNode?: string;
|
|
701
|
+
LowLimit?: RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsLowlimit;
|
|
702
|
+
LowNode?: string;
|
|
703
|
+
BookDirectory?: string;
|
|
704
|
+
BookNode?: string;
|
|
705
|
+
Expiration?: number;
|
|
706
|
+
OwnerNode?: string;
|
|
707
|
+
TakerGets?: Record<string, unknown> | string;
|
|
708
|
+
TakerPays?: Record<string, unknown> | string;
|
|
709
|
+
AMMID?: string;
|
|
710
|
+
Domain?: string;
|
|
711
|
+
EmailHash?: string;
|
|
712
|
+
RegularKey?: string;
|
|
713
|
+
MessageKey?: string;
|
|
714
|
+
ExchangeRate?: string;
|
|
715
|
+
TakerGetsCurrency?: string;
|
|
716
|
+
TakerGetsIssuer?: string;
|
|
717
|
+
TakerPaysCurrency?: string;
|
|
718
|
+
TakerPaysIssuer?: string;
|
|
719
|
+
AccountTxnID?: string;
|
|
720
|
+
Asset?: RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsAsset;
|
|
721
|
+
Asset2?: RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsAsset2;
|
|
722
|
+
AuctionSlot?: RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsAuctionslot;
|
|
723
|
+
LPTokenBalance?: RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsLptokenbalance;
|
|
724
|
+
VoteSlots?: RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfieldsVoteslots[];
|
|
725
|
+
NFTokenID?: string;
|
|
726
|
+
NFTokenMinter?: string;
|
|
727
|
+
}
|
|
728
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesModifiednodePreviousfieldsNftokensNftoken {
|
|
729
|
+
NFTokenID: string;
|
|
730
|
+
URI: string;
|
|
731
|
+
}
|
|
732
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesModifiednodePreviousfieldsNftokens {
|
|
733
|
+
NFToken: RippleLedgerTransactionsMetadataAffectednodesModifiednodePreviousfieldsNftokensNftoken;
|
|
734
|
+
}
|
|
735
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesModifiednodePreviousfieldsLptokenbalance {
|
|
736
|
+
currency: string;
|
|
737
|
+
issuer: string;
|
|
738
|
+
value: string;
|
|
739
|
+
}
|
|
740
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesModifiednodePreviousfields {
|
|
741
|
+
Balance?: Record<string, unknown> | string;
|
|
742
|
+
OwnerCount?: number;
|
|
743
|
+
Sequence?: number;
|
|
744
|
+
BurnedNFTokens?: number;
|
|
745
|
+
TicketCount?: number;
|
|
746
|
+
NFTokens?: RippleLedgerTransactionsMetadataAffectednodesModifiednodePreviousfieldsNftokens[];
|
|
747
|
+
NextPageMin?: string;
|
|
748
|
+
PreviousPageMin?: string;
|
|
749
|
+
TakerGets?: Record<string, unknown> | string;
|
|
750
|
+
TakerPays?: Record<string, unknown> | string;
|
|
751
|
+
AccountTxnID?: string;
|
|
752
|
+
LPTokenBalance?: RippleLedgerTransactionsMetadataAffectednodesModifiednodePreviousfieldsLptokenbalance;
|
|
753
|
+
IndexPrevious?: string;
|
|
754
|
+
IndexNext?: string;
|
|
755
|
+
}
|
|
756
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesModifiednode {
|
|
757
|
+
FinalFields?: RippleLedgerTransactionsMetadataAffectednodesModifiednodeFinalfields;
|
|
758
|
+
LedgerEntryType: string;
|
|
759
|
+
LedgerIndex: string;
|
|
760
|
+
PreviousFields?: RippleLedgerTransactionsMetadataAffectednodesModifiednodePreviousfields;
|
|
761
|
+
PreviousTxnID?: string;
|
|
762
|
+
PreviousTxnLgrSeq?: number;
|
|
763
|
+
}
|
|
764
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesDeletednodeFinalfieldsNftokensNftoken {
|
|
765
|
+
NFTokenID: string;
|
|
766
|
+
URI: string;
|
|
767
|
+
}
|
|
768
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesDeletednodeFinalfieldsNftokens {
|
|
769
|
+
NFToken: RippleLedgerTransactionsMetadataAffectednodesDeletednodeFinalfieldsNftokensNftoken;
|
|
770
|
+
}
|
|
771
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesDeletednodeFinalfieldsBalance {
|
|
772
|
+
currency: string;
|
|
773
|
+
issuer: string;
|
|
774
|
+
value: string;
|
|
775
|
+
}
|
|
776
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesDeletednodeFinalfieldsHighlimit {
|
|
777
|
+
currency: string;
|
|
778
|
+
issuer: string;
|
|
779
|
+
value: string;
|
|
780
|
+
}
|
|
781
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesDeletednodeFinalfieldsLowlimit {
|
|
782
|
+
currency: string;
|
|
783
|
+
issuer: string;
|
|
784
|
+
value: string;
|
|
785
|
+
}
|
|
786
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesDeletednodeFinalfields {
|
|
787
|
+
Account?: string;
|
|
788
|
+
Flags: number;
|
|
789
|
+
OwnerNode?: string;
|
|
790
|
+
PreviousTxnID: string;
|
|
791
|
+
PreviousTxnLgrSeq: number;
|
|
792
|
+
TicketSequence?: number;
|
|
793
|
+
ExchangeRate?: string;
|
|
794
|
+
RootIndex?: string;
|
|
795
|
+
TakerGetsCurrency?: string;
|
|
796
|
+
TakerGetsIssuer?: string;
|
|
797
|
+
TakerPaysCurrency?: string;
|
|
798
|
+
TakerPaysIssuer?: string;
|
|
799
|
+
BookDirectory?: string;
|
|
800
|
+
BookNode?: string;
|
|
801
|
+
Sequence?: number;
|
|
802
|
+
TakerGets?: Record<string, unknown> | string;
|
|
803
|
+
TakerPays?: Record<string, unknown> | string;
|
|
804
|
+
NFTokens?: RippleLedgerTransactionsMetadataAffectednodesDeletednodeFinalfieldsNftokens[];
|
|
805
|
+
NextPageMin?: string;
|
|
806
|
+
PreviousPageMin?: string;
|
|
807
|
+
Expiration?: number;
|
|
808
|
+
Balance?: RippleLedgerTransactionsMetadataAffectednodesDeletednodeFinalfieldsBalance;
|
|
809
|
+
HighLimit?: RippleLedgerTransactionsMetadataAffectednodesDeletednodeFinalfieldsHighlimit;
|
|
810
|
+
HighNode?: string;
|
|
811
|
+
LowLimit?: RippleLedgerTransactionsMetadataAffectednodesDeletednodeFinalfieldsLowlimit;
|
|
812
|
+
LowNode?: string;
|
|
813
|
+
IndexNext?: string;
|
|
814
|
+
IndexPrevious?: string;
|
|
815
|
+
Owner?: string;
|
|
816
|
+
}
|
|
817
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesDeletednodePreviousfieldsNftokensNftoken {
|
|
818
|
+
NFTokenID: string;
|
|
819
|
+
URI: string;
|
|
820
|
+
}
|
|
821
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesDeletednodePreviousfieldsNftokens {
|
|
822
|
+
NFToken: RippleLedgerTransactionsMetadataAffectednodesDeletednodePreviousfieldsNftokensNftoken;
|
|
823
|
+
}
|
|
824
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesDeletednodePreviousfieldsBalance {
|
|
825
|
+
currency: string;
|
|
826
|
+
issuer: string;
|
|
827
|
+
value: string;
|
|
828
|
+
}
|
|
829
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesDeletednodePreviousfields {
|
|
830
|
+
NFTokens?: RippleLedgerTransactionsMetadataAffectednodesDeletednodePreviousfieldsNftokens[];
|
|
831
|
+
TakerGets?: Record<string, unknown> | string;
|
|
832
|
+
TakerPays?: Record<string, unknown> | string;
|
|
833
|
+
Balance?: RippleLedgerTransactionsMetadataAffectednodesDeletednodePreviousfieldsBalance;
|
|
834
|
+
Flags?: number;
|
|
835
|
+
}
|
|
836
|
+
export interface RippleLedgerTransactionsMetadataAffectednodesDeletednode {
|
|
837
|
+
FinalFields: RippleLedgerTransactionsMetadataAffectednodesDeletednodeFinalfields;
|
|
838
|
+
LedgerEntryType: string;
|
|
839
|
+
LedgerIndex: string;
|
|
840
|
+
PreviousFields?: RippleLedgerTransactionsMetadataAffectednodesDeletednodePreviousfields;
|
|
841
|
+
}
|
|
842
|
+
export interface RippleLedgerTransactionsMetadataAffectednodes {
|
|
843
|
+
CreatedNode: RippleLedgerTransactionsMetadataAffectednodesCreatednode;
|
|
844
|
+
ModifiedNode: RippleLedgerTransactionsMetadataAffectednodesModifiednode;
|
|
845
|
+
DeletedNode: RippleLedgerTransactionsMetadataAffectednodesDeletednode;
|
|
846
|
+
}
|
|
847
|
+
export interface RippleLedgerTransactionsMetadata {
|
|
848
|
+
AffectedNodes: RippleLedgerTransactionsMetadataAffectednodes[];
|
|
849
|
+
TransactionIndex: number;
|
|
850
|
+
TransactionResult: string;
|
|
851
|
+
delivered_amount?: Record<string, unknown> | string;
|
|
852
|
+
DeliveredAmount?: Record<string, unknown> | string;
|
|
853
|
+
}
|
|
854
|
+
export interface RippleLedgerTransactionsMemosMemo {
|
|
855
|
+
MemoData: string;
|
|
856
|
+
MemoType?: string;
|
|
857
|
+
MemoFormat?: string;
|
|
858
|
+
}
|
|
859
|
+
export interface RippleLedgerTransactionsMemos {
|
|
860
|
+
Memo: RippleLedgerTransactionsMemosMemo;
|
|
861
|
+
}
|
|
862
|
+
export interface RippleLedgerTransactionsPaths {
|
|
863
|
+
account: string;
|
|
864
|
+
type: number;
|
|
865
|
+
currency: string;
|
|
866
|
+
issuer: string;
|
|
867
|
+
}
|
|
868
|
+
export interface RippleLedgerTransactionsLimitamount {
|
|
869
|
+
currency: string;
|
|
870
|
+
issuer: string;
|
|
871
|
+
value: string;
|
|
872
|
+
}
|
|
873
|
+
export interface RippleLedgerTransactionsSignersSigner {
|
|
874
|
+
Account: string;
|
|
875
|
+
SigningPubKey: string;
|
|
876
|
+
TxnSignature: string;
|
|
877
|
+
}
|
|
878
|
+
export interface RippleLedgerTransactionsSigners {
|
|
879
|
+
Signer?: RippleLedgerTransactionsSignersSigner;
|
|
880
|
+
}
|
|
881
|
+
export interface RippleLedgerTransactionsAsset {
|
|
882
|
+
currency: string;
|
|
883
|
+
}
|
|
884
|
+
export interface RippleLedgerTransactionsAsset2 {
|
|
885
|
+
currency: string;
|
|
886
|
+
issuer: string;
|
|
887
|
+
}
|
|
888
|
+
export interface RippleLedgerTransactionsLptokenin {
|
|
889
|
+
currency: string;
|
|
890
|
+
issuer: string;
|
|
891
|
+
value: string;
|
|
892
|
+
}
|
|
893
|
+
export interface RippleLedgerTransactions {
|
|
894
|
+
Account: string;
|
|
895
|
+
Fee: string;
|
|
896
|
+
Flags: number;
|
|
897
|
+
LastLedgerSequence: number;
|
|
898
|
+
Sequence: number;
|
|
899
|
+
SigningPubKey: string;
|
|
900
|
+
TakerGets: Record<string, unknown> | string;
|
|
901
|
+
TakerPays: Record<string, unknown> | string;
|
|
902
|
+
TransactionType: string;
|
|
903
|
+
TxnSignature: string;
|
|
904
|
+
hash: string;
|
|
905
|
+
metaData: RippleLedgerTransactionsMetadata;
|
|
906
|
+
Amount: Record<string, unknown> | string;
|
|
907
|
+
Destination: string;
|
|
908
|
+
DestinationTag: number;
|
|
909
|
+
DeliverMax: Record<string, unknown> | string;
|
|
910
|
+
NFTokenID: string;
|
|
911
|
+
TicketSequence: number;
|
|
912
|
+
SourceTag: number;
|
|
913
|
+
OfferSequence: number;
|
|
914
|
+
DeliverMin: Record<string, unknown> | string;
|
|
915
|
+
SendMax: Record<string, unknown> | string;
|
|
916
|
+
TicketCount: number;
|
|
917
|
+
Memos: RippleLedgerTransactionsMemos[];
|
|
918
|
+
Expiration: number;
|
|
919
|
+
InvoiceID?: string;
|
|
920
|
+
Paths: RippleLedgerTransactionsPaths[][];
|
|
921
|
+
LimitAmount: RippleLedgerTransactionsLimitamount;
|
|
922
|
+
Signers?: RippleLedgerTransactionsSigners[];
|
|
923
|
+
Asset?: RippleLedgerTransactionsAsset;
|
|
924
|
+
Asset2?: RippleLedgerTransactionsAsset2;
|
|
925
|
+
LPTokenIn?: RippleLedgerTransactionsLptokenin;
|
|
926
|
+
Owner?: string;
|
|
927
|
+
}
|
|
928
|
+
export interface RippleLedgerDiff {
|
|
929
|
+
object_id: string;
|
|
930
|
+
object: Record<string, unknown> | string;
|
|
931
|
+
}
|
|
932
|
+
export interface RippleLedger {
|
|
933
|
+
account_hash: string;
|
|
934
|
+
close_flags: number;
|
|
935
|
+
close_time: number;
|
|
936
|
+
close_time_human: string;
|
|
937
|
+
close_time_resolution: number;
|
|
938
|
+
close_time_iso: string;
|
|
939
|
+
ledger_hash: string;
|
|
940
|
+
parent_close_time: number;
|
|
941
|
+
parent_hash: string;
|
|
942
|
+
total_coins: string;
|
|
943
|
+
transaction_hash: string;
|
|
944
|
+
ledger_index: string;
|
|
945
|
+
closed: boolean;
|
|
946
|
+
transactions: RippleLedgerTransactions[];
|
|
947
|
+
diff: RippleLedgerDiff[];
|
|
948
|
+
_network: string;
|
|
949
|
+
_vm: string;
|
|
950
|
+
}
|
|
951
|
+
export interface StarknetBlockL1GasPrice {
|
|
952
|
+
price_in_fri: string;
|
|
953
|
+
price_in_wei: string;
|
|
954
|
+
}
|
|
955
|
+
export interface StarknetBlockL1DataGasPrice {
|
|
956
|
+
price_in_fri: string;
|
|
957
|
+
price_in_wei: string;
|
|
958
|
+
}
|
|
959
|
+
export interface StarknetBlockL2GasPrice {
|
|
960
|
+
price_in_fri: string;
|
|
961
|
+
price_in_wei: string;
|
|
962
|
+
}
|
|
963
|
+
export interface StarknetBlockTransactionsResourceBoundsL1Gas {
|
|
964
|
+
max_amount: string;
|
|
965
|
+
max_price_per_unit: string;
|
|
966
|
+
}
|
|
967
|
+
export interface StarknetBlockTransactionsResourceBoundsL2Gas {
|
|
968
|
+
max_amount: string;
|
|
969
|
+
max_price_per_unit: string;
|
|
970
|
+
}
|
|
971
|
+
export interface StarknetBlockTransactionsResourceBoundsL1DataGas {
|
|
972
|
+
max_amount: string;
|
|
973
|
+
max_price_per_unit: string;
|
|
974
|
+
}
|
|
975
|
+
export interface StarknetBlockTransactionsResourceBounds {
|
|
976
|
+
l1_gas: StarknetBlockTransactionsResourceBoundsL1Gas;
|
|
977
|
+
l2_gas: StarknetBlockTransactionsResourceBoundsL2Gas;
|
|
978
|
+
l1_data_gas: StarknetBlockTransactionsResourceBoundsL1DataGas;
|
|
979
|
+
}
|
|
980
|
+
export interface StarknetBlockTransactionsReceiptActualFee {
|
|
981
|
+
amount: string;
|
|
982
|
+
unit: string;
|
|
983
|
+
}
|
|
984
|
+
export interface StarknetBlockTransactionsReceiptEvents {
|
|
985
|
+
from_address: string;
|
|
986
|
+
keys: string[];
|
|
987
|
+
data: string[];
|
|
988
|
+
}
|
|
989
|
+
export interface StarknetBlockTransactionsReceiptExecutionResources {
|
|
990
|
+
l1_gas: number;
|
|
991
|
+
l2_gas: number;
|
|
992
|
+
l1_data_gas: number;
|
|
993
|
+
}
|
|
994
|
+
export interface StarknetBlockTransactionsReceipt {
|
|
995
|
+
type: string;
|
|
996
|
+
transaction_hash: string;
|
|
997
|
+
actual_fee: StarknetBlockTransactionsReceiptActualFee;
|
|
998
|
+
execution_status: string;
|
|
999
|
+
finality_status: string;
|
|
1000
|
+
block_hash: string;
|
|
1001
|
+
block_number: number;
|
|
1002
|
+
messages_sent: unknown[];
|
|
1003
|
+
events: StarknetBlockTransactionsReceiptEvents[];
|
|
1004
|
+
execution_resources: StarknetBlockTransactionsReceiptExecutionResources;
|
|
1005
|
+
revert_reason?: string;
|
|
1006
|
+
}
|
|
1007
|
+
export interface StarknetBlockTransactions {
|
|
1008
|
+
transaction_hash: string;
|
|
1009
|
+
type: string;
|
|
1010
|
+
version: string;
|
|
1011
|
+
nonce: string;
|
|
1012
|
+
sender_address: string;
|
|
1013
|
+
signature: string[];
|
|
1014
|
+
calldata: string[];
|
|
1015
|
+
resource_bounds: StarknetBlockTransactionsResourceBounds;
|
|
1016
|
+
tip: string;
|
|
1017
|
+
paymaster_data: unknown[];
|
|
1018
|
+
account_deployment_data: unknown[];
|
|
1019
|
+
nonce_data_availability_mode: string;
|
|
1020
|
+
fee_data_availability_mode: string;
|
|
1021
|
+
receipt: StarknetBlockTransactionsReceipt;
|
|
1022
|
+
}
|
|
1023
|
+
export interface StarknetBlock {
|
|
1024
|
+
status: string;
|
|
1025
|
+
block_hash: string;
|
|
1026
|
+
parent_hash: string;
|
|
1027
|
+
block_number: number;
|
|
1028
|
+
new_root: string;
|
|
1029
|
+
timestamp: number;
|
|
1030
|
+
sequencer_address: string;
|
|
1031
|
+
l1_gas_price: StarknetBlockL1GasPrice;
|
|
1032
|
+
l1_data_gas_price: StarknetBlockL1DataGasPrice;
|
|
1033
|
+
l1_da_mode: string;
|
|
1034
|
+
starknet_version: string;
|
|
1035
|
+
l2_gas_price: StarknetBlockL2GasPrice;
|
|
1036
|
+
transactions: StarknetBlockTransactions[];
|
|
1037
|
+
_network: string;
|
|
1038
|
+
_vm: string;
|
|
1039
|
+
}
|
|
1040
|
+
export interface StellarLedgerTransactionsPreconditionsTimebounds {
|
|
1041
|
+
min_time: string;
|
|
1042
|
+
max_time?: string;
|
|
1043
|
+
}
|
|
1044
|
+
export interface StellarLedgerTransactionsPreconditionsLedgerbounds {
|
|
1045
|
+
min_ledger: number;
|
|
1046
|
+
max_ledger: number;
|
|
1047
|
+
}
|
|
1048
|
+
export interface StellarLedgerTransactionsPreconditions {
|
|
1049
|
+
timebounds?: StellarLedgerTransactionsPreconditionsTimebounds;
|
|
1050
|
+
ledgerbounds?: StellarLedgerTransactionsPreconditionsLedgerbounds;
|
|
1051
|
+
min_account_sequence?: string;
|
|
1052
|
+
}
|
|
1053
|
+
export interface StellarLedgerTransactionsOperationsPriceR {
|
|
1054
|
+
n: number;
|
|
1055
|
+
d: number;
|
|
1056
|
+
}
|
|
1057
|
+
export interface StellarLedgerTransactionsOperationsPath {
|
|
1058
|
+
asset_type: string;
|
|
1059
|
+
asset_code: string;
|
|
1060
|
+
asset_issuer: string;
|
|
1061
|
+
}
|
|
1062
|
+
export interface StellarLedgerTransactionsOperationsClaimantsPredicateNot {
|
|
1063
|
+
abs_before?: string;
|
|
1064
|
+
abs_before_epoch?: string;
|
|
1065
|
+
unconditional?: boolean;
|
|
1066
|
+
}
|
|
1067
|
+
export interface StellarLedgerTransactionsOperationsClaimantsPredicate {
|
|
1068
|
+
rel_before?: string;
|
|
1069
|
+
unconditional?: boolean;
|
|
1070
|
+
not?: StellarLedgerTransactionsOperationsClaimantsPredicateNot;
|
|
1071
|
+
}
|
|
1072
|
+
export interface StellarLedgerTransactionsOperationsClaimants {
|
|
1073
|
+
destination: string;
|
|
1074
|
+
predicate: StellarLedgerTransactionsOperationsClaimantsPredicate;
|
|
1075
|
+
}
|
|
1076
|
+
export interface StellarLedgerTransactionsOperationsReservesMax {
|
|
1077
|
+
asset?: string;
|
|
1078
|
+
amount?: string;
|
|
1079
|
+
}
|
|
1080
|
+
export interface StellarLedgerTransactionsOperationsMinPriceR {
|
|
1081
|
+
n: number;
|
|
1082
|
+
d: number;
|
|
1083
|
+
}
|
|
1084
|
+
export interface StellarLedgerTransactionsOperationsMaxPriceR {
|
|
1085
|
+
n: number;
|
|
1086
|
+
d: number;
|
|
1087
|
+
}
|
|
1088
|
+
export interface StellarLedgerTransactionsOperationsReservesDeposited {
|
|
1089
|
+
asset?: string;
|
|
1090
|
+
amount?: string;
|
|
1091
|
+
}
|
|
1092
|
+
export interface StellarLedgerTransactionsOperationsParameters {
|
|
1093
|
+
value: string;
|
|
1094
|
+
type: string;
|
|
1095
|
+
}
|
|
1096
|
+
export interface StellarLedgerTransactionsOperations {
|
|
1097
|
+
id: string;
|
|
1098
|
+
paging_token: string;
|
|
1099
|
+
transaction_successful: boolean;
|
|
1100
|
+
source_account: string;
|
|
1101
|
+
type: string;
|
|
1102
|
+
type_i: number;
|
|
1103
|
+
created_at: string;
|
|
1104
|
+
transaction_hash: string;
|
|
1105
|
+
amount: string;
|
|
1106
|
+
price: string;
|
|
1107
|
+
price_r: StellarLedgerTransactionsOperationsPriceR;
|
|
1108
|
+
buying_asset_type: string;
|
|
1109
|
+
selling_asset_type: string;
|
|
1110
|
+
selling_asset_code: string;
|
|
1111
|
+
selling_asset_issuer: string;
|
|
1112
|
+
offer_id: string;
|
|
1113
|
+
buying_asset_code: string;
|
|
1114
|
+
buying_asset_issuer: string;
|
|
1115
|
+
asset_type: string;
|
|
1116
|
+
asset_code: string;
|
|
1117
|
+
asset_issuer: string;
|
|
1118
|
+
from: string;
|
|
1119
|
+
to: string;
|
|
1120
|
+
path: StellarLedgerTransactionsOperationsPath[];
|
|
1121
|
+
source_amount: string;
|
|
1122
|
+
destination_min: string;
|
|
1123
|
+
source_asset_type: string;
|
|
1124
|
+
source_asset_code: string;
|
|
1125
|
+
source_asset_issuer: string;
|
|
1126
|
+
source_max: string;
|
|
1127
|
+
asset: string;
|
|
1128
|
+
claimants: StellarLedgerTransactionsOperationsClaimants[];
|
|
1129
|
+
balance_id: string;
|
|
1130
|
+
claimant: string;
|
|
1131
|
+
set_flags: number[];
|
|
1132
|
+
set_flags_s: string[];
|
|
1133
|
+
trustee: string;
|
|
1134
|
+
trustor: string;
|
|
1135
|
+
authorize: boolean;
|
|
1136
|
+
authorize_to_maintain_liabilities: boolean;
|
|
1137
|
+
clear_flags: number[];
|
|
1138
|
+
clear_flags_s: string[];
|
|
1139
|
+
account: string;
|
|
1140
|
+
into?: string;
|
|
1141
|
+
liquidity_pool_id?: string;
|
|
1142
|
+
reserves_max?: StellarLedgerTransactionsOperationsReservesMax[];
|
|
1143
|
+
min_price?: string;
|
|
1144
|
+
min_price_r?: StellarLedgerTransactionsOperationsMinPriceR;
|
|
1145
|
+
max_price?: string;
|
|
1146
|
+
max_price_r?: StellarLedgerTransactionsOperationsMaxPriceR;
|
|
1147
|
+
reserves_deposited?: StellarLedgerTransactionsOperationsReservesDeposited[];
|
|
1148
|
+
shares_received?: string;
|
|
1149
|
+
limit: string;
|
|
1150
|
+
function: string;
|
|
1151
|
+
parameters: StellarLedgerTransactionsOperationsParameters[];
|
|
1152
|
+
address: string;
|
|
1153
|
+
salt: string;
|
|
1154
|
+
asset_balance_changes: null | unknown[];
|
|
1155
|
+
starting_balance: string;
|
|
1156
|
+
funder: string;
|
|
1157
|
+
sponsored_id: string;
|
|
1158
|
+
signer_key: string;
|
|
1159
|
+
signer_weight: number;
|
|
1160
|
+
sponsor: string;
|
|
1161
|
+
begin_sponsor: string;
|
|
1162
|
+
name: string;
|
|
1163
|
+
value: string;
|
|
1164
|
+
}
|
|
1165
|
+
export interface StellarLedgerTransactionsFeeBumpTransaction {
|
|
1166
|
+
hash: string;
|
|
1167
|
+
signatures: string[];
|
|
1168
|
+
}
|
|
1169
|
+
export interface StellarLedgerTransactionsInnerTransaction {
|
|
1170
|
+
hash: string;
|
|
1171
|
+
signatures: string[];
|
|
1172
|
+
max_fee: string;
|
|
1173
|
+
}
|
|
1174
|
+
export interface StellarLedgerTransactions {
|
|
1175
|
+
id: string;
|
|
1176
|
+
paging_token: string;
|
|
1177
|
+
successful: boolean;
|
|
1178
|
+
hash: string;
|
|
1179
|
+
ledger: number;
|
|
1180
|
+
created_at: string;
|
|
1181
|
+
source_account: string;
|
|
1182
|
+
source_account_sequence: string;
|
|
1183
|
+
fee_account: string;
|
|
1184
|
+
fee_charged: string;
|
|
1185
|
+
max_fee: string;
|
|
1186
|
+
operation_count: number;
|
|
1187
|
+
envelope_xdr: string;
|
|
1188
|
+
result_xdr: string;
|
|
1189
|
+
result_meta_xdr: string;
|
|
1190
|
+
fee_meta_xdr: string;
|
|
1191
|
+
memo_type: string;
|
|
1192
|
+
signatures: string[];
|
|
1193
|
+
preconditions: StellarLedgerTransactionsPreconditions;
|
|
1194
|
+
operations: StellarLedgerTransactionsOperations[];
|
|
1195
|
+
memo: string;
|
|
1196
|
+
memo_bytes: string;
|
|
1197
|
+
fee_bump_transaction: StellarLedgerTransactionsFeeBumpTransaction;
|
|
1198
|
+
inner_transaction: StellarLedgerTransactionsInnerTransaction;
|
|
1199
|
+
}
|
|
1200
|
+
export interface StellarLedger {
|
|
1201
|
+
id: string;
|
|
1202
|
+
paging_token: string;
|
|
1203
|
+
hash: string;
|
|
1204
|
+
prev_hash: string;
|
|
1205
|
+
sequence: number;
|
|
1206
|
+
successful_transaction_count: number;
|
|
1207
|
+
failed_transaction_count: number;
|
|
1208
|
+
operation_count: number;
|
|
1209
|
+
tx_set_operation_count: number;
|
|
1210
|
+
closed_at: string;
|
|
1211
|
+
total_coins: string;
|
|
1212
|
+
fee_pool: string;
|
|
1213
|
+
base_fee_in_stroops: number;
|
|
1214
|
+
base_reserve_in_stroops: number;
|
|
1215
|
+
max_tx_set_size: number;
|
|
1216
|
+
protocol_version: number;
|
|
1217
|
+
header_xdr: string;
|
|
1218
|
+
transactions: StellarLedgerTransactions[];
|
|
1219
|
+
_network: string;
|
|
1220
|
+
_vm: string;
|
|
1221
|
+
}
|
|
1222
|
+
export interface SubstrateBlockHeaderDigest {
|
|
1223
|
+
logs: string[];
|
|
1224
|
+
}
|
|
1225
|
+
export interface SubstrateBlockHeader {
|
|
1226
|
+
parentHash: string;
|
|
1227
|
+
number: string;
|
|
1228
|
+
stateRoot: string;
|
|
1229
|
+
extrinsicsRoot: string;
|
|
1230
|
+
digest: SubstrateBlockHeaderDigest;
|
|
1231
|
+
}
|
|
1232
|
+
export interface SubstrateBlockExtrinsics {
|
|
1233
|
+
index: number;
|
|
1234
|
+
hash: string;
|
|
1235
|
+
signer: string;
|
|
1236
|
+
nonce: string;
|
|
1237
|
+
method: string;
|
|
1238
|
+
args: (Record<string, unknown> | boolean | string | unknown[])[];
|
|
1239
|
+
}
|
|
1240
|
+
export interface SubstrateBlock {
|
|
1241
|
+
blockNumber: number;
|
|
1242
|
+
blockHash: string;
|
|
1243
|
+
header: SubstrateBlockHeader;
|
|
1244
|
+
extrinsics: SubstrateBlockExtrinsics[];
|
|
1245
|
+
_network: string;
|
|
1246
|
+
_vm: string;
|
|
1247
|
+
}
|
|
1248
|
+
export interface SuiCheckpointTransactionsTransactionDataTransactionConsensusDeterminedVersionAssignments {
|
|
1249
|
+
CancelledTransactionsV2: unknown[];
|
|
1250
|
+
}
|
|
1251
|
+
export interface SuiCheckpointTransactionsTransactionDataTransactionInputs {
|
|
1252
|
+
type: string;
|
|
1253
|
+
objectType: string;
|
|
1254
|
+
objectId: string;
|
|
1255
|
+
initialSharedVersion: string;
|
|
1256
|
+
mutable: boolean;
|
|
1257
|
+
valueType: string;
|
|
1258
|
+
value: boolean | number | string | unknown[];
|
|
1259
|
+
version: string;
|
|
1260
|
+
digest: string;
|
|
1261
|
+
}
|
|
1262
|
+
export interface SuiCheckpointTransactionsTransactionDataTransactionTransactionsMovecall {
|
|
1263
|
+
package: string;
|
|
1264
|
+
module: string;
|
|
1265
|
+
function: string;
|
|
1266
|
+
arguments?: (Record<string, unknown> | string)[];
|
|
1267
|
+
type_arguments?: string[];
|
|
1268
|
+
}
|
|
1269
|
+
export interface SuiCheckpointTransactionsTransactionDataTransactionTransactions {
|
|
1270
|
+
MoveCall: SuiCheckpointTransactionsTransactionDataTransactionTransactionsMovecall;
|
|
1271
|
+
SplitCoins?: (Record<string, unknown> | unknown[])[];
|
|
1272
|
+
MergeCoins?: (Record<string, unknown> | unknown[])[];
|
|
1273
|
+
MakeMoveVec?: (null | unknown[])[];
|
|
1274
|
+
}
|
|
1275
|
+
export interface SuiCheckpointTransactionsTransactionDataTransaction {
|
|
1276
|
+
kind: string;
|
|
1277
|
+
epoch?: string;
|
|
1278
|
+
round?: string;
|
|
1279
|
+
sub_dag_index?: null;
|
|
1280
|
+
commit_timestamp_ms?: string;
|
|
1281
|
+
consensus_commit_digest?: string;
|
|
1282
|
+
consensus_determined_version_assignments?: SuiCheckpointTransactionsTransactionDataTransactionConsensusDeterminedVersionAssignments;
|
|
1283
|
+
additional_state_digest?: string;
|
|
1284
|
+
inputs?: SuiCheckpointTransactionsTransactionDataTransactionInputs[];
|
|
1285
|
+
transactions?: SuiCheckpointTransactionsTransactionDataTransactionTransactions[];
|
|
1286
|
+
randomness_round?: string;
|
|
1287
|
+
random_bytes?: number[];
|
|
1288
|
+
}
|
|
1289
|
+
export interface SuiCheckpointTransactionsTransactionDataGasdataPayment {
|
|
1290
|
+
objectId: string;
|
|
1291
|
+
version: number;
|
|
1292
|
+
digest: string;
|
|
1293
|
+
}
|
|
1294
|
+
export interface SuiCheckpointTransactionsTransactionDataGasdata {
|
|
1295
|
+
payment: SuiCheckpointTransactionsTransactionDataGasdataPayment[];
|
|
1296
|
+
owner: string;
|
|
1297
|
+
price: string;
|
|
1298
|
+
budget: string;
|
|
1299
|
+
}
|
|
1300
|
+
export interface SuiCheckpointTransactionsTransactionData {
|
|
1301
|
+
messageVersion: string;
|
|
1302
|
+
transaction: SuiCheckpointTransactionsTransactionDataTransaction;
|
|
1303
|
+
sender: string;
|
|
1304
|
+
gasData: SuiCheckpointTransactionsTransactionDataGasdata;
|
|
1305
|
+
}
|
|
1306
|
+
export interface SuiCheckpointTransactionsTransaction {
|
|
1307
|
+
data: SuiCheckpointTransactionsTransactionData;
|
|
1308
|
+
txSignatures: string[];
|
|
1309
|
+
}
|
|
1310
|
+
export interface SuiCheckpointTransactionsEffectsStatus {
|
|
1311
|
+
status: string;
|
|
1312
|
+
error?: string;
|
|
1313
|
+
}
|
|
1314
|
+
export interface SuiCheckpointTransactionsEffectsGasused {
|
|
1315
|
+
computationCost: string;
|
|
1316
|
+
storageCost: string;
|
|
1317
|
+
storageRebate: string;
|
|
1318
|
+
nonRefundableStorageFee: string;
|
|
1319
|
+
}
|
|
1320
|
+
export interface SuiCheckpointTransactionsEffectsModifiedatversions {
|
|
1321
|
+
objectId: string;
|
|
1322
|
+
sequenceNumber: string;
|
|
1323
|
+
}
|
|
1324
|
+
export interface SuiCheckpointTransactionsEffectsSharedobjects {
|
|
1325
|
+
objectId: string;
|
|
1326
|
+
version: number;
|
|
1327
|
+
digest: string;
|
|
1328
|
+
}
|
|
1329
|
+
export interface SuiCheckpointTransactionsEffectsMutatedOwnerShared {
|
|
1330
|
+
initial_shared_version: number;
|
|
1331
|
+
}
|
|
1332
|
+
export interface SuiCheckpointTransactionsEffectsMutatedOwner {
|
|
1333
|
+
Shared?: SuiCheckpointTransactionsEffectsMutatedOwnerShared;
|
|
1334
|
+
AddressOwner?: string;
|
|
1335
|
+
ObjectOwner?: string;
|
|
1336
|
+
}
|
|
1337
|
+
export interface SuiCheckpointTransactionsEffectsMutatedReference {
|
|
1338
|
+
objectId: string;
|
|
1339
|
+
version: number;
|
|
1340
|
+
digest: string;
|
|
1341
|
+
}
|
|
1342
|
+
export interface SuiCheckpointTransactionsEffectsMutated {
|
|
1343
|
+
owner: SuiCheckpointTransactionsEffectsMutatedOwner;
|
|
1344
|
+
reference: SuiCheckpointTransactionsEffectsMutatedReference;
|
|
1345
|
+
}
|
|
1346
|
+
export interface SuiCheckpointTransactionsEffectsGasobjectOwner {
|
|
1347
|
+
AddressOwner: string;
|
|
1348
|
+
}
|
|
1349
|
+
export interface SuiCheckpointTransactionsEffectsGasobjectReference {
|
|
1350
|
+
objectId: string;
|
|
1351
|
+
version: number;
|
|
1352
|
+
digest: string;
|
|
1353
|
+
}
|
|
1354
|
+
export interface SuiCheckpointTransactionsEffectsGasobject {
|
|
1355
|
+
owner: SuiCheckpointTransactionsEffectsGasobjectOwner;
|
|
1356
|
+
reference: SuiCheckpointTransactionsEffectsGasobjectReference;
|
|
1357
|
+
}
|
|
1358
|
+
export interface SuiCheckpointTransactionsEffectsCreatedOwner {
|
|
1359
|
+
AddressOwner: string;
|
|
1360
|
+
}
|
|
1361
|
+
export interface SuiCheckpointTransactionsEffectsCreatedReference {
|
|
1362
|
+
objectId: string;
|
|
1363
|
+
version: number;
|
|
1364
|
+
digest: string;
|
|
1365
|
+
}
|
|
1366
|
+
export interface SuiCheckpointTransactionsEffectsCreated {
|
|
1367
|
+
owner: SuiCheckpointTransactionsEffectsCreatedOwner;
|
|
1368
|
+
reference: SuiCheckpointTransactionsEffectsCreatedReference;
|
|
1369
|
+
}
|
|
1370
|
+
export interface SuiCheckpointTransactionsEffectsDeleted {
|
|
1371
|
+
objectId: string;
|
|
1372
|
+
version: number;
|
|
1373
|
+
digest: string;
|
|
1374
|
+
}
|
|
1375
|
+
export interface SuiCheckpointTransactionsEffectsAborterror {
|
|
1376
|
+
module_id: string;
|
|
1377
|
+
function: string;
|
|
1378
|
+
error_code: number;
|
|
1379
|
+
}
|
|
1380
|
+
export interface SuiCheckpointTransactionsEffects {
|
|
1381
|
+
messageVersion: string;
|
|
1382
|
+
status: SuiCheckpointTransactionsEffectsStatus;
|
|
1383
|
+
executedEpoch: string;
|
|
1384
|
+
gasUsed: SuiCheckpointTransactionsEffectsGasused;
|
|
1385
|
+
modifiedAtVersions: SuiCheckpointTransactionsEffectsModifiedatversions[];
|
|
1386
|
+
sharedObjects?: SuiCheckpointTransactionsEffectsSharedobjects[];
|
|
1387
|
+
transactionDigest: string;
|
|
1388
|
+
mutated: SuiCheckpointTransactionsEffectsMutated[];
|
|
1389
|
+
gasObject: SuiCheckpointTransactionsEffectsGasobject;
|
|
1390
|
+
dependencies: string[];
|
|
1391
|
+
eventsDigest?: string;
|
|
1392
|
+
created?: SuiCheckpointTransactionsEffectsCreated[];
|
|
1393
|
+
deleted?: SuiCheckpointTransactionsEffectsDeleted[];
|
|
1394
|
+
abortError?: SuiCheckpointTransactionsEffectsAborterror;
|
|
1395
|
+
}
|
|
1396
|
+
export interface SuiCheckpointTransactionsEventsId {
|
|
1397
|
+
txDigest: string;
|
|
1398
|
+
eventSeq: string;
|
|
1399
|
+
}
|
|
1400
|
+
export interface SuiCheckpointTransactionsEventsParsedjsonOrderDeepPrice {
|
|
1401
|
+
asset_is_base: boolean;
|
|
1402
|
+
deep_per_asset: string;
|
|
1403
|
+
}
|
|
1404
|
+
export interface SuiCheckpointTransactionsEventsParsedjsonCurrentTick {
|
|
1405
|
+
bits: number;
|
|
1406
|
+
}
|
|
1407
|
+
export interface SuiCheckpointTransactionsEventsParsedjsonTickCurrentIndex {
|
|
1408
|
+
bits: number;
|
|
1409
|
+
}
|
|
1410
|
+
export interface SuiCheckpointTransactionsEventsParsedjsonTickPreIndex {
|
|
1411
|
+
bits: number;
|
|
1412
|
+
}
|
|
1413
|
+
export interface SuiCheckpointTransactionsEventsParsedjsonAsset {
|
|
1414
|
+
name: string;
|
|
1415
|
+
}
|
|
1416
|
+
export interface SuiCheckpointTransactionsEventsParsedjsonA888bd220dbabe932 {
|
|
1417
|
+
a300f5009218579d6?: string;
|
|
1418
|
+
a44bce80f10717132?: boolean;
|
|
1419
|
+
a8108687c4de4ea83?: string;
|
|
1420
|
+
ac7f210fc32637b79?: boolean;
|
|
1421
|
+
ada1b3c8a2397a876?: boolean;
|
|
1422
|
+
aefb8102bf036ff88?: string;
|
|
1423
|
+
pool?: string;
|
|
1424
|
+
}
|
|
1425
|
+
export interface SuiCheckpointTransactionsEventsParsedjsonA8ea67a9d479b4cc3 {
|
|
1426
|
+
a4c9f6a30dfcb26d4: string;
|
|
1427
|
+
price: string;
|
|
1428
|
+
}
|
|
1429
|
+
export interface SuiCheckpointTransactionsEventsParsedjsonAab80f1dc57a77584 {
|
|
1430
|
+
a4c9f6a30dfcb26d4: string;
|
|
1431
|
+
price: string;
|
|
1432
|
+
}
|
|
1433
|
+
export interface SuiCheckpointTransactionsEventsParsedjson {
|
|
1434
|
+
balance_manager_id?: string;
|
|
1435
|
+
base_asset_quantity_canceled?: string;
|
|
1436
|
+
client_order_id?: string;
|
|
1437
|
+
is_bid?: boolean;
|
|
1438
|
+
order_id?: string;
|
|
1439
|
+
original_quantity?: string;
|
|
1440
|
+
pool_id?: string;
|
|
1441
|
+
price?: string;
|
|
1442
|
+
timestamp?: string;
|
|
1443
|
+
trader?: string;
|
|
1444
|
+
expire_timestamp?: string;
|
|
1445
|
+
placed_quantity?: string;
|
|
1446
|
+
cumulative_quote_quantity?: string;
|
|
1447
|
+
epoch?: string;
|
|
1448
|
+
executed_quantity?: string;
|
|
1449
|
+
fee_is_deep?: boolean;
|
|
1450
|
+
fill_limit_reached?: boolean;
|
|
1451
|
+
fills?: unknown[];
|
|
1452
|
+
maker_fees?: string;
|
|
1453
|
+
market_order?: boolean;
|
|
1454
|
+
order_deep_price?: SuiCheckpointTransactionsEventsParsedjsonOrderDeepPrice;
|
|
1455
|
+
order_inserted?: boolean;
|
|
1456
|
+
order_type?: number;
|
|
1457
|
+
paid_fees?: string;
|
|
1458
|
+
self_matching_option?: number;
|
|
1459
|
+
status?: number;
|
|
1460
|
+
amount?: string;
|
|
1461
|
+
beneficiary?: string;
|
|
1462
|
+
after_sqrt_price?: string;
|
|
1463
|
+
amount_in?: string;
|
|
1464
|
+
amount_out?: string;
|
|
1465
|
+
atob?: boolean;
|
|
1466
|
+
before_sqrt_price?: string;
|
|
1467
|
+
fee_amount?: string;
|
|
1468
|
+
partner?: string;
|
|
1469
|
+
pool?: string;
|
|
1470
|
+
ref_amount?: string;
|
|
1471
|
+
steps?: string;
|
|
1472
|
+
vault_a_amount?: string;
|
|
1473
|
+
vault_b_amount?: string;
|
|
1474
|
+
partner_id?: string;
|
|
1475
|
+
type_name?: string;
|
|
1476
|
+
bi?: string;
|
|
1477
|
+
bm?: string;
|
|
1478
|
+
bo?: string;
|
|
1479
|
+
bs?: string;
|
|
1480
|
+
si?: string;
|
|
1481
|
+
sm?: string;
|
|
1482
|
+
so?: string;
|
|
1483
|
+
ss?: string;
|
|
1484
|
+
EE?: string;
|
|
1485
|
+
a2b?: boolean;
|
|
1486
|
+
after_liquidity?: string;
|
|
1487
|
+
before_liquidity?: string;
|
|
1488
|
+
current_tick?: SuiCheckpointTransactionsEventsParsedjsonCurrentTick;
|
|
1489
|
+
exceeded?: boolean;
|
|
1490
|
+
fee?: string;
|
|
1491
|
+
pool_coin_a_amount?: string;
|
|
1492
|
+
pool_coin_b_amount?: string;
|
|
1493
|
+
sequence_number?: string;
|
|
1494
|
+
a27ddd31886860775?: string;
|
|
1495
|
+
a4ad9d24a601f5a60?: string[];
|
|
1496
|
+
a52aea689b5e0eb4e?: string[];
|
|
1497
|
+
a74b4e85f3b283ef9?: string;
|
|
1498
|
+
a7995ce3041d46cb2?: string[];
|
|
1499
|
+
a7d027a58611a0718?: string;
|
|
1500
|
+
a863166978b7b5c02?: number;
|
|
1501
|
+
a8c11751b5c54d9f3?: string[];
|
|
1502
|
+
a8fabacfbc9a53eab?: string;
|
|
1503
|
+
ab857dba7b77c5937?: string;
|
|
1504
|
+
ac21553e7b18debdd?: string;
|
|
1505
|
+
ac6f0e10915f54802?: string;
|
|
1506
|
+
ae5a8c85f7339c42f?: string;
|
|
1507
|
+
timestamp_ms?: string;
|
|
1508
|
+
gas_price?: string;
|
|
1509
|
+
mean?: string;
|
|
1510
|
+
variance?: string;
|
|
1511
|
+
a_to_b?: boolean;
|
|
1512
|
+
amount_a?: string;
|
|
1513
|
+
amount_b?: string;
|
|
1514
|
+
is_exact_in?: boolean;
|
|
1515
|
+
liquidity?: string;
|
|
1516
|
+
protocol_fee?: string;
|
|
1517
|
+
recipient?: string;
|
|
1518
|
+
sqrt_price?: string;
|
|
1519
|
+
tick_current_index?: SuiCheckpointTransactionsEventsParsedjsonTickCurrentIndex;
|
|
1520
|
+
tick_pre_index?: SuiCheckpointTransactionsEventsParsedjsonTickPreIndex;
|
|
1521
|
+
asset?: SuiCheckpointTransactionsEventsParsedjsonAsset;
|
|
1522
|
+
deposit?: boolean;
|
|
1523
|
+
a1c7efc41c3937d9d?: string;
|
|
1524
|
+
a31f11751781e6c71?: string;
|
|
1525
|
+
a9df70c4191cc59c8?: string;
|
|
1526
|
+
ac7f210fc32637b79?: boolean;
|
|
1527
|
+
a888bd220dbabe932?: SuiCheckpointTransactionsEventsParsedjsonA888bd220dbabe932[];
|
|
1528
|
+
a8ea67a9d479b4cc3?: SuiCheckpointTransactionsEventsParsedjsonA8ea67a9d479b4cc3[];
|
|
1529
|
+
aab80f1dc57a77584?: SuiCheckpointTransactionsEventsParsedjsonAab80f1dc57a77584[];
|
|
1530
|
+
sender?: string;
|
|
1531
|
+
user_id?: string;
|
|
1532
|
+
}
|
|
1533
|
+
export interface SuiCheckpointTransactionsEvents {
|
|
1534
|
+
id: SuiCheckpointTransactionsEventsId;
|
|
1535
|
+
packageId: string;
|
|
1536
|
+
transactionModule: string;
|
|
1537
|
+
sender: string;
|
|
1538
|
+
type: string;
|
|
1539
|
+
parsedJson: SuiCheckpointTransactionsEventsParsedjson;
|
|
1540
|
+
bcsEncoding: string;
|
|
1541
|
+
bcs: string;
|
|
1542
|
+
}
|
|
1543
|
+
export interface SuiCheckpointTransactionsObjectchangesOwnerShared {
|
|
1544
|
+
initial_shared_version: number;
|
|
1545
|
+
}
|
|
1546
|
+
export interface SuiCheckpointTransactionsObjectchangesOwner {
|
|
1547
|
+
Shared?: SuiCheckpointTransactionsObjectchangesOwnerShared;
|
|
1548
|
+
AddressOwner?: string;
|
|
1549
|
+
ObjectOwner?: string;
|
|
1550
|
+
}
|
|
1551
|
+
export interface SuiCheckpointTransactionsObjectchanges {
|
|
1552
|
+
type: string;
|
|
1553
|
+
sender: string;
|
|
1554
|
+
owner: SuiCheckpointTransactionsObjectchangesOwner;
|
|
1555
|
+
objectType: string;
|
|
1556
|
+
objectId: string;
|
|
1557
|
+
version: string;
|
|
1558
|
+
previousVersion: string;
|
|
1559
|
+
digest: string;
|
|
1560
|
+
}
|
|
1561
|
+
export interface SuiCheckpointTransactionsBalancechangesOwner {
|
|
1562
|
+
AddressOwner: string;
|
|
1563
|
+
}
|
|
1564
|
+
export interface SuiCheckpointTransactionsBalancechanges {
|
|
1565
|
+
owner: SuiCheckpointTransactionsBalancechangesOwner;
|
|
1566
|
+
coinType: string;
|
|
1567
|
+
amount: string;
|
|
1568
|
+
}
|
|
1569
|
+
export interface SuiCheckpointTransactions {
|
|
1570
|
+
digest: string;
|
|
1571
|
+
transaction: SuiCheckpointTransactionsTransaction;
|
|
1572
|
+
rawTransaction: string;
|
|
1573
|
+
effects: SuiCheckpointTransactionsEffects;
|
|
1574
|
+
events: SuiCheckpointTransactionsEvents[];
|
|
1575
|
+
objectChanges: SuiCheckpointTransactionsObjectchanges[];
|
|
1576
|
+
balanceChanges: SuiCheckpointTransactionsBalancechanges[];
|
|
1577
|
+
timestampMs: string;
|
|
1578
|
+
checkpoint: string;
|
|
1579
|
+
rawEffects: number[];
|
|
1580
|
+
}
|
|
1581
|
+
export interface SuiCheckpoint {
|
|
1582
|
+
sequence: string;
|
|
1583
|
+
digest: string;
|
|
1584
|
+
timestamp: string;
|
|
1585
|
+
transactions: SuiCheckpointTransactions[];
|
|
1586
|
+
_network: string;
|
|
1587
|
+
_vm: string;
|
|
1588
|
+
}
|
|
1589
|
+
export interface SvmBlockTransactionsTransactionMessageHeader {
|
|
1590
|
+
numRequiredSignatures: number;
|
|
1591
|
+
numReadonlySignedAccounts: number;
|
|
1592
|
+
numReadonlyUnsignedAccounts: number;
|
|
1593
|
+
}
|
|
1594
|
+
export interface SvmBlockTransactionsTransactionMessageInstructions {
|
|
1595
|
+
programIdIndex: number;
|
|
1596
|
+
accounts: number[];
|
|
1597
|
+
data: string;
|
|
1598
|
+
stackHeight: null | number;
|
|
1599
|
+
}
|
|
1600
|
+
export interface SvmBlockTransactionsTransactionMessageAddresstablelookups {
|
|
1601
|
+
accountKey: string;
|
|
1602
|
+
writableIndexes: number[];
|
|
1603
|
+
readonlyIndexes: number[];
|
|
1604
|
+
}
|
|
1605
|
+
export interface SvmBlockTransactionsTransactionMessage {
|
|
1606
|
+
header: SvmBlockTransactionsTransactionMessageHeader;
|
|
1607
|
+
accountKeys: string[];
|
|
1608
|
+
recentBlockhash: string;
|
|
1609
|
+
instructions: SvmBlockTransactionsTransactionMessageInstructions[];
|
|
1610
|
+
addressTableLookups?: SvmBlockTransactionsTransactionMessageAddresstablelookups[];
|
|
1611
|
+
}
|
|
1612
|
+
export interface SvmBlockTransactionsTransaction {
|
|
1613
|
+
signatures: string[];
|
|
1614
|
+
message: SvmBlockTransactionsTransactionMessage;
|
|
1615
|
+
}
|
|
1616
|
+
export interface SvmBlockTransactionsMetaStatusErr {
|
|
1617
|
+
InstructionError: (Record<string, unknown> | number | string)[];
|
|
1618
|
+
}
|
|
1619
|
+
export interface SvmBlockTransactionsMetaStatus {
|
|
1620
|
+
Ok?: null;
|
|
1621
|
+
Err?: SvmBlockTransactionsMetaStatusErr;
|
|
1622
|
+
}
|
|
1623
|
+
export interface SvmBlockTransactionsMetaInnerinstructionsInstructions {
|
|
1624
|
+
programIdIndex: number;
|
|
1625
|
+
accounts: number[];
|
|
1626
|
+
data: string;
|
|
1627
|
+
stackHeight: number;
|
|
1628
|
+
}
|
|
1629
|
+
export interface SvmBlockTransactionsMetaInnerinstructions {
|
|
1630
|
+
index: number;
|
|
1631
|
+
instructions: SvmBlockTransactionsMetaInnerinstructionsInstructions[];
|
|
1632
|
+
}
|
|
1633
|
+
export interface SvmBlockTransactionsMetaPretokenbalancesUitokenamount {
|
|
1634
|
+
uiAmount: number;
|
|
1635
|
+
decimals: number;
|
|
1636
|
+
amount: string;
|
|
1637
|
+
uiAmountString: string;
|
|
1638
|
+
}
|
|
1639
|
+
export interface SvmBlockTransactionsMetaPretokenbalances {
|
|
1640
|
+
accountIndex: number;
|
|
1641
|
+
mint: string;
|
|
1642
|
+
uiTokenAmount: SvmBlockTransactionsMetaPretokenbalancesUitokenamount;
|
|
1643
|
+
owner: string;
|
|
1644
|
+
programId: string;
|
|
1645
|
+
}
|
|
1646
|
+
export interface SvmBlockTransactionsMetaPosttokenbalancesUitokenamount {
|
|
1647
|
+
uiAmount: number;
|
|
1648
|
+
decimals: number;
|
|
1649
|
+
amount: string;
|
|
1650
|
+
uiAmountString: string;
|
|
1651
|
+
}
|
|
1652
|
+
export interface SvmBlockTransactionsMetaPosttokenbalances {
|
|
1653
|
+
accountIndex: number;
|
|
1654
|
+
mint: string;
|
|
1655
|
+
uiTokenAmount: SvmBlockTransactionsMetaPosttokenbalancesUitokenamount;
|
|
1656
|
+
owner: string;
|
|
1657
|
+
programId: string;
|
|
1658
|
+
}
|
|
1659
|
+
export interface SvmBlockTransactionsMetaLoadedaddresses {
|
|
1660
|
+
writable: string[];
|
|
1661
|
+
readonly: string[];
|
|
1662
|
+
}
|
|
1663
|
+
export interface SvmBlockTransactionsMetaReturndata {
|
|
1664
|
+
programId: string;
|
|
1665
|
+
data: string[];
|
|
1666
|
+
}
|
|
1667
|
+
export interface SvmBlockTransactionsMeta {
|
|
1668
|
+
err: Record<string, unknown> | null;
|
|
1669
|
+
status: SvmBlockTransactionsMetaStatus;
|
|
1670
|
+
fee: number;
|
|
1671
|
+
preBalances: number[];
|
|
1672
|
+
postBalances: number[];
|
|
1673
|
+
innerInstructions: SvmBlockTransactionsMetaInnerinstructions[];
|
|
1674
|
+
logMessages: string[];
|
|
1675
|
+
preTokenBalances: SvmBlockTransactionsMetaPretokenbalances[];
|
|
1676
|
+
postTokenBalances: SvmBlockTransactionsMetaPosttokenbalances[];
|
|
1677
|
+
rewards: unknown[];
|
|
1678
|
+
loadedAddresses: SvmBlockTransactionsMetaLoadedaddresses;
|
|
1679
|
+
computeUnitsConsumed: number;
|
|
1680
|
+
costUnits?: number;
|
|
1681
|
+
returnData?: SvmBlockTransactionsMetaReturndata;
|
|
1682
|
+
}
|
|
1683
|
+
export interface SvmBlockTransactions {
|
|
1684
|
+
transaction: SvmBlockTransactionsTransaction;
|
|
1685
|
+
meta: SvmBlockTransactionsMeta;
|
|
1686
|
+
version: number | string;
|
|
1687
|
+
}
|
|
1688
|
+
export interface SvmBlockRewards {
|
|
1689
|
+
pubkey: string;
|
|
1690
|
+
lamports: number;
|
|
1691
|
+
postBalance: number;
|
|
1692
|
+
rewardType: string;
|
|
1693
|
+
commission: null;
|
|
1694
|
+
}
|
|
1695
|
+
export interface SvmBlock {
|
|
1696
|
+
previousBlockhash: string;
|
|
1697
|
+
blockhash: string;
|
|
1698
|
+
parentSlot: number;
|
|
1699
|
+
transactions: SvmBlockTransactions[];
|
|
1700
|
+
rewards: SvmBlockRewards[];
|
|
1701
|
+
blockTime: number;
|
|
1702
|
+
blockHeight: number;
|
|
1703
|
+
_network: string;
|
|
1704
|
+
_vm: string;
|
|
1705
|
+
}
|
|
1706
|
+
export interface TonBlockShardsId {
|
|
1707
|
+
'@type': string;
|
|
1708
|
+
workchain: number;
|
|
1709
|
+
shard: string;
|
|
1710
|
+
seqno: number;
|
|
1711
|
+
root_hash: string;
|
|
1712
|
+
file_hash: string;
|
|
1713
|
+
}
|
|
1714
|
+
export interface TonBlockShardsPrevBlocks {
|
|
1715
|
+
'@type': string;
|
|
1716
|
+
workchain: number;
|
|
1717
|
+
shard: string;
|
|
1718
|
+
seqno: number;
|
|
1719
|
+
root_hash: string;
|
|
1720
|
+
file_hash: string;
|
|
1721
|
+
}
|
|
1722
|
+
export interface TonBlockShardsTransactionsAddress {
|
|
1723
|
+
'@type': string;
|
|
1724
|
+
account_address: string;
|
|
1725
|
+
}
|
|
1726
|
+
export interface TonBlockShardsTransactionsTransactionId {
|
|
1727
|
+
'@type': string;
|
|
1728
|
+
lt: string;
|
|
1729
|
+
hash: string;
|
|
1730
|
+
}
|
|
1731
|
+
export interface TonBlockShardsTransactionsInMsgSource {
|
|
1732
|
+
'@type': string;
|
|
1733
|
+
account_address: string;
|
|
1734
|
+
}
|
|
1735
|
+
export interface TonBlockShardsTransactionsInMsgDestination {
|
|
1736
|
+
'@type': string;
|
|
1737
|
+
account_address: string;
|
|
1738
|
+
}
|
|
1739
|
+
export interface TonBlockShardsTransactionsInMsgMsgData {
|
|
1740
|
+
'@type': string;
|
|
1741
|
+
body?: string;
|
|
1742
|
+
init_state?: string;
|
|
1743
|
+
text?: string;
|
|
1744
|
+
}
|
|
1745
|
+
export interface TonBlockShardsTransactionsInMsg {
|
|
1746
|
+
'@type': string;
|
|
1747
|
+
hash: string;
|
|
1748
|
+
source: TonBlockShardsTransactionsInMsgSource;
|
|
1749
|
+
destination: TonBlockShardsTransactionsInMsgDestination;
|
|
1750
|
+
value: string;
|
|
1751
|
+
extra_currencies: unknown[];
|
|
1752
|
+
fwd_fee: string;
|
|
1753
|
+
ihr_fee: string;
|
|
1754
|
+
created_lt: string;
|
|
1755
|
+
body_hash: string;
|
|
1756
|
+
msg_data: TonBlockShardsTransactionsInMsgMsgData;
|
|
1757
|
+
}
|
|
1758
|
+
export interface TonBlockShardsTransactionsOutMsgsSource {
|
|
1759
|
+
'@type': string;
|
|
1760
|
+
account_address: string;
|
|
1761
|
+
}
|
|
1762
|
+
export interface TonBlockShardsTransactionsOutMsgsDestination {
|
|
1763
|
+
'@type': string;
|
|
1764
|
+
account_address: string;
|
|
1765
|
+
}
|
|
1766
|
+
export interface TonBlockShardsTransactionsOutMsgsMsgData {
|
|
1767
|
+
'@type': string;
|
|
1768
|
+
body?: string;
|
|
1769
|
+
init_state?: string;
|
|
1770
|
+
text?: string;
|
|
1771
|
+
}
|
|
1772
|
+
export interface TonBlockShardsTransactionsOutMsgs {
|
|
1773
|
+
'@type': string;
|
|
1774
|
+
hash: string;
|
|
1775
|
+
source: TonBlockShardsTransactionsOutMsgsSource;
|
|
1776
|
+
destination: TonBlockShardsTransactionsOutMsgsDestination;
|
|
1777
|
+
value: string;
|
|
1778
|
+
extra_currencies: unknown[];
|
|
1779
|
+
fwd_fee: string;
|
|
1780
|
+
ihr_fee: string;
|
|
1781
|
+
created_lt: string;
|
|
1782
|
+
body_hash: string;
|
|
1783
|
+
msg_data: TonBlockShardsTransactionsOutMsgsMsgData;
|
|
1784
|
+
}
|
|
1785
|
+
export interface TonBlockShardsTransactions {
|
|
1786
|
+
'@type': string;
|
|
1787
|
+
address: TonBlockShardsTransactionsAddress;
|
|
1788
|
+
utime: number;
|
|
1789
|
+
data: string;
|
|
1790
|
+
transaction_id: TonBlockShardsTransactionsTransactionId;
|
|
1791
|
+
fee: string;
|
|
1792
|
+
storage_fee: string;
|
|
1793
|
+
other_fee: string;
|
|
1794
|
+
in_msg: TonBlockShardsTransactionsInMsg;
|
|
1795
|
+
out_msgs: TonBlockShardsTransactionsOutMsgs[];
|
|
1796
|
+
account: string;
|
|
1797
|
+
}
|
|
1798
|
+
export interface TonBlockShards {
|
|
1799
|
+
'@type': string;
|
|
1800
|
+
id: TonBlockShardsId;
|
|
1801
|
+
global_id: number;
|
|
1802
|
+
version: number;
|
|
1803
|
+
flags: number;
|
|
1804
|
+
after_merge: boolean;
|
|
1805
|
+
after_split: boolean;
|
|
1806
|
+
before_split: boolean;
|
|
1807
|
+
want_merge: boolean;
|
|
1808
|
+
want_split: boolean;
|
|
1809
|
+
validator_list_hash_short: number;
|
|
1810
|
+
catchain_seqno: number;
|
|
1811
|
+
min_ref_mc_seqno: number;
|
|
1812
|
+
is_key_block: boolean;
|
|
1813
|
+
prev_key_block_seqno: number;
|
|
1814
|
+
start_lt: string;
|
|
1815
|
+
end_lt: string;
|
|
1816
|
+
gen_utime: number;
|
|
1817
|
+
vert_seqno: number;
|
|
1818
|
+
prev_blocks: TonBlockShardsPrevBlocks[];
|
|
1819
|
+
'@extra': string;
|
|
1820
|
+
transactions: TonBlockShardsTransactions[];
|
|
1821
|
+
}
|
|
1822
|
+
export interface TonBlock {
|
|
1823
|
+
seqno: number;
|
|
1824
|
+
shards: TonBlockShards[];
|
|
1825
|
+
_network: string;
|
|
1826
|
+
_vm: string;
|
|
1827
|
+
}
|
|
1828
|
+
export interface UtxoBlockTxVinScriptsig {
|
|
1829
|
+
asm: string;
|
|
1830
|
+
hex: string;
|
|
1831
|
+
}
|
|
1832
|
+
export interface UtxoBlockTxVinPrevoutScriptpubkey {
|
|
1833
|
+
asm: string;
|
|
1834
|
+
desc: string;
|
|
1835
|
+
hex: string;
|
|
1836
|
+
address: string;
|
|
1837
|
+
type: string;
|
|
1838
|
+
}
|
|
1839
|
+
export interface UtxoBlockTxVinPrevout {
|
|
1840
|
+
generated: boolean;
|
|
1841
|
+
height: number;
|
|
1842
|
+
value: number;
|
|
1843
|
+
scriptPubKey: UtxoBlockTxVinPrevoutScriptpubkey;
|
|
1844
|
+
}
|
|
1845
|
+
export interface UtxoBlockTxVin {
|
|
1846
|
+
coinbase: string;
|
|
1847
|
+
txinwitness: string[];
|
|
1848
|
+
sequence: number;
|
|
1849
|
+
txid: string;
|
|
1850
|
+
vout: number;
|
|
1851
|
+
scriptSig: UtxoBlockTxVinScriptsig;
|
|
1852
|
+
prevout: UtxoBlockTxVinPrevout;
|
|
1853
|
+
}
|
|
1854
|
+
export interface UtxoBlockTxVoutScriptpubkey {
|
|
1855
|
+
asm: string;
|
|
1856
|
+
desc?: string;
|
|
1857
|
+
hex: string;
|
|
1858
|
+
address?: string;
|
|
1859
|
+
type: string;
|
|
1860
|
+
reqSigs?: number;
|
|
1861
|
+
addresses?: string[];
|
|
1862
|
+
}
|
|
1863
|
+
export interface UtxoBlockTxVout {
|
|
1864
|
+
value: number;
|
|
1865
|
+
n: number;
|
|
1866
|
+
scriptPubKey: UtxoBlockTxVoutScriptpubkey;
|
|
1867
|
+
valueZat: number;
|
|
1868
|
+
}
|
|
1869
|
+
export interface UtxoBlockTxVshieldedoutput {
|
|
1870
|
+
cv?: string;
|
|
1871
|
+
cmu?: string;
|
|
1872
|
+
ephemeralKey?: string;
|
|
1873
|
+
encCiphertext?: string;
|
|
1874
|
+
outCiphertext?: string;
|
|
1875
|
+
proof?: string;
|
|
1876
|
+
}
|
|
1877
|
+
export interface UtxoBlockTxOrchardActions {
|
|
1878
|
+
cv?: string;
|
|
1879
|
+
nullifier?: string;
|
|
1880
|
+
rk?: string;
|
|
1881
|
+
cmx?: string;
|
|
1882
|
+
ephemeralKey?: string;
|
|
1883
|
+
encCiphertext?: string;
|
|
1884
|
+
spendAuthSig?: string;
|
|
1885
|
+
outCiphertext?: string;
|
|
1886
|
+
}
|
|
1887
|
+
export interface UtxoBlockTxOrchardFlags {
|
|
1888
|
+
enableOutputs: boolean;
|
|
1889
|
+
enableSpends: boolean;
|
|
1890
|
+
}
|
|
1891
|
+
export interface UtxoBlockTxOrchard {
|
|
1892
|
+
actions: UtxoBlockTxOrchardActions[];
|
|
1893
|
+
valueBalance: number;
|
|
1894
|
+
valueBalanceZat: number;
|
|
1895
|
+
flags?: UtxoBlockTxOrchardFlags;
|
|
1896
|
+
anchor?: string;
|
|
1897
|
+
proof?: string;
|
|
1898
|
+
bindingSig?: string;
|
|
1899
|
+
}
|
|
1900
|
+
export interface UtxoBlockTx {
|
|
1901
|
+
txid: string;
|
|
1902
|
+
hash: string;
|
|
1903
|
+
version: number;
|
|
1904
|
+
size: number;
|
|
1905
|
+
vsize: number;
|
|
1906
|
+
weight: number;
|
|
1907
|
+
locktime: number;
|
|
1908
|
+
vin: UtxoBlockTxVin[];
|
|
1909
|
+
vout: UtxoBlockTxVout[];
|
|
1910
|
+
hex: string;
|
|
1911
|
+
fee: number;
|
|
1912
|
+
blockhash: string;
|
|
1913
|
+
confirmations: number;
|
|
1914
|
+
time: number;
|
|
1915
|
+
blocktime: number;
|
|
1916
|
+
in_active_chain: boolean;
|
|
1917
|
+
height: number;
|
|
1918
|
+
vShieldedSpend: unknown[];
|
|
1919
|
+
vShieldedOutput: UtxoBlockTxVshieldedoutput[];
|
|
1920
|
+
vjoinsplit: unknown[];
|
|
1921
|
+
orchard: UtxoBlockTxOrchard;
|
|
1922
|
+
valueBalance: number;
|
|
1923
|
+
valueBalanceZat: number;
|
|
1924
|
+
authdigest: string;
|
|
1925
|
+
overwintered: boolean;
|
|
1926
|
+
versiongroupid: string;
|
|
1927
|
+
expiryheight: number;
|
|
1928
|
+
bindingSig?: string;
|
|
1929
|
+
}
|
|
1930
|
+
export interface UtxoBlockAuxpowTxVin {
|
|
1931
|
+
coinbase?: string;
|
|
1932
|
+
sequence?: number;
|
|
1933
|
+
}
|
|
1934
|
+
export interface UtxoBlockAuxpowTxVoutScriptpubkey {
|
|
1935
|
+
asm: string;
|
|
1936
|
+
hex: string;
|
|
1937
|
+
reqSigs?: number;
|
|
1938
|
+
type: string;
|
|
1939
|
+
addresses?: string[];
|
|
1940
|
+
}
|
|
1941
|
+
export interface UtxoBlockAuxpowTxVout {
|
|
1942
|
+
value?: number;
|
|
1943
|
+
n?: number;
|
|
1944
|
+
scriptPubKey?: UtxoBlockAuxpowTxVoutScriptpubkey;
|
|
1945
|
+
}
|
|
1946
|
+
export interface UtxoBlockAuxpowTx {
|
|
1947
|
+
hex: string;
|
|
1948
|
+
txid: string;
|
|
1949
|
+
hash: string;
|
|
1950
|
+
size: number;
|
|
1951
|
+
vsize: number;
|
|
1952
|
+
version: number;
|
|
1953
|
+
locktime: number;
|
|
1954
|
+
vin: UtxoBlockAuxpowTxVin[];
|
|
1955
|
+
vout: UtxoBlockAuxpowTxVout[];
|
|
1956
|
+
blockhash: string;
|
|
1957
|
+
}
|
|
1958
|
+
export interface UtxoBlockAuxpow {
|
|
1959
|
+
tx: UtxoBlockAuxpowTx;
|
|
1960
|
+
index: number;
|
|
1961
|
+
chainindex: number;
|
|
1962
|
+
merklebranch: string[];
|
|
1963
|
+
chainmerklebranch: string[];
|
|
1964
|
+
parentblock: string;
|
|
1965
|
+
}
|
|
1966
|
+
export interface UtxoBlockChainsupply {
|
|
1967
|
+
chainValue: number;
|
|
1968
|
+
chainValueZat: number;
|
|
1969
|
+
monitored: boolean;
|
|
1970
|
+
}
|
|
1971
|
+
export interface UtxoBlockValuepools {
|
|
1972
|
+
id: string;
|
|
1973
|
+
chainValue: number;
|
|
1974
|
+
chainValueZat: number;
|
|
1975
|
+
monitored: boolean;
|
|
1976
|
+
valueDelta: number;
|
|
1977
|
+
valueDeltaZat: number;
|
|
1978
|
+
}
|
|
1979
|
+
export interface UtxoBlockTreesSapling {
|
|
1980
|
+
size: number;
|
|
1981
|
+
}
|
|
1982
|
+
export interface UtxoBlockTreesOrchard {
|
|
1983
|
+
size: number;
|
|
1984
|
+
}
|
|
1985
|
+
export interface UtxoBlockTrees {
|
|
1986
|
+
sapling: UtxoBlockTreesSapling;
|
|
1987
|
+
orchard: UtxoBlockTreesOrchard;
|
|
1988
|
+
}
|
|
1989
|
+
export interface UtxoBlock {
|
|
1990
|
+
hash: string;
|
|
1991
|
+
confirmations: number;
|
|
1992
|
+
height: number;
|
|
1993
|
+
version: number;
|
|
1994
|
+
versionHex?: string;
|
|
1995
|
+
merkleroot: string;
|
|
1996
|
+
time: number;
|
|
1997
|
+
mediantime?: number;
|
|
1998
|
+
nonce: number | string;
|
|
1999
|
+
bits: string;
|
|
2000
|
+
target?: string;
|
|
2001
|
+
difficulty: number;
|
|
2002
|
+
chainwork?: string;
|
|
2003
|
+
nTx?: number;
|
|
2004
|
+
previousblockhash: string;
|
|
2005
|
+
strippedsize?: number;
|
|
2006
|
+
size: number;
|
|
2007
|
+
weight?: number;
|
|
2008
|
+
tx: UtxoBlockTx[];
|
|
2009
|
+
_network: string;
|
|
2010
|
+
_vm: string;
|
|
2011
|
+
nextblockhash?: string;
|
|
2012
|
+
auxpow?: UtxoBlockAuxpow;
|
|
2013
|
+
blockcommitments?: string;
|
|
2014
|
+
finalsaplingroot?: string;
|
|
2015
|
+
finalorchardroot?: string;
|
|
2016
|
+
solution?: string;
|
|
2017
|
+
chainSupply?: UtxoBlockChainsupply;
|
|
2018
|
+
valuePools?: UtxoBlockValuepools[];
|
|
2019
|
+
trees?: UtxoBlockTrees;
|
|
2020
|
+
}
|
|
1
2021
|
export type HubEventMessage = {
|
|
2
2022
|
data: {
|
|
3
2023
|
type: 'MESSAGE_TYPE_NONE' | 'MESSAGE_TYPE_CAST_ADD' | 'MESSAGE_TYPE_CAST_REMOVE' | 'MESSAGE_TYPE_REACTION_ADD' | 'MESSAGE_TYPE_REACTION_REMOVE' | 'MESSAGE_TYPE_LINK_ADD' | 'MESSAGE_TYPE_LINK_REMOVE' | 'MESSAGE_TYPE_VERIFICATION_ADD_ETH_ADDRESS' | 'MESSAGE_TYPE_VERIFICATION_REMOVE' | 'MESSAGE_TYPE_USER_DATA_ADD' | 'MESSAGE_TYPE_USERNAME_PROOF';
|