@chainlink/cre-sdk 1.16.0 → 1.17.0-alpha.2

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.
Files changed (26) hide show
  1. package/dist/generated/capabilities/blockchain/solana/v1alpha/client_pb.d.ts +2885 -15
  2. package/dist/generated/capabilities/blockchain/solana/v1alpha/client_pb.js +459 -7
  3. package/dist/generated/capabilities/networking/http/v1alpha/client_pb.js +1 -1
  4. package/dist/generated/chain-selectors/testnet/evm/glamsterdam-devnet-6.d.ts +3 -0
  5. package/dist/generated/chain-selectors/testnet/evm/glamsterdam-devnet-6.js +12 -0
  6. package/dist/generated/chain-selectors/testnet/evm/t-rex-testnet.d.ts +3 -0
  7. package/dist/generated/chain-selectors/testnet/evm/t-rex-testnet.js +12 -0
  8. package/dist/generated/networks.d.ts +1 -1
  9. package/dist/generated/networks.js +14 -0
  10. package/dist/generated/sdk/v1alpha/sdk_pb.d.ts +505 -0
  11. package/dist/generated/sdk/v1alpha/sdk_pb.js +121 -15
  12. package/dist/generated/tools/generator/v1alpha/cre_metadata_pb.d.ts +30 -1
  13. package/dist/generated/tools/generator/v1alpha/cre_metadata_pb.js +20 -2
  14. package/dist/generated-sdk/capabilities/blockchain/solana/v1alpha/client_sdk_gen.d.ts +54 -2
  15. package/dist/generated-sdk/capabilities/blockchain/solana/v1alpha/client_sdk_gen.js +287 -1
  16. package/dist/sdk/cre/index.d.ts +2 -2
  17. package/dist/sdk/cre/index.js +1 -1
  18. package/dist/sdk/test/generated/capabilities/blockchain/solana/v1alpha/solana_mock_gen.d.ts +19 -1
  19. package/dist/sdk/test/generated/capabilities/blockchain/solana/v1alpha/solana_mock_gen.js +141 -1
  20. package/dist/sdk/utils/capabilities/blockchain/solana/solana-helpers.d.ts +65 -1
  21. package/dist/sdk/utils/capabilities/blockchain/solana/solana-helpers.js +76 -0
  22. package/dist/sdk/utils/index.d.ts +1 -0
  23. package/dist/sdk/utils/index.js +1 -0
  24. package/dist/sdk/utils/triggers/trigger-interface.d.ts +7 -0
  25. package/dist/sdk/utils/triggers/trigger-interface.js +13 -1
  26. package/package.json +2 -2
@@ -1,42 +1,2672 @@
1
1
  import type { Message } from '@bufbuild/protobuf';
2
2
  import type { GenEnum, GenFile, GenMessage, GenService } from '@bufbuild/protobuf/codegenv2';
3
3
  import type { ReportResponse, ReportResponseJson } from '../../../../sdk/v1alpha/sdk_pb';
4
+ import type { BigInt, BigIntJson } from '../../../../values/v1/values_pb';
4
5
  /**
5
6
  * Describes the file capabilities/blockchain/solana/v1alpha/client.proto.
6
7
  */
7
8
  export declare const file_capabilities_blockchain_solana_v1alpha_client: GenFile;
9
+ /**
10
+ * On-chain account state.
11
+ *
12
+ * @generated from message capabilities.blockchain.solana.v1alpha.Account
13
+ */
14
+ export type Account = Message<'capabilities.blockchain.solana.v1alpha.Account'> & {
15
+ /**
16
+ * balance in lamports (1e-9 SOL)
17
+ *
18
+ * @generated from field: uint64 lamports = 1 [jstype = JS_NORMAL];
19
+ */
20
+ lamports: bigint;
21
+ /**
22
+ * 32-byte program id (Pubkey)
23
+ *
24
+ * @generated from field: bytes owner = 2;
25
+ */
26
+ owner: Uint8Array;
27
+ /**
28
+ * account data (encoded or JSON)
29
+ *
30
+ * @generated from field: capabilities.blockchain.solana.v1alpha.DataBytesOrJSON data = 3;
31
+ */
32
+ data?: DataBytesOrJSON;
33
+ /**
34
+ * true if this is a program account
35
+ *
36
+ * @generated from field: bool executable = 4;
37
+ */
38
+ executable: boolean;
39
+ /**
40
+ * next rent epoch
41
+ *
42
+ * @generated from field: values.v1.BigInt rent_epoch = 5;
43
+ */
44
+ rentEpoch?: BigInt;
45
+ /**
46
+ * data length in bytes
47
+ *
48
+ * @generated from field: uint64 space = 6 [jstype = JS_NORMAL];
49
+ */
50
+ space: bigint;
51
+ };
52
+ /**
53
+ * On-chain account state.
54
+ *
55
+ * @generated from message capabilities.blockchain.solana.v1alpha.Account
56
+ */
57
+ export type AccountJson = {
58
+ /**
59
+ * balance in lamports (1e-9 SOL)
60
+ *
61
+ * @generated from field: uint64 lamports = 1 [jstype = JS_NORMAL];
62
+ */
63
+ lamports?: string;
64
+ /**
65
+ * 32-byte program id (Pubkey)
66
+ *
67
+ * @generated from field: bytes owner = 2;
68
+ */
69
+ owner?: string;
70
+ /**
71
+ * account data (encoded or JSON)
72
+ *
73
+ * @generated from field: capabilities.blockchain.solana.v1alpha.DataBytesOrJSON data = 3;
74
+ */
75
+ data?: DataBytesOrJSONJson;
76
+ /**
77
+ * true if this is a program account
78
+ *
79
+ * @generated from field: bool executable = 4;
80
+ */
81
+ executable?: boolean;
82
+ /**
83
+ * next rent epoch
84
+ *
85
+ * @generated from field: values.v1.BigInt rent_epoch = 5;
86
+ */
87
+ rentEpoch?: BigIntJson;
88
+ /**
89
+ * data length in bytes
90
+ *
91
+ * @generated from field: uint64 space = 6 [jstype = JS_NORMAL];
92
+ */
93
+ space?: string;
94
+ };
95
+ /**
96
+ * Describes the message capabilities.blockchain.solana.v1alpha.Account.
97
+ * Use `create(AccountSchema)` to create a new message.
98
+ */
99
+ export declare const AccountSchema: GenMessage<Account, {
100
+ jsonType: AccountJson;
101
+ }>;
102
+ /**
103
+ * Compute budget configuration when submitting txs.
104
+ *
105
+ * @generated from message capabilities.blockchain.solana.v1alpha.ComputeConfig
106
+ */
107
+ export type ComputeConfig = Message<'capabilities.blockchain.solana.v1alpha.ComputeConfig'> & {
108
+ /**
109
+ * max CUs (approx per-tx limit)
110
+ *
111
+ * @generated from field: uint32 compute_limit = 1;
112
+ */
113
+ computeLimit: number;
114
+ };
8
115
  /**
9
116
  * Compute budget configuration when submitting txs.
10
117
  *
11
118
  * @generated from message capabilities.blockchain.solana.v1alpha.ComputeConfig
12
119
  */
13
- export type ComputeConfig = Message<'capabilities.blockchain.solana.v1alpha.ComputeConfig'> & {
120
+ export type ComputeConfigJson = {
121
+ /**
122
+ * max CUs (approx per-tx limit)
123
+ *
124
+ * @generated from field: uint32 compute_limit = 1;
125
+ */
126
+ computeLimit?: number;
127
+ };
128
+ /**
129
+ * Describes the message capabilities.blockchain.solana.v1alpha.ComputeConfig.
130
+ * Use `create(ComputeConfigSchema)` to create a new message.
131
+ */
132
+ export declare const ComputeConfigSchema: GenMessage<ComputeConfig, {
133
+ jsonType: ComputeConfigJson;
134
+ }>;
135
+ /**
136
+ * Raw bytes vs parsed JSON (as returned by RPC).
137
+ *
138
+ * @generated from message capabilities.blockchain.solana.v1alpha.DataBytesOrJSON
139
+ */
140
+ export type DataBytesOrJSON = Message<'capabilities.blockchain.solana.v1alpha.DataBytesOrJSON'> & {
141
+ /**
142
+ * @generated from field: capabilities.blockchain.solana.v1alpha.EncodingType encoding = 1;
143
+ */
144
+ encoding: EncodingType;
145
+ /**
146
+ * @generated from oneof capabilities.blockchain.solana.v1alpha.DataBytesOrJSON.body
147
+ */
148
+ body: {
149
+ /**
150
+ * program data (node’s base64/base58 decoded)
151
+ *
152
+ * @generated from field: bytes raw = 2;
153
+ */
154
+ value: Uint8Array;
155
+ case: 'raw';
156
+ } | {
157
+ /**
158
+ * json: UTF-8 bytes of the jsonParsed payload.
159
+ *
160
+ * @generated from field: bytes json = 3;
161
+ */
162
+ value: Uint8Array;
163
+ case: 'json';
164
+ } | {
165
+ case: undefined;
166
+ value?: undefined;
167
+ };
168
+ };
169
+ /**
170
+ * Raw bytes vs parsed JSON (as returned by RPC).
171
+ *
172
+ * @generated from message capabilities.blockchain.solana.v1alpha.DataBytesOrJSON
173
+ */
174
+ export type DataBytesOrJSONJson = {
175
+ /**
176
+ * @generated from field: capabilities.blockchain.solana.v1alpha.EncodingType encoding = 1;
177
+ */
178
+ encoding?: EncodingTypeJson;
179
+ /**
180
+ * program data (node’s base64/base58 decoded)
181
+ *
182
+ * @generated from field: bytes raw = 2;
183
+ */
184
+ raw?: string;
185
+ /**
186
+ * json: UTF-8 bytes of the jsonParsed payload.
187
+ *
188
+ * @generated from field: bytes json = 3;
189
+ */
190
+ json?: string;
191
+ };
192
+ /**
193
+ * Describes the message capabilities.blockchain.solana.v1alpha.DataBytesOrJSON.
194
+ * Use `create(DataBytesOrJSONSchema)` to create a new message.
195
+ */
196
+ export declare const DataBytesOrJSONSchema: GenMessage<DataBytesOrJSON, {
197
+ jsonType: DataBytesOrJSONJson;
198
+ }>;
199
+ /**
200
+ * Return a slice of account data.
201
+ *
202
+ * @generated from message capabilities.blockchain.solana.v1alpha.DataSlice
203
+ */
204
+ export type DataSlice = Message<'capabilities.blockchain.solana.v1alpha.DataSlice'> & {
205
+ /**
206
+ * start byte
207
+ *
208
+ * @generated from field: uint64 offset = 1 [jstype = JS_NORMAL];
209
+ */
210
+ offset: bigint;
211
+ /**
212
+ * number of bytes
213
+ *
214
+ * @generated from field: uint64 length = 2 [jstype = JS_NORMAL];
215
+ */
216
+ length: bigint;
217
+ };
218
+ /**
219
+ * Return a slice of account data.
220
+ *
221
+ * @generated from message capabilities.blockchain.solana.v1alpha.DataSlice
222
+ */
223
+ export type DataSliceJson = {
224
+ /**
225
+ * start byte
226
+ *
227
+ * @generated from field: uint64 offset = 1 [jstype = JS_NORMAL];
228
+ */
229
+ offset?: string;
230
+ /**
231
+ * number of bytes
232
+ *
233
+ * @generated from field: uint64 length = 2 [jstype = JS_NORMAL];
234
+ */
235
+ length?: string;
236
+ };
237
+ /**
238
+ * Describes the message capabilities.blockchain.solana.v1alpha.DataSlice.
239
+ * Use `create(DataSliceSchema)` to create a new message.
240
+ */
241
+ export declare const DataSliceSchema: GenMessage<DataSlice, {
242
+ jsonType: DataSliceJson;
243
+ }>;
244
+ /**
245
+ * Options for GetAccountInfo.
246
+ *
247
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetAccountInfoOpts
248
+ */
249
+ export type GetAccountInfoOpts = Message<'capabilities.blockchain.solana.v1alpha.GetAccountInfoOpts'> & {
250
+ /**
251
+ * data encoding
252
+ *
253
+ * @generated from field: capabilities.blockchain.solana.v1alpha.EncodingType encoding = 1;
254
+ */
255
+ encoding: EncodingType;
256
+ /**
257
+ * read consistency
258
+ *
259
+ * @generated from field: capabilities.blockchain.solana.v1alpha.CommitmentType commitment = 2;
260
+ */
261
+ commitment: CommitmentType;
262
+ /**
263
+ * optional slice window
264
+ *
265
+ * @generated from field: capabilities.blockchain.solana.v1alpha.DataSlice data_slice = 3;
266
+ */
267
+ dataSlice?: DataSlice;
268
+ /**
269
+ * lower bound slot
270
+ *
271
+ * @generated from field: uint64 min_context_slot = 4 [jstype = JS_NORMAL];
272
+ */
273
+ minContextSlot: bigint;
274
+ };
275
+ /**
276
+ * Options for GetAccountInfo.
277
+ *
278
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetAccountInfoOpts
279
+ */
280
+ export type GetAccountInfoOptsJson = {
281
+ /**
282
+ * data encoding
283
+ *
284
+ * @generated from field: capabilities.blockchain.solana.v1alpha.EncodingType encoding = 1;
285
+ */
286
+ encoding?: EncodingTypeJson;
287
+ /**
288
+ * read consistency
289
+ *
290
+ * @generated from field: capabilities.blockchain.solana.v1alpha.CommitmentType commitment = 2;
291
+ */
292
+ commitment?: CommitmentTypeJson;
293
+ /**
294
+ * optional slice window
295
+ *
296
+ * @generated from field: capabilities.blockchain.solana.v1alpha.DataSlice data_slice = 3;
297
+ */
298
+ dataSlice?: DataSliceJson;
299
+ /**
300
+ * lower bound slot
301
+ *
302
+ * @generated from field: uint64 min_context_slot = 4 [jstype = JS_NORMAL];
303
+ */
304
+ minContextSlot?: string;
305
+ };
306
+ /**
307
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetAccountInfoOpts.
308
+ * Use `create(GetAccountInfoOptsSchema)` to create a new message.
309
+ */
310
+ export declare const GetAccountInfoOptsSchema: GenMessage<GetAccountInfoOpts, {
311
+ jsonType: GetAccountInfoOptsJson;
312
+ }>;
313
+ /**
314
+ * Reply for GetAccountInfoWithOpts.
315
+ *
316
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetAccountInfoWithOptsReply
317
+ */
318
+ export type GetAccountInfoWithOptsReply = Message<'capabilities.blockchain.solana.v1alpha.GetAccountInfoWithOptsReply'> & {
319
+ /**
320
+ * account (may be empty)
321
+ *
322
+ * @generated from field: optional capabilities.blockchain.solana.v1alpha.Account value = 2;
323
+ */
324
+ value?: Account;
325
+ };
326
+ /**
327
+ * Reply for GetAccountInfoWithOpts.
328
+ *
329
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetAccountInfoWithOptsReply
330
+ */
331
+ export type GetAccountInfoWithOptsReplyJson = {
332
+ /**
333
+ * account (may be empty)
334
+ *
335
+ * @generated from field: optional capabilities.blockchain.solana.v1alpha.Account value = 2;
336
+ */
337
+ value?: AccountJson;
338
+ };
339
+ /**
340
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetAccountInfoWithOptsReply.
341
+ * Use `create(GetAccountInfoWithOptsReplySchema)` to create a new message.
342
+ */
343
+ export declare const GetAccountInfoWithOptsReplySchema: GenMessage<GetAccountInfoWithOptsReply, {
344
+ jsonType: GetAccountInfoWithOptsReplyJson;
345
+ }>;
346
+ /**
347
+ * Request for GetAccountInfoWithOpts.
348
+ *
349
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetAccountInfoWithOptsRequest
350
+ */
351
+ export type GetAccountInfoWithOptsRequest = Message<'capabilities.blockchain.solana.v1alpha.GetAccountInfoWithOptsRequest'> & {
352
+ /**
353
+ * 32-byte Pubkey
354
+ *
355
+ * @generated from field: bytes account = 1;
356
+ */
357
+ account: Uint8Array;
358
+ /**
359
+ * @generated from field: capabilities.blockchain.solana.v1alpha.GetAccountInfoOpts opts = 2;
360
+ */
361
+ opts?: GetAccountInfoOpts;
362
+ };
363
+ /**
364
+ * Request for GetAccountInfoWithOpts.
365
+ *
366
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetAccountInfoWithOptsRequest
367
+ */
368
+ export type GetAccountInfoWithOptsRequestJson = {
369
+ /**
370
+ * 32-byte Pubkey
371
+ *
372
+ * @generated from field: bytes account = 1;
373
+ */
374
+ account?: string;
375
+ /**
376
+ * @generated from field: capabilities.blockchain.solana.v1alpha.GetAccountInfoOpts opts = 2;
377
+ */
378
+ opts?: GetAccountInfoOptsJson;
379
+ };
380
+ /**
381
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetAccountInfoWithOptsRequest.
382
+ * Use `create(GetAccountInfoWithOptsRequestSchema)` to create a new message.
383
+ */
384
+ export declare const GetAccountInfoWithOptsRequestSchema: GenMessage<GetAccountInfoWithOptsRequest, {
385
+ jsonType: GetAccountInfoWithOptsRequestJson;
386
+ }>;
387
+ /**
388
+ * Reply for GetBalance.
389
+ *
390
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetBalanceReply
391
+ */
392
+ export type GetBalanceReply = Message<'capabilities.blockchain.solana.v1alpha.GetBalanceReply'> & {
393
+ /**
394
+ * lamports
395
+ *
396
+ * @generated from field: uint64 value = 1 [jstype = JS_NORMAL];
397
+ */
398
+ value: bigint;
399
+ };
400
+ /**
401
+ * Reply for GetBalance.
402
+ *
403
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetBalanceReply
404
+ */
405
+ export type GetBalanceReplyJson = {
406
+ /**
407
+ * lamports
408
+ *
409
+ * @generated from field: uint64 value = 1 [jstype = JS_NORMAL];
410
+ */
411
+ value?: string;
412
+ };
413
+ /**
414
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetBalanceReply.
415
+ * Use `create(GetBalanceReplySchema)` to create a new message.
416
+ */
417
+ export declare const GetBalanceReplySchema: GenMessage<GetBalanceReply, {
418
+ jsonType: GetBalanceReplyJson;
419
+ }>;
420
+ /**
421
+ * Request for GetBalance.
422
+ *
423
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetBalanceRequest
424
+ */
425
+ export type GetBalanceRequest = Message<'capabilities.blockchain.solana.v1alpha.GetBalanceRequest'> & {
426
+ /**
427
+ * 32-byte Pubkey
428
+ *
429
+ * @generated from field: bytes addr = 1;
430
+ */
431
+ addr: Uint8Array;
432
+ /**
433
+ * read consistency
434
+ *
435
+ * @generated from field: capabilities.blockchain.solana.v1alpha.CommitmentType commitment = 2;
436
+ */
437
+ commitment: CommitmentType;
438
+ };
439
+ /**
440
+ * Request for GetBalance.
441
+ *
442
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetBalanceRequest
443
+ */
444
+ export type GetBalanceRequestJson = {
445
+ /**
446
+ * 32-byte Pubkey
447
+ *
448
+ * @generated from field: bytes addr = 1;
449
+ */
450
+ addr?: string;
451
+ /**
452
+ * read consistency
453
+ *
454
+ * @generated from field: capabilities.blockchain.solana.v1alpha.CommitmentType commitment = 2;
455
+ */
456
+ commitment?: CommitmentTypeJson;
457
+ };
458
+ /**
459
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetBalanceRequest.
460
+ * Use `create(GetBalanceRequestSchema)` to create a new message.
461
+ */
462
+ export declare const GetBalanceRequestSchema: GenMessage<GetBalanceRequest, {
463
+ jsonType: GetBalanceRequestJson;
464
+ }>;
465
+ /**
466
+ * Options for GetBlock.
467
+ *
468
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetBlockOpts
469
+ */
470
+ export type GetBlockOpts = Message<'capabilities.blockchain.solana.v1alpha.GetBlockOpts'> & {
471
+ /**
472
+ * read consistency
473
+ *
474
+ * @generated from field: capabilities.blockchain.solana.v1alpha.CommitmentType commitment = 4;
475
+ */
476
+ commitment: CommitmentType;
477
+ };
478
+ /**
479
+ * Options for GetBlock.
480
+ *
481
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetBlockOpts
482
+ */
483
+ export type GetBlockOptsJson = {
484
+ /**
485
+ * read consistency
486
+ *
487
+ * @generated from field: capabilities.blockchain.solana.v1alpha.CommitmentType commitment = 4;
488
+ */
489
+ commitment?: CommitmentTypeJson;
490
+ };
491
+ /**
492
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetBlockOpts.
493
+ * Use `create(GetBlockOptsSchema)` to create a new message.
494
+ */
495
+ export declare const GetBlockOptsSchema: GenMessage<GetBlockOpts, {
496
+ jsonType: GetBlockOptsJson;
497
+ }>;
498
+ /**
499
+ * Block response.
500
+ *
501
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetBlockReply
502
+ */
503
+ export type GetBlockReply = Message<'capabilities.blockchain.solana.v1alpha.GetBlockReply'> & {
504
+ /**
505
+ * 32-byte block hash
506
+ *
507
+ * @generated from field: bytes blockhash = 1;
508
+ */
509
+ blockhash: Uint8Array;
510
+ /**
511
+ * 32-byte parent hash
512
+ *
513
+ * @generated from field: bytes previous_blockhash = 2;
514
+ */
515
+ previousBlockhash: Uint8Array;
516
+ /**
517
+ * @generated from field: uint64 parent_slot = 3 [jstype = JS_NORMAL];
518
+ */
519
+ parentSlot: bigint;
520
+ /**
521
+ * unix seconds, node may not report it
522
+ *
523
+ * @generated from field: optional int64 block_time = 4 [jstype = JS_NORMAL];
524
+ */
525
+ blockTime?: bigint;
526
+ /**
527
+ * chain height
528
+ *
529
+ * @generated from field: uint64 block_height = 5 [jstype = JS_NORMAL];
530
+ */
531
+ blockHeight: bigint;
532
+ };
533
+ /**
534
+ * Block response.
535
+ *
536
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetBlockReply
537
+ */
538
+ export type GetBlockReplyJson = {
539
+ /**
540
+ * 32-byte block hash
541
+ *
542
+ * @generated from field: bytes blockhash = 1;
543
+ */
544
+ blockhash?: string;
545
+ /**
546
+ * 32-byte parent hash
547
+ *
548
+ * @generated from field: bytes previous_blockhash = 2;
549
+ */
550
+ previousBlockhash?: string;
551
+ /**
552
+ * @generated from field: uint64 parent_slot = 3 [jstype = JS_NORMAL];
553
+ */
554
+ parentSlot?: string;
555
+ /**
556
+ * unix seconds, node may not report it
557
+ *
558
+ * @generated from field: optional int64 block_time = 4 [jstype = JS_NORMAL];
559
+ */
560
+ blockTime?: string;
561
+ /**
562
+ * chain height
563
+ *
564
+ * @generated from field: uint64 block_height = 5 [jstype = JS_NORMAL];
565
+ */
566
+ blockHeight?: string;
567
+ };
568
+ /**
569
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetBlockReply.
570
+ * Use `create(GetBlockReplySchema)` to create a new message.
571
+ */
572
+ export declare const GetBlockReplySchema: GenMessage<GetBlockReply, {
573
+ jsonType: GetBlockReplyJson;
574
+ }>;
575
+ /**
576
+ * Request for GetBlock.
577
+ *
578
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetBlockRequest
579
+ */
580
+ export type GetBlockRequest = Message<'capabilities.blockchain.solana.v1alpha.GetBlockRequest'> & {
581
+ /**
582
+ * target slot
583
+ *
584
+ * @generated from field: uint64 slot = 1 [jstype = JS_NORMAL];
585
+ */
586
+ slot: bigint;
587
+ /**
588
+ * @generated from field: capabilities.blockchain.solana.v1alpha.GetBlockOpts opts = 2;
589
+ */
590
+ opts?: GetBlockOpts;
591
+ };
592
+ /**
593
+ * Request for GetBlock.
594
+ *
595
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetBlockRequest
596
+ */
597
+ export type GetBlockRequestJson = {
598
+ /**
599
+ * target slot
600
+ *
601
+ * @generated from field: uint64 slot = 1 [jstype = JS_NORMAL];
602
+ */
603
+ slot?: string;
604
+ /**
605
+ * @generated from field: capabilities.blockchain.solana.v1alpha.GetBlockOpts opts = 2;
606
+ */
607
+ opts?: GetBlockOptsJson;
608
+ };
609
+ /**
610
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetBlockRequest.
611
+ * Use `create(GetBlockRequestSchema)` to create a new message.
612
+ */
613
+ export declare const GetBlockRequestSchema: GenMessage<GetBlockRequest, {
614
+ jsonType: GetBlockRequestJson;
615
+ }>;
616
+ /**
617
+ * Fee quote for a base58-encoded Message.
618
+ *
619
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetFeeForMessageReply
620
+ */
621
+ export type GetFeeForMessageReply = Message<'capabilities.blockchain.solana.v1alpha.GetFeeForMessageReply'> & {
622
+ /**
623
+ * lamports
624
+ *
625
+ * @generated from field: uint64 fee = 1 [jstype = JS_NORMAL];
626
+ */
627
+ fee: bigint;
628
+ };
629
+ /**
630
+ * Fee quote for a base58-encoded Message.
631
+ *
632
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetFeeForMessageReply
633
+ */
634
+ export type GetFeeForMessageReplyJson = {
635
+ /**
636
+ * lamports
637
+ *
638
+ * @generated from field: uint64 fee = 1 [jstype = JS_NORMAL];
639
+ */
640
+ fee?: string;
641
+ };
642
+ /**
643
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetFeeForMessageReply.
644
+ * Use `create(GetFeeForMessageReplySchema)` to create a new message.
645
+ */
646
+ export declare const GetFeeForMessageReplySchema: GenMessage<GetFeeForMessageReply, {
647
+ jsonType: GetFeeForMessageReplyJson;
648
+ }>;
649
+ /**
650
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetFeeForMessageRequest
651
+ */
652
+ export type GetFeeForMessageRequest = Message<'capabilities.blockchain.solana.v1alpha.GetFeeForMessageRequest'> & {
653
+ /**
654
+ * must be base58-encoded Message
655
+ *
656
+ * @generated from field: string message = 1;
657
+ */
658
+ message: string;
659
+ /**
660
+ * read consistency
661
+ *
662
+ * @generated from field: capabilities.blockchain.solana.v1alpha.CommitmentType commitment = 2;
663
+ */
664
+ commitment: CommitmentType;
665
+ };
666
+ /**
667
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetFeeForMessageRequest
668
+ */
669
+ export type GetFeeForMessageRequestJson = {
670
+ /**
671
+ * must be base58-encoded Message
672
+ *
673
+ * @generated from field: string message = 1;
674
+ */
675
+ message?: string;
676
+ /**
677
+ * read consistency
678
+ *
679
+ * @generated from field: capabilities.blockchain.solana.v1alpha.CommitmentType commitment = 2;
680
+ */
681
+ commitment?: CommitmentTypeJson;
682
+ };
683
+ /**
684
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetFeeForMessageRequest.
685
+ * Use `create(GetFeeForMessageRequestSchema)` to create a new message.
686
+ */
687
+ export declare const GetFeeForMessageRequestSchema: GenMessage<GetFeeForMessageRequest, {
688
+ jsonType: GetFeeForMessageRequestJson;
689
+ }>;
690
+ /**
691
+ * Options for GetMultipleAccounts.
692
+ *
693
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetMultipleAccountsOpts
694
+ */
695
+ export type GetMultipleAccountsOpts = Message<'capabilities.blockchain.solana.v1alpha.GetMultipleAccountsOpts'> & {
696
+ /**
697
+ * @generated from field: capabilities.blockchain.solana.v1alpha.EncodingType encoding = 1;
698
+ */
699
+ encoding: EncodingType;
700
+ /**
701
+ * @generated from field: capabilities.blockchain.solana.v1alpha.CommitmentType commitment = 2;
702
+ */
703
+ commitment: CommitmentType;
704
+ /**
705
+ * @generated from field: capabilities.blockchain.solana.v1alpha.DataSlice data_slice = 3;
706
+ */
707
+ dataSlice?: DataSlice;
708
+ /**
709
+ * @generated from field: uint64 min_context_slot = 4 [jstype = JS_NORMAL];
710
+ */
711
+ minContextSlot: bigint;
712
+ };
713
+ /**
714
+ * Options for GetMultipleAccounts.
715
+ *
716
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetMultipleAccountsOpts
717
+ */
718
+ export type GetMultipleAccountsOptsJson = {
719
+ /**
720
+ * @generated from field: capabilities.blockchain.solana.v1alpha.EncodingType encoding = 1;
721
+ */
722
+ encoding?: EncodingTypeJson;
723
+ /**
724
+ * @generated from field: capabilities.blockchain.solana.v1alpha.CommitmentType commitment = 2;
725
+ */
726
+ commitment?: CommitmentTypeJson;
727
+ /**
728
+ * @generated from field: capabilities.blockchain.solana.v1alpha.DataSlice data_slice = 3;
729
+ */
730
+ dataSlice?: DataSliceJson;
731
+ /**
732
+ * @generated from field: uint64 min_context_slot = 4 [jstype = JS_NORMAL];
733
+ */
734
+ minContextSlot?: string;
735
+ };
736
+ /**
737
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetMultipleAccountsOpts.
738
+ * Use `create(GetMultipleAccountsOptsSchema)` to create a new message.
739
+ */
740
+ export declare const GetMultipleAccountsOptsSchema: GenMessage<GetMultipleAccountsOpts, {
741
+ jsonType: GetMultipleAccountsOptsJson;
742
+ }>;
743
+ /**
744
+ * @generated from message capabilities.blockchain.solana.v1alpha.OptionalAccountWrapper
745
+ */
746
+ export type OptionalAccountWrapper = Message<'capabilities.blockchain.solana.v1alpha.OptionalAccountWrapper'> & {
747
+ /**
748
+ * @generated from field: optional capabilities.blockchain.solana.v1alpha.Account account = 1;
749
+ */
750
+ account?: Account;
751
+ };
752
+ /**
753
+ * @generated from message capabilities.blockchain.solana.v1alpha.OptionalAccountWrapper
754
+ */
755
+ export type OptionalAccountWrapperJson = {
756
+ /**
757
+ * @generated from field: optional capabilities.blockchain.solana.v1alpha.Account account = 1;
758
+ */
759
+ account?: AccountJson;
760
+ };
761
+ /**
762
+ * Describes the message capabilities.blockchain.solana.v1alpha.OptionalAccountWrapper.
763
+ * Use `create(OptionalAccountWrapperSchema)` to create a new message.
764
+ */
765
+ export declare const OptionalAccountWrapperSchema: GenMessage<OptionalAccountWrapper, {
766
+ jsonType: OptionalAccountWrapperJson;
767
+ }>;
768
+ /**
769
+ * Reply for GetMultipleAccountsWithOpts.
770
+ *
771
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetMultipleAccountsWithOptsReply
772
+ */
773
+ export type GetMultipleAccountsWithOptsReply = Message<'capabilities.blockchain.solana.v1alpha.GetMultipleAccountsWithOptsReply'> & {
774
+ /**
775
+ * accounts (nil entries allowed)
776
+ *
777
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.OptionalAccountWrapper value = 2;
778
+ */
779
+ value: OptionalAccountWrapper[];
780
+ };
781
+ /**
782
+ * Reply for GetMultipleAccountsWithOpts.
783
+ *
784
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetMultipleAccountsWithOptsReply
785
+ */
786
+ export type GetMultipleAccountsWithOptsReplyJson = {
787
+ /**
788
+ * accounts (nil entries allowed)
789
+ *
790
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.OptionalAccountWrapper value = 2;
791
+ */
792
+ value?: OptionalAccountWrapperJson[];
793
+ };
794
+ /**
795
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetMultipleAccountsWithOptsReply.
796
+ * Use `create(GetMultipleAccountsWithOptsReplySchema)` to create a new message.
797
+ */
798
+ export declare const GetMultipleAccountsWithOptsReplySchema: GenMessage<GetMultipleAccountsWithOptsReply, {
799
+ jsonType: GetMultipleAccountsWithOptsReplyJson;
800
+ }>;
801
+ /**
802
+ * Request for GetMultipleAccountsWithOpts.
803
+ *
804
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetMultipleAccountsWithOptsRequest
805
+ */
806
+ export type GetMultipleAccountsWithOptsRequest = Message<'capabilities.blockchain.solana.v1alpha.GetMultipleAccountsWithOptsRequest'> & {
807
+ /**
808
+ * list of 32-byte Pubkeys
809
+ *
810
+ * @generated from field: repeated bytes accounts = 1;
811
+ */
812
+ accounts: Uint8Array[];
813
+ /**
814
+ * @generated from field: capabilities.blockchain.solana.v1alpha.GetMultipleAccountsOpts opts = 2;
815
+ */
816
+ opts?: GetMultipleAccountsOpts;
817
+ };
818
+ /**
819
+ * Request for GetMultipleAccountsWithOpts.
820
+ *
821
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetMultipleAccountsWithOptsRequest
822
+ */
823
+ export type GetMultipleAccountsWithOptsRequestJson = {
824
+ /**
825
+ * list of 32-byte Pubkeys
826
+ *
827
+ * @generated from field: repeated bytes accounts = 1;
828
+ */
829
+ accounts?: string[];
830
+ /**
831
+ * @generated from field: capabilities.blockchain.solana.v1alpha.GetMultipleAccountsOpts opts = 2;
832
+ */
833
+ opts?: GetMultipleAccountsOptsJson;
834
+ };
835
+ /**
836
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetMultipleAccountsWithOptsRequest.
837
+ * Use `create(GetMultipleAccountsWithOptsRequestSchema)` to create a new message.
838
+ */
839
+ export declare const GetMultipleAccountsWithOptsRequestSchema: GenMessage<GetMultipleAccountsWithOptsRequest, {
840
+ jsonType: GetMultipleAccountsWithOptsRequestJson;
841
+ }>;
842
+ /**
843
+ * Memcmp filter for getProgramAccounts.
844
+ *
845
+ * @generated from message capabilities.blockchain.solana.v1alpha.RPCFilterMemcmp
846
+ */
847
+ export type RPCFilterMemcmp = Message<'capabilities.blockchain.solana.v1alpha.RPCFilterMemcmp'> & {
848
+ /**
849
+ * byte offset into account data
850
+ *
851
+ * @generated from field: uint64 offset = 1 [jstype = JS_NORMAL];
852
+ */
853
+ offset: bigint;
854
+ /**
855
+ * data to match (RPC encodes as base58)
856
+ *
857
+ * @generated from field: bytes bytes = 2;
858
+ */
859
+ bytes: Uint8Array;
860
+ };
861
+ /**
862
+ * Memcmp filter for getProgramAccounts.
863
+ *
864
+ * @generated from message capabilities.blockchain.solana.v1alpha.RPCFilterMemcmp
865
+ */
866
+ export type RPCFilterMemcmpJson = {
867
+ /**
868
+ * byte offset into account data
869
+ *
870
+ * @generated from field: uint64 offset = 1 [jstype = JS_NORMAL];
871
+ */
872
+ offset?: string;
873
+ /**
874
+ * data to match (RPC encodes as base58)
875
+ *
876
+ * @generated from field: bytes bytes = 2;
877
+ */
878
+ bytes?: string;
879
+ };
880
+ /**
881
+ * Describes the message capabilities.blockchain.solana.v1alpha.RPCFilterMemcmp.
882
+ * Use `create(RPCFilterMemcmpSchema)` to create a new message.
883
+ */
884
+ export declare const RPCFilterMemcmpSchema: GenMessage<RPCFilterMemcmp, {
885
+ jsonType: RPCFilterMemcmpJson;
886
+ }>;
887
+ /**
888
+ * Account filter for getProgramAccounts (memcmp or data size).
889
+ *
890
+ * @generated from message capabilities.blockchain.solana.v1alpha.RPCFilter
891
+ */
892
+ export type RPCFilter = Message<'capabilities.blockchain.solana.v1alpha.RPCFilter'> & {
893
+ /**
894
+ * @generated from field: capabilities.blockchain.solana.v1alpha.RPCFilterMemcmp memcmp = 1;
895
+ */
896
+ memcmp?: RPCFilterMemcmp;
897
+ /**
898
+ * match accounts with this data length
899
+ *
900
+ * @generated from field: uint64 data_size = 2 [jstype = JS_NORMAL];
901
+ */
902
+ dataSize: bigint;
903
+ };
904
+ /**
905
+ * Account filter for getProgramAccounts (memcmp or data size).
906
+ *
907
+ * @generated from message capabilities.blockchain.solana.v1alpha.RPCFilter
908
+ */
909
+ export type RPCFilterJson = {
910
+ /**
911
+ * @generated from field: capabilities.blockchain.solana.v1alpha.RPCFilterMemcmp memcmp = 1;
912
+ */
913
+ memcmp?: RPCFilterMemcmpJson;
914
+ /**
915
+ * match accounts with this data length
916
+ *
917
+ * @generated from field: uint64 data_size = 2 [jstype = JS_NORMAL];
918
+ */
919
+ dataSize?: string;
920
+ };
921
+ /**
922
+ * Describes the message capabilities.blockchain.solana.v1alpha.RPCFilter.
923
+ * Use `create(RPCFilterSchema)` to create a new message.
924
+ */
925
+ export declare const RPCFilterSchema: GenMessage<RPCFilter, {
926
+ jsonType: RPCFilterJson;
927
+ }>;
928
+ /**
929
+ * Options for GetProgramAccounts.
930
+ *
931
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetProgramAccountsOpts
932
+ */
933
+ export type GetProgramAccountsOpts = Message<'capabilities.blockchain.solana.v1alpha.GetProgramAccountsOpts'> & {
934
+ /**
935
+ * @generated from field: capabilities.blockchain.solana.v1alpha.EncodingType encoding = 1;
936
+ */
937
+ encoding: EncodingType;
938
+ /**
939
+ * @generated from field: capabilities.blockchain.solana.v1alpha.CommitmentType commitment = 2;
940
+ */
941
+ commitment: CommitmentType;
942
+ /**
943
+ * @generated from field: capabilities.blockchain.solana.v1alpha.DataSlice data_slice = 3;
944
+ */
945
+ dataSlice?: DataSlice;
946
+ /**
947
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.RPCFilter filters = 4;
948
+ */
949
+ filters: RPCFilter[];
950
+ };
951
+ /**
952
+ * Options for GetProgramAccounts.
953
+ *
954
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetProgramAccountsOpts
955
+ */
956
+ export type GetProgramAccountsOptsJson = {
957
+ /**
958
+ * @generated from field: capabilities.blockchain.solana.v1alpha.EncodingType encoding = 1;
959
+ */
960
+ encoding?: EncodingTypeJson;
961
+ /**
962
+ * @generated from field: capabilities.blockchain.solana.v1alpha.CommitmentType commitment = 2;
963
+ */
964
+ commitment?: CommitmentTypeJson;
965
+ /**
966
+ * @generated from field: capabilities.blockchain.solana.v1alpha.DataSlice data_slice = 3;
967
+ */
968
+ dataSlice?: DataSliceJson;
969
+ /**
970
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.RPCFilter filters = 4;
971
+ */
972
+ filters?: RPCFilterJson[];
973
+ };
974
+ /**
975
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetProgramAccountsOpts.
976
+ * Use `create(GetProgramAccountsOptsSchema)` to create a new message.
977
+ */
978
+ export declare const GetProgramAccountsOptsSchema: GenMessage<GetProgramAccountsOpts, {
979
+ jsonType: GetProgramAccountsOptsJson;
980
+ }>;
981
+ /**
982
+ * Program-owned account with its pubkey.
983
+ *
984
+ * @generated from message capabilities.blockchain.solana.v1alpha.KeyedAccount
985
+ */
986
+ export type KeyedAccount = Message<'capabilities.blockchain.solana.v1alpha.KeyedAccount'> & {
987
+ /**
988
+ * 32-byte Pubkey
989
+ *
990
+ * @generated from field: bytes pubkey = 1;
991
+ */
992
+ pubkey: Uint8Array;
993
+ /**
994
+ * @generated from field: capabilities.blockchain.solana.v1alpha.Account account = 2;
995
+ */
996
+ account?: Account;
997
+ };
998
+ /**
999
+ * Program-owned account with its pubkey.
1000
+ *
1001
+ * @generated from message capabilities.blockchain.solana.v1alpha.KeyedAccount
1002
+ */
1003
+ export type KeyedAccountJson = {
1004
+ /**
1005
+ * 32-byte Pubkey
1006
+ *
1007
+ * @generated from field: bytes pubkey = 1;
1008
+ */
1009
+ pubkey?: string;
1010
+ /**
1011
+ * @generated from field: capabilities.blockchain.solana.v1alpha.Account account = 2;
1012
+ */
1013
+ account?: AccountJson;
1014
+ };
1015
+ /**
1016
+ * Describes the message capabilities.blockchain.solana.v1alpha.KeyedAccount.
1017
+ * Use `create(KeyedAccountSchema)` to create a new message.
1018
+ */
1019
+ export declare const KeyedAccountSchema: GenMessage<KeyedAccount, {
1020
+ jsonType: KeyedAccountJson;
1021
+ }>;
1022
+ /**
1023
+ * Reply for GetProgramAccounts.
1024
+ *
1025
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetProgramAccountsReply
1026
+ */
1027
+ export type GetProgramAccountsReply = Message<'capabilities.blockchain.solana.v1alpha.GetProgramAccountsReply'> & {
1028
+ /**
1029
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.KeyedAccount value = 1;
1030
+ */
1031
+ value: KeyedAccount[];
1032
+ };
1033
+ /**
1034
+ * Reply for GetProgramAccounts.
1035
+ *
1036
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetProgramAccountsReply
1037
+ */
1038
+ export type GetProgramAccountsReplyJson = {
1039
+ /**
1040
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.KeyedAccount value = 1;
1041
+ */
1042
+ value?: KeyedAccountJson[];
1043
+ };
1044
+ /**
1045
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetProgramAccountsReply.
1046
+ * Use `create(GetProgramAccountsReplySchema)` to create a new message.
1047
+ */
1048
+ export declare const GetProgramAccountsReplySchema: GenMessage<GetProgramAccountsReply, {
1049
+ jsonType: GetProgramAccountsReplyJson;
1050
+ }>;
1051
+ /**
1052
+ * Request for GetProgramAccounts.
1053
+ *
1054
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetProgramAccountsRequest
1055
+ */
1056
+ export type GetProgramAccountsRequest = Message<'capabilities.blockchain.solana.v1alpha.GetProgramAccountsRequest'> & {
1057
+ /**
1058
+ * 32-byte program Pubkey
1059
+ *
1060
+ * @generated from field: bytes program = 1;
1061
+ */
1062
+ program: Uint8Array;
1063
+ /**
1064
+ * @generated from field: capabilities.blockchain.solana.v1alpha.GetProgramAccountsOpts opts = 2;
1065
+ */
1066
+ opts?: GetProgramAccountsOpts;
1067
+ };
1068
+ /**
1069
+ * Request for GetProgramAccounts.
1070
+ *
1071
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetProgramAccountsRequest
1072
+ */
1073
+ export type GetProgramAccountsRequestJson = {
1074
+ /**
1075
+ * 32-byte program Pubkey
1076
+ *
1077
+ * @generated from field: bytes program = 1;
1078
+ */
1079
+ program?: string;
1080
+ /**
1081
+ * @generated from field: capabilities.blockchain.solana.v1alpha.GetProgramAccountsOpts opts = 2;
1082
+ */
1083
+ opts?: GetProgramAccountsOptsJson;
1084
+ };
1085
+ /**
1086
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetProgramAccountsRequest.
1087
+ * Use `create(GetProgramAccountsRequestSchema)` to create a new message.
1088
+ */
1089
+ export declare const GetProgramAccountsRequestSchema: GenMessage<GetProgramAccountsRequest, {
1090
+ jsonType: GetProgramAccountsRequestJson;
1091
+ }>;
1092
+ /**
1093
+ * Reply for GetSignatureStatuses.
1094
+ *
1095
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetSignatureStatusesReply
1096
+ */
1097
+ export type GetSignatureStatusesReply = Message<'capabilities.blockchain.solana.v1alpha.GetSignatureStatusesReply'> & {
1098
+ /**
1099
+ * 1:1 with input
1100
+ *
1101
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.GetSignatureStatusesResult results = 1;
1102
+ */
1103
+ results: GetSignatureStatusesResult[];
1104
+ };
1105
+ /**
1106
+ * Reply for GetSignatureStatuses.
1107
+ *
1108
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetSignatureStatusesReply
1109
+ */
1110
+ export type GetSignatureStatusesReplyJson = {
1111
+ /**
1112
+ * 1:1 with input
1113
+ *
1114
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.GetSignatureStatusesResult results = 1;
1115
+ */
1116
+ results?: GetSignatureStatusesResultJson[];
1117
+ };
1118
+ /**
1119
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetSignatureStatusesReply.
1120
+ * Use `create(GetSignatureStatusesReplySchema)` to create a new message.
1121
+ */
1122
+ export declare const GetSignatureStatusesReplySchema: GenMessage<GetSignatureStatusesReply, {
1123
+ jsonType: GetSignatureStatusesReplyJson;
1124
+ }>;
1125
+ /**
1126
+ * Request for GetSignatureStatuses.
1127
+ *
1128
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetSignatureStatusesRequest
1129
+ */
1130
+ export type GetSignatureStatusesRequest = Message<'capabilities.blockchain.solana.v1alpha.GetSignatureStatusesRequest'> & {
1131
+ /**
1132
+ * 64-byte signatures
1133
+ *
1134
+ * @generated from field: repeated bytes sigs = 1;
1135
+ */
1136
+ sigs: Uint8Array[];
1137
+ };
1138
+ /**
1139
+ * Request for GetSignatureStatuses.
1140
+ *
1141
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetSignatureStatusesRequest
1142
+ */
1143
+ export type GetSignatureStatusesRequestJson = {
1144
+ /**
1145
+ * 64-byte signatures
1146
+ *
1147
+ * @generated from field: repeated bytes sigs = 1;
1148
+ */
1149
+ sigs?: string[];
1150
+ };
1151
+ /**
1152
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetSignatureStatusesRequest.
1153
+ * Use `create(GetSignatureStatusesRequestSchema)` to create a new message.
1154
+ */
1155
+ export declare const GetSignatureStatusesRequestSchema: GenMessage<GetSignatureStatusesRequest, {
1156
+ jsonType: GetSignatureStatusesRequestJson;
1157
+ }>;
1158
+ /**
1159
+ * Per-signature status.
1160
+ *
1161
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetSignatureStatusesResult
1162
+ */
1163
+ export type GetSignatureStatusesResult = Message<'capabilities.blockchain.solana.v1alpha.GetSignatureStatusesResult'> & {
1164
+ /**
1165
+ * processed slot
1166
+ *
1167
+ * @generated from field: uint64 slot = 1 [jstype = JS_NORMAL];
1168
+ */
1169
+ slot: bigint;
1170
+ /**
1171
+ * null->0 here
1172
+ *
1173
+ * @generated from field: optional uint64 confirmations = 2 [jstype = JS_NORMAL];
1174
+ */
1175
+ confirmations?: bigint;
1176
+ /**
1177
+ * error JSON string (empty on success)
1178
+ *
1179
+ * @generated from field: string err = 3;
1180
+ */
1181
+ err: string;
1182
+ /**
1183
+ * @generated from field: capabilities.blockchain.solana.v1alpha.ConfirmationStatusType confirmation_status = 4;
1184
+ */
1185
+ confirmationStatus: ConfirmationStatusType;
1186
+ };
1187
+ /**
1188
+ * Per-signature status.
1189
+ *
1190
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetSignatureStatusesResult
1191
+ */
1192
+ export type GetSignatureStatusesResultJson = {
1193
+ /**
1194
+ * processed slot
1195
+ *
1196
+ * @generated from field: uint64 slot = 1 [jstype = JS_NORMAL];
1197
+ */
1198
+ slot?: string;
1199
+ /**
1200
+ * null->0 here
1201
+ *
1202
+ * @generated from field: optional uint64 confirmations = 2 [jstype = JS_NORMAL];
1203
+ */
1204
+ confirmations?: string;
1205
+ /**
1206
+ * error JSON string (empty on success)
1207
+ *
1208
+ * @generated from field: string err = 3;
1209
+ */
1210
+ err?: string;
1211
+ /**
1212
+ * @generated from field: capabilities.blockchain.solana.v1alpha.ConfirmationStatusType confirmation_status = 4;
1213
+ */
1214
+ confirmationStatus?: ConfirmationStatusTypeJson;
1215
+ };
1216
+ /**
1217
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetSignatureStatusesResult.
1218
+ * Use `create(GetSignatureStatusesResultSchema)` to create a new message.
1219
+ */
1220
+ export declare const GetSignatureStatusesResultSchema: GenMessage<GetSignatureStatusesResult, {
1221
+ jsonType: GetSignatureStatusesResultJson;
1222
+ }>;
1223
+ /**
1224
+ * Current “height” (blocks below latest).
1225
+ *
1226
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetSlotHeightReply
1227
+ */
1228
+ export type GetSlotHeightReply = Message<'capabilities.blockchain.solana.v1alpha.GetSlotHeightReply'> & {
1229
+ /**
1230
+ * @generated from field: uint64 height = 1 [jstype = JS_NORMAL];
1231
+ */
1232
+ height: bigint;
1233
+ };
1234
+ /**
1235
+ * Current “height” (blocks below latest).
1236
+ *
1237
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetSlotHeightReply
1238
+ */
1239
+ export type GetSlotHeightReplyJson = {
1240
+ /**
1241
+ * @generated from field: uint64 height = 1 [jstype = JS_NORMAL];
1242
+ */
1243
+ height?: string;
1244
+ };
1245
+ /**
1246
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetSlotHeightReply.
1247
+ * Use `create(GetSlotHeightReplySchema)` to create a new message.
1248
+ */
1249
+ export declare const GetSlotHeightReplySchema: GenMessage<GetSlotHeightReply, {
1250
+ jsonType: GetSlotHeightReplyJson;
1251
+ }>;
1252
+ /**
1253
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetSlotHeightRequest
1254
+ */
1255
+ export type GetSlotHeightRequest = Message<'capabilities.blockchain.solana.v1alpha.GetSlotHeightRequest'> & {
1256
+ /**
1257
+ * read consistency
1258
+ *
1259
+ * @generated from field: capabilities.blockchain.solana.v1alpha.CommitmentType commitment = 1;
1260
+ */
1261
+ commitment: CommitmentType;
1262
+ };
1263
+ /**
1264
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetSlotHeightRequest
1265
+ */
1266
+ export type GetSlotHeightRequestJson = {
1267
+ /**
1268
+ * read consistency
1269
+ *
1270
+ * @generated from field: capabilities.blockchain.solana.v1alpha.CommitmentType commitment = 1;
1271
+ */
1272
+ commitment?: CommitmentTypeJson;
1273
+ };
1274
+ /**
1275
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetSlotHeightRequest.
1276
+ * Use `create(GetSlotHeightRequestSchema)` to create a new message.
1277
+ */
1278
+ export declare const GetSlotHeightRequestSchema: GenMessage<GetSlotHeightRequest, {
1279
+ jsonType: GetSlotHeightRequestJson;
1280
+ }>;
1281
+ /**
1282
+ * Message header counts.
1283
+ *
1284
+ * @generated from message capabilities.blockchain.solana.v1alpha.MessageHeader
1285
+ */
1286
+ export type MessageHeader = Message<'capabilities.blockchain.solana.v1alpha.MessageHeader'> & {
1287
+ /**
1288
+ * signer count
1289
+ *
1290
+ * @generated from field: uint32 num_required_signatures = 1;
1291
+ */
1292
+ numRequiredSignatures: number;
1293
+ /**
1294
+ * trailing signed RO
1295
+ *
1296
+ * @generated from field: uint32 num_readonly_signed_accounts = 2;
1297
+ */
1298
+ numReadonlySignedAccounts: number;
1299
+ /**
1300
+ * trailing unsigned RO
1301
+ *
1302
+ * @generated from field: uint32 num_readonly_unsigned_accounts = 3;
1303
+ */
1304
+ numReadonlyUnsignedAccounts: number;
1305
+ };
1306
+ /**
1307
+ * Message header counts.
1308
+ *
1309
+ * @generated from message capabilities.blockchain.solana.v1alpha.MessageHeader
1310
+ */
1311
+ export type MessageHeaderJson = {
1312
+ /**
1313
+ * signer count
1314
+ *
1315
+ * @generated from field: uint32 num_required_signatures = 1;
1316
+ */
1317
+ numRequiredSignatures?: number;
1318
+ /**
1319
+ * trailing signed RO
1320
+ *
1321
+ * @generated from field: uint32 num_readonly_signed_accounts = 2;
1322
+ */
1323
+ numReadonlySignedAccounts?: number;
1324
+ /**
1325
+ * trailing unsigned RO
1326
+ *
1327
+ * @generated from field: uint32 num_readonly_unsigned_accounts = 3;
1328
+ */
1329
+ numReadonlyUnsignedAccounts?: number;
1330
+ };
1331
+ /**
1332
+ * Describes the message capabilities.blockchain.solana.v1alpha.MessageHeader.
1333
+ * Use `create(MessageHeaderSchema)` to create a new message.
1334
+ */
1335
+ export declare const MessageHeaderSchema: GenMessage<MessageHeader, {
1336
+ jsonType: MessageHeaderJson;
1337
+ }>;
1338
+ /**
1339
+ * Parsed message (no address tables).
1340
+ *
1341
+ * @generated from message capabilities.blockchain.solana.v1alpha.ParsedMessage
1342
+ */
1343
+ export type ParsedMessage = Message<'capabilities.blockchain.solana.v1alpha.ParsedMessage'> & {
1344
+ /**
1345
+ * 32-byte Hash
1346
+ *
1347
+ * @generated from field: bytes recent_blockhash = 1;
1348
+ */
1349
+ recentBlockhash: Uint8Array;
1350
+ /**
1351
+ * list of 32-byte Pubkeys
1352
+ *
1353
+ * @generated from field: repeated bytes account_keys = 2;
1354
+ */
1355
+ accountKeys: Uint8Array[];
1356
+ /**
1357
+ * @generated from field: capabilities.blockchain.solana.v1alpha.MessageHeader header = 3;
1358
+ */
1359
+ header?: MessageHeader;
1360
+ /**
1361
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.CompiledInstruction instructions = 4;
1362
+ */
1363
+ instructions: CompiledInstruction[];
1364
+ };
1365
+ /**
1366
+ * Parsed message (no address tables).
1367
+ *
1368
+ * @generated from message capabilities.blockchain.solana.v1alpha.ParsedMessage
1369
+ */
1370
+ export type ParsedMessageJson = {
1371
+ /**
1372
+ * 32-byte Hash
1373
+ *
1374
+ * @generated from field: bytes recent_blockhash = 1;
1375
+ */
1376
+ recentBlockhash?: string;
1377
+ /**
1378
+ * list of 32-byte Pubkeys
1379
+ *
1380
+ * @generated from field: repeated bytes account_keys = 2;
1381
+ */
1382
+ accountKeys?: string[];
1383
+ /**
1384
+ * @generated from field: capabilities.blockchain.solana.v1alpha.MessageHeader header = 3;
1385
+ */
1386
+ header?: MessageHeaderJson;
1387
+ /**
1388
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.CompiledInstruction instructions = 4;
1389
+ */
1390
+ instructions?: CompiledInstructionJson[];
1391
+ };
1392
+ /**
1393
+ * Describes the message capabilities.blockchain.solana.v1alpha.ParsedMessage.
1394
+ * Use `create(ParsedMessageSchema)` to create a new message.
1395
+ */
1396
+ export declare const ParsedMessageSchema: GenMessage<ParsedMessage, {
1397
+ jsonType: ParsedMessageJson;
1398
+ }>;
1399
+ /**
1400
+ * Parsed transaction (signatures + message).
1401
+ *
1402
+ * @generated from message capabilities.blockchain.solana.v1alpha.ParsedTransaction
1403
+ */
1404
+ export type ParsedTransaction = Message<'capabilities.blockchain.solana.v1alpha.ParsedTransaction'> & {
1405
+ /**
1406
+ * 64-byte signatures
1407
+ *
1408
+ * @generated from field: repeated bytes signatures = 1;
1409
+ */
1410
+ signatures: Uint8Array[];
1411
+ /**
1412
+ * @generated from field: capabilities.blockchain.solana.v1alpha.ParsedMessage message = 2;
1413
+ */
1414
+ message?: ParsedMessage;
1415
+ };
1416
+ /**
1417
+ * Parsed transaction (signatures + message).
1418
+ *
1419
+ * @generated from message capabilities.blockchain.solana.v1alpha.ParsedTransaction
1420
+ */
1421
+ export type ParsedTransactionJson = {
1422
+ /**
1423
+ * 64-byte signatures
1424
+ *
1425
+ * @generated from field: repeated bytes signatures = 1;
1426
+ */
1427
+ signatures?: string[];
1428
+ /**
1429
+ * @generated from field: capabilities.blockchain.solana.v1alpha.ParsedMessage message = 2;
1430
+ */
1431
+ message?: ParsedMessageJson;
1432
+ };
1433
+ /**
1434
+ * Describes the message capabilities.blockchain.solana.v1alpha.ParsedTransaction.
1435
+ * Use `create(ParsedTransactionSchema)` to create a new message.
1436
+ */
1437
+ export declare const ParsedTransactionSchema: GenMessage<ParsedTransaction, {
1438
+ jsonType: ParsedTransactionJson;
1439
+ }>;
1440
+ /**
1441
+ * Token amount (UI-friendly).
1442
+ *
1443
+ * @generated from message capabilities.blockchain.solana.v1alpha.UiTokenAmount
1444
+ */
1445
+ export type UiTokenAmount = Message<'capabilities.blockchain.solana.v1alpha.UiTokenAmount'> & {
1446
+ /**
1447
+ * raw integer string
1448
+ *
1449
+ * @generated from field: string amount = 1;
1450
+ */
1451
+ amount: string;
1452
+ /**
1453
+ * mint decimals
1454
+ *
1455
+ * @generated from field: uint32 decimals = 2;
1456
+ */
1457
+ decimals: number;
1458
+ /**
1459
+ * amount / 10^decimals
1460
+ *
1461
+ * @generated from field: string ui_amount_string = 4;
1462
+ */
1463
+ uiAmountString: string;
1464
+ };
1465
+ /**
1466
+ * Token amount (UI-friendly).
1467
+ *
1468
+ * @generated from message capabilities.blockchain.solana.v1alpha.UiTokenAmount
1469
+ */
1470
+ export type UiTokenAmountJson = {
1471
+ /**
1472
+ * raw integer string
1473
+ *
1474
+ * @generated from field: string amount = 1;
1475
+ */
1476
+ amount?: string;
1477
+ /**
1478
+ * mint decimals
1479
+ *
1480
+ * @generated from field: uint32 decimals = 2;
1481
+ */
1482
+ decimals?: number;
1483
+ /**
1484
+ * amount / 10^decimals
1485
+ *
1486
+ * @generated from field: string ui_amount_string = 4;
1487
+ */
1488
+ uiAmountString?: string;
1489
+ };
1490
+ /**
1491
+ * Describes the message capabilities.blockchain.solana.v1alpha.UiTokenAmount.
1492
+ * Use `create(UiTokenAmountSchema)` to create a new message.
1493
+ */
1494
+ export declare const UiTokenAmountSchema: GenMessage<UiTokenAmount, {
1495
+ jsonType: UiTokenAmountJson;
1496
+ }>;
1497
+ /**
1498
+ * SPL token balance entry.
1499
+ *
1500
+ * @generated from message capabilities.blockchain.solana.v1alpha.TokenBalance
1501
+ */
1502
+ export type TokenBalance = Message<'capabilities.blockchain.solana.v1alpha.TokenBalance'> & {
1503
+ /**
1504
+ * index in account_keys
1505
+ *
1506
+ * @generated from field: uint32 account_index = 1;
1507
+ */
1508
+ accountIndex: number;
1509
+ /**
1510
+ * 32-byte owner (optional)
1511
+ *
1512
+ * @generated from field: optional bytes owner = 2;
1513
+ */
1514
+ owner?: Uint8Array;
1515
+ /**
1516
+ * 32-byte token program (optional)
1517
+ *
1518
+ * @generated from field: optional bytes program_id = 3;
1519
+ */
1520
+ programId?: Uint8Array;
1521
+ /**
1522
+ * 32-byte mint
1523
+ *
1524
+ * @generated from field: bytes mint = 4;
1525
+ */
1526
+ mint: Uint8Array;
1527
+ /**
1528
+ * formatted amounts
1529
+ *
1530
+ * @generated from field: capabilities.blockchain.solana.v1alpha.UiTokenAmount ui = 5;
1531
+ */
1532
+ ui?: UiTokenAmount;
1533
+ };
1534
+ /**
1535
+ * SPL token balance entry.
1536
+ *
1537
+ * @generated from message capabilities.blockchain.solana.v1alpha.TokenBalance
1538
+ */
1539
+ export type TokenBalanceJson = {
1540
+ /**
1541
+ * index in account_keys
1542
+ *
1543
+ * @generated from field: uint32 account_index = 1;
1544
+ */
1545
+ accountIndex?: number;
1546
+ /**
1547
+ * 32-byte owner (optional)
1548
+ *
1549
+ * @generated from field: optional bytes owner = 2;
1550
+ */
1551
+ owner?: string;
1552
+ /**
1553
+ * 32-byte token program (optional)
1554
+ *
1555
+ * @generated from field: optional bytes program_id = 3;
1556
+ */
1557
+ programId?: string;
1558
+ /**
1559
+ * 32-byte mint
1560
+ *
1561
+ * @generated from field: bytes mint = 4;
1562
+ */
1563
+ mint?: string;
1564
+ /**
1565
+ * formatted amounts
1566
+ *
1567
+ * @generated from field: capabilities.blockchain.solana.v1alpha.UiTokenAmount ui = 5;
1568
+ */
1569
+ ui?: UiTokenAmountJson;
1570
+ };
1571
+ /**
1572
+ * Describes the message capabilities.blockchain.solana.v1alpha.TokenBalance.
1573
+ * Use `create(TokenBalanceSchema)` to create a new message.
1574
+ */
1575
+ export declare const TokenBalanceSchema: GenMessage<TokenBalance, {
1576
+ jsonType: TokenBalanceJson;
1577
+ }>;
1578
+ /**
1579
+ * Inner instruction list at a given outer instruction index.
1580
+ *
1581
+ * @generated from message capabilities.blockchain.solana.v1alpha.InnerInstruction
1582
+ */
1583
+ export type InnerInstruction = Message<'capabilities.blockchain.solana.v1alpha.InnerInstruction'> & {
1584
+ /**
1585
+ * outer ix index
1586
+ *
1587
+ * @generated from field: uint32 index = 1;
1588
+ */
1589
+ index: number;
1590
+ /**
1591
+ * invoked ixs
1592
+ *
1593
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.CompiledInstruction instructions = 2;
1594
+ */
1595
+ instructions: CompiledInstruction[];
1596
+ };
1597
+ /**
1598
+ * Inner instruction list at a given outer instruction index.
1599
+ *
1600
+ * @generated from message capabilities.blockchain.solana.v1alpha.InnerInstruction
1601
+ */
1602
+ export type InnerInstructionJson = {
1603
+ /**
1604
+ * outer ix index
1605
+ *
1606
+ * @generated from field: uint32 index = 1;
1607
+ */
1608
+ index?: number;
1609
+ /**
1610
+ * invoked ixs
1611
+ *
1612
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.CompiledInstruction instructions = 2;
1613
+ */
1614
+ instructions?: CompiledInstructionJson[];
1615
+ };
1616
+ /**
1617
+ * Describes the message capabilities.blockchain.solana.v1alpha.InnerInstruction.
1618
+ * Use `create(InnerInstructionSchema)` to create a new message.
1619
+ */
1620
+ export declare const InnerInstructionSchema: GenMessage<InnerInstruction, {
1621
+ jsonType: InnerInstructionJson;
1622
+ }>;
1623
+ /**
1624
+ * Address table lookups expanded by loader.
1625
+ *
1626
+ * @generated from message capabilities.blockchain.solana.v1alpha.LoadedAddresses
1627
+ */
1628
+ export type LoadedAddresses = Message<'capabilities.blockchain.solana.v1alpha.LoadedAddresses'> & {
1629
+ /**
1630
+ * 32-byte Pubkeys
1631
+ *
1632
+ * @generated from field: repeated bytes readonly = 1;
1633
+ */
1634
+ readonly: Uint8Array[];
1635
+ /**
1636
+ * 32-byte Pubkeys
1637
+ *
1638
+ * @generated from field: repeated bytes writable = 2;
1639
+ */
1640
+ writable: Uint8Array[];
1641
+ };
1642
+ /**
1643
+ * Address table lookups expanded by loader.
1644
+ *
1645
+ * @generated from message capabilities.blockchain.solana.v1alpha.LoadedAddresses
1646
+ */
1647
+ export type LoadedAddressesJson = {
1648
+ /**
1649
+ * 32-byte Pubkeys
1650
+ *
1651
+ * @generated from field: repeated bytes readonly = 1;
1652
+ */
1653
+ readonly?: string[];
1654
+ /**
1655
+ * 32-byte Pubkeys
1656
+ *
1657
+ * @generated from field: repeated bytes writable = 2;
1658
+ */
1659
+ writable?: string[];
1660
+ };
1661
+ /**
1662
+ * Describes the message capabilities.blockchain.solana.v1alpha.LoadedAddresses.
1663
+ * Use `create(LoadedAddressesSchema)` to create a new message.
1664
+ */
1665
+ export declare const LoadedAddressesSchema: GenMessage<LoadedAddresses, {
1666
+ jsonType: LoadedAddressesJson;
1667
+ }>;
1668
+ /**
1669
+ * Compiled (program) instruction.
1670
+ *
1671
+ * @generated from message capabilities.blockchain.solana.v1alpha.CompiledInstruction
1672
+ */
1673
+ export type CompiledInstruction = Message<'capabilities.blockchain.solana.v1alpha.CompiledInstruction'> & {
1674
+ /**
1675
+ * index into account_keys
1676
+ *
1677
+ * @generated from field: uint32 program_id_index = 1;
1678
+ */
1679
+ programIdIndex: number;
1680
+ /**
1681
+ * indices into account_keys
1682
+ *
1683
+ * @generated from field: repeated uint32 accounts = 2;
1684
+ */
1685
+ accounts: number[];
1686
+ /**
1687
+ * program input bytes
1688
+ *
1689
+ * @generated from field: bytes data = 3;
1690
+ */
1691
+ data: Uint8Array;
1692
+ /**
1693
+ * if recorded by node
1694
+ *
1695
+ * @generated from field: uint32 stack_height = 4;
1696
+ */
1697
+ stackHeight: number;
1698
+ };
1699
+ /**
1700
+ * Compiled (program) instruction.
1701
+ *
1702
+ * @generated from message capabilities.blockchain.solana.v1alpha.CompiledInstruction
1703
+ */
1704
+ export type CompiledInstructionJson = {
1705
+ /**
1706
+ * index into account_keys
1707
+ *
1708
+ * @generated from field: uint32 program_id_index = 1;
1709
+ */
1710
+ programIdIndex?: number;
1711
+ /**
1712
+ * indices into account_keys
1713
+ *
1714
+ * @generated from field: repeated uint32 accounts = 2;
1715
+ */
1716
+ accounts?: number[];
1717
+ /**
1718
+ * program input bytes
1719
+ *
1720
+ * @generated from field: bytes data = 3;
1721
+ */
1722
+ data?: string;
1723
+ /**
1724
+ * if recorded by node
1725
+ *
1726
+ * @generated from field: uint32 stack_height = 4;
1727
+ */
1728
+ stackHeight?: number;
1729
+ };
1730
+ /**
1731
+ * Describes the message capabilities.blockchain.solana.v1alpha.CompiledInstruction.
1732
+ * Use `create(CompiledInstructionSchema)` to create a new message.
1733
+ */
1734
+ export declare const CompiledInstructionSchema: GenMessage<CompiledInstruction, {
1735
+ jsonType: CompiledInstructionJson;
1736
+ }>;
1737
+ /**
1738
+ * Raw bytes with encoding tag.
1739
+ *
1740
+ * @generated from message capabilities.blockchain.solana.v1alpha.Data
1741
+ */
1742
+ export type Data = Message<'capabilities.blockchain.solana.v1alpha.Data'> & {
1743
+ /**
1744
+ * raw bytes
1745
+ *
1746
+ * @generated from field: bytes content = 1;
1747
+ */
1748
+ content: Uint8Array;
1749
+ /**
1750
+ * how it was encoded originally
1751
+ *
1752
+ * @generated from field: capabilities.blockchain.solana.v1alpha.EncodingType encoding = 2;
1753
+ */
1754
+ encoding: EncodingType;
1755
+ };
1756
+ /**
1757
+ * Raw bytes with encoding tag.
1758
+ *
1759
+ * @generated from message capabilities.blockchain.solana.v1alpha.Data
1760
+ */
1761
+ export type DataJson = {
1762
+ /**
1763
+ * raw bytes
1764
+ *
1765
+ * @generated from field: bytes content = 1;
1766
+ */
1767
+ content?: string;
1768
+ /**
1769
+ * how it was encoded originally
1770
+ *
1771
+ * @generated from field: capabilities.blockchain.solana.v1alpha.EncodingType encoding = 2;
1772
+ */
1773
+ encoding?: EncodingTypeJson;
1774
+ };
1775
+ /**
1776
+ * Describes the message capabilities.blockchain.solana.v1alpha.Data.
1777
+ * Use `create(DataSchema)` to create a new message.
1778
+ */
1779
+ export declare const DataSchema: GenMessage<Data, {
1780
+ jsonType: DataJson;
1781
+ }>;
1782
+ /**
1783
+ * Program return data.
1784
+ *
1785
+ * @generated from message capabilities.blockchain.solana.v1alpha.ReturnData
1786
+ */
1787
+ export type ReturnData = Message<'capabilities.blockchain.solana.v1alpha.ReturnData'> & {
1788
+ /**
1789
+ * 32-byte Pubkey
1790
+ *
1791
+ * @generated from field: bytes program_id = 1;
1792
+ */
1793
+ programId: Uint8Array;
1794
+ /**
1795
+ * raw return bytes
1796
+ *
1797
+ * @generated from field: capabilities.blockchain.solana.v1alpha.Data data = 2;
1798
+ */
1799
+ data?: Data;
1800
+ };
1801
+ /**
1802
+ * Program return data.
1803
+ *
1804
+ * @generated from message capabilities.blockchain.solana.v1alpha.ReturnData
1805
+ */
1806
+ export type ReturnDataJson = {
1807
+ /**
1808
+ * 32-byte Pubkey
1809
+ *
1810
+ * @generated from field: bytes program_id = 1;
1811
+ */
1812
+ programId?: string;
1813
+ /**
1814
+ * raw return bytes
1815
+ *
1816
+ * @generated from field: capabilities.blockchain.solana.v1alpha.Data data = 2;
1817
+ */
1818
+ data?: DataJson;
1819
+ };
1820
+ /**
1821
+ * Describes the message capabilities.blockchain.solana.v1alpha.ReturnData.
1822
+ * Use `create(ReturnDataSchema)` to create a new message.
1823
+ */
1824
+ export declare const ReturnDataSchema: GenMessage<ReturnData, {
1825
+ jsonType: ReturnDataJson;
1826
+ }>;
1827
+ /**
1828
+ * Transaction execution metadata.
1829
+ *
1830
+ * @generated from message capabilities.blockchain.solana.v1alpha.TransactionMeta
1831
+ */
1832
+ export type TransactionMeta = Message<'capabilities.blockchain.solana.v1alpha.TransactionMeta'> & {
1833
+ /**
1834
+ * error JSON (empty on success)
1835
+ *
1836
+ * @generated from field: string err_json = 1;
1837
+ */
1838
+ errJson: string;
1839
+ /**
1840
+ * lamports
1841
+ *
1842
+ * @generated from field: uint64 fee = 2 [jstype = JS_NORMAL];
1843
+ */
1844
+ fee: bigint;
1845
+ /**
1846
+ * lamports per account
1847
+ *
1848
+ * @generated from field: repeated uint64 pre_balances = 3 [jstype = JS_NORMAL];
1849
+ */
1850
+ preBalances: bigint[];
1851
+ /**
1852
+ * lamports per account
1853
+ *
1854
+ * @generated from field: repeated uint64 post_balances = 4 [jstype = JS_NORMAL];
1855
+ */
1856
+ postBalances: bigint[];
1857
+ /**
1858
+ * runtime logs
1859
+ *
1860
+ * @generated from field: repeated string log_messages = 5;
1861
+ */
1862
+ logMessages: string[];
1863
+ /**
1864
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.TokenBalance pre_token_balances = 6;
1865
+ */
1866
+ preTokenBalances: TokenBalance[];
1867
+ /**
1868
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.TokenBalance post_token_balances = 7;
1869
+ */
1870
+ postTokenBalances: TokenBalance[];
1871
+ /**
1872
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.InnerInstruction inner_instructions = 8;
1873
+ */
1874
+ innerInstructions: InnerInstruction[];
1875
+ /**
1876
+ * @generated from field: capabilities.blockchain.solana.v1alpha.LoadedAddresses loaded_addresses = 9;
1877
+ */
1878
+ loadedAddresses?: LoadedAddresses;
1879
+ /**
1880
+ * @generated from field: capabilities.blockchain.solana.v1alpha.ReturnData return_data = 10;
1881
+ */
1882
+ returnData?: ReturnData;
1883
+ /**
1884
+ * CUs
1885
+ *
1886
+ * @generated from field: optional uint64 compute_units_consumed = 11 [jstype = JS_NORMAL];
1887
+ */
1888
+ computeUnitsConsumed?: bigint;
1889
+ };
1890
+ /**
1891
+ * Transaction execution metadata.
1892
+ *
1893
+ * @generated from message capabilities.blockchain.solana.v1alpha.TransactionMeta
1894
+ */
1895
+ export type TransactionMetaJson = {
1896
+ /**
1897
+ * error JSON (empty on success)
1898
+ *
1899
+ * @generated from field: string err_json = 1;
1900
+ */
1901
+ errJson?: string;
1902
+ /**
1903
+ * lamports
1904
+ *
1905
+ * @generated from field: uint64 fee = 2 [jstype = JS_NORMAL];
1906
+ */
1907
+ fee?: string;
1908
+ /**
1909
+ * lamports per account
1910
+ *
1911
+ * @generated from field: repeated uint64 pre_balances = 3 [jstype = JS_NORMAL];
1912
+ */
1913
+ preBalances?: string[];
1914
+ /**
1915
+ * lamports per account
1916
+ *
1917
+ * @generated from field: repeated uint64 post_balances = 4 [jstype = JS_NORMAL];
1918
+ */
1919
+ postBalances?: string[];
1920
+ /**
1921
+ * runtime logs
1922
+ *
1923
+ * @generated from field: repeated string log_messages = 5;
1924
+ */
1925
+ logMessages?: string[];
1926
+ /**
1927
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.TokenBalance pre_token_balances = 6;
1928
+ */
1929
+ preTokenBalances?: TokenBalanceJson[];
1930
+ /**
1931
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.TokenBalance post_token_balances = 7;
1932
+ */
1933
+ postTokenBalances?: TokenBalanceJson[];
1934
+ /**
1935
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.InnerInstruction inner_instructions = 8;
1936
+ */
1937
+ innerInstructions?: InnerInstructionJson[];
1938
+ /**
1939
+ * @generated from field: capabilities.blockchain.solana.v1alpha.LoadedAddresses loaded_addresses = 9;
1940
+ */
1941
+ loadedAddresses?: LoadedAddressesJson;
1942
+ /**
1943
+ * @generated from field: capabilities.blockchain.solana.v1alpha.ReturnData return_data = 10;
1944
+ */
1945
+ returnData?: ReturnDataJson;
1946
+ /**
1947
+ * CUs
1948
+ *
1949
+ * @generated from field: optional uint64 compute_units_consumed = 11 [jstype = JS_NORMAL];
1950
+ */
1951
+ computeUnitsConsumed?: string;
1952
+ };
1953
+ /**
1954
+ * Describes the message capabilities.blockchain.solana.v1alpha.TransactionMeta.
1955
+ * Use `create(TransactionMetaSchema)` to create a new message.
1956
+ */
1957
+ export declare const TransactionMetaSchema: GenMessage<TransactionMeta, {
1958
+ jsonType: TransactionMetaJson;
1959
+ }>;
1960
+ /**
1961
+ * Transaction envelope: raw bytes or parsed struct.
1962
+ *
1963
+ * @generated from message capabilities.blockchain.solana.v1alpha.TransactionEnvelope
1964
+ */
1965
+ export type TransactionEnvelope = Message<'capabilities.blockchain.solana.v1alpha.TransactionEnvelope'> & {
1966
+ /**
1967
+ * @generated from oneof capabilities.blockchain.solana.v1alpha.TransactionEnvelope.transaction
1968
+ */
1969
+ transaction: {
1970
+ /**
1971
+ * raw tx bytes (for RAW/base64)
1972
+ *
1973
+ * @generated from field: bytes raw = 1;
1974
+ */
1975
+ value: Uint8Array;
1976
+ case: 'raw';
1977
+ } | {
1978
+ /**
1979
+ * parsed tx (for JSON_PARSED)
1980
+ *
1981
+ * @generated from field: capabilities.blockchain.solana.v1alpha.ParsedTransaction parsed = 2;
1982
+ */
1983
+ value: ParsedTransaction;
1984
+ case: 'parsed';
1985
+ } | {
1986
+ case: undefined;
1987
+ value?: undefined;
1988
+ };
1989
+ };
1990
+ /**
1991
+ * Transaction envelope: raw bytes or parsed struct.
1992
+ *
1993
+ * @generated from message capabilities.blockchain.solana.v1alpha.TransactionEnvelope
1994
+ */
1995
+ export type TransactionEnvelopeJson = {
1996
+ /**
1997
+ * raw tx bytes (for RAW/base64)
1998
+ *
1999
+ * @generated from field: bytes raw = 1;
2000
+ */
2001
+ raw?: string;
2002
+ /**
2003
+ * parsed tx (for JSON_PARSED)
2004
+ *
2005
+ * @generated from field: capabilities.blockchain.solana.v1alpha.ParsedTransaction parsed = 2;
2006
+ */
2007
+ parsed?: ParsedTransactionJson;
2008
+ };
2009
+ /**
2010
+ * Describes the message capabilities.blockchain.solana.v1alpha.TransactionEnvelope.
2011
+ * Use `create(TransactionEnvelopeSchema)` to create a new message.
2012
+ */
2013
+ export declare const TransactionEnvelopeSchema: GenMessage<TransactionEnvelope, {
2014
+ jsonType: TransactionEnvelopeJson;
2015
+ }>;
2016
+ /**
2017
+ * GetTransaction reply.
2018
+ *
2019
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetTransactionReply
2020
+ */
2021
+ export type GetTransactionReply = Message<'capabilities.blockchain.solana.v1alpha.GetTransactionReply'> & {
2022
+ /**
2023
+ * processed slot
2024
+ *
2025
+ * @generated from field: uint64 slot = 1 [jstype = JS_NORMAL];
2026
+ */
2027
+ slot: bigint;
2028
+ /**
2029
+ * unix seconds
2030
+ *
2031
+ * @generated from field: optional int64 block_time = 2 [jstype = JS_NORMAL];
2032
+ */
2033
+ blockTime?: bigint;
2034
+ /**
2035
+ * tx bytes or parsed
2036
+ *
2037
+ * @generated from field: optional capabilities.blockchain.solana.v1alpha.TransactionEnvelope transaction = 3;
2038
+ */
2039
+ transaction?: TransactionEnvelope;
2040
+ /**
2041
+ * may be omitted by node
2042
+ *
2043
+ * @generated from field: optional capabilities.blockchain.solana.v1alpha.TransactionMeta meta = 4;
2044
+ */
2045
+ meta?: TransactionMeta;
2046
+ };
2047
+ /**
2048
+ * GetTransaction reply.
2049
+ *
2050
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetTransactionReply
2051
+ */
2052
+ export type GetTransactionReplyJson = {
2053
+ /**
2054
+ * processed slot
2055
+ *
2056
+ * @generated from field: uint64 slot = 1 [jstype = JS_NORMAL];
2057
+ */
2058
+ slot?: string;
2059
+ /**
2060
+ * unix seconds
2061
+ *
2062
+ * @generated from field: optional int64 block_time = 2 [jstype = JS_NORMAL];
2063
+ */
2064
+ blockTime?: string;
2065
+ /**
2066
+ * tx bytes or parsed
2067
+ *
2068
+ * @generated from field: optional capabilities.blockchain.solana.v1alpha.TransactionEnvelope transaction = 3;
2069
+ */
2070
+ transaction?: TransactionEnvelopeJson;
2071
+ /**
2072
+ * may be omitted by node
2073
+ *
2074
+ * @generated from field: optional capabilities.blockchain.solana.v1alpha.TransactionMeta meta = 4;
2075
+ */
2076
+ meta?: TransactionMetaJson;
2077
+ };
2078
+ /**
2079
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetTransactionReply.
2080
+ * Use `create(GetTransactionReplySchema)` to create a new message.
2081
+ */
2082
+ export declare const GetTransactionReplySchema: GenMessage<GetTransactionReply, {
2083
+ jsonType: GetTransactionReplyJson;
2084
+ }>;
2085
+ /**
2086
+ * GetTransaction request.
2087
+ *
2088
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetTransactionRequest
2089
+ */
2090
+ export type GetTransactionRequest = Message<'capabilities.blockchain.solana.v1alpha.GetTransactionRequest'> & {
2091
+ /**
2092
+ * 64-byte signature
2093
+ *
2094
+ * @generated from field: bytes signature = 1;
2095
+ */
2096
+ signature: Uint8Array;
2097
+ };
2098
+ /**
2099
+ * GetTransaction request.
2100
+ *
2101
+ * @generated from message capabilities.blockchain.solana.v1alpha.GetTransactionRequest
2102
+ */
2103
+ export type GetTransactionRequestJson = {
2104
+ /**
2105
+ * 64-byte signature
2106
+ *
2107
+ * @generated from field: bytes signature = 1;
2108
+ */
2109
+ signature?: string;
2110
+ };
2111
+ /**
2112
+ * Describes the message capabilities.blockchain.solana.v1alpha.GetTransactionRequest.
2113
+ * Use `create(GetTransactionRequestSchema)` to create a new message.
2114
+ */
2115
+ export declare const GetTransactionRequestSchema: GenMessage<GetTransactionRequest, {
2116
+ jsonType: GetTransactionRequestJson;
2117
+ }>;
2118
+ /**
2119
+ * Simulation options.
2120
+ *
2121
+ * @generated from message capabilities.blockchain.solana.v1alpha.SimulateTXOpts
2122
+ */
2123
+ export type SimulateTXOpts = Message<'capabilities.blockchain.solana.v1alpha.SimulateTXOpts'> & {
2124
+ /**
2125
+ * verify sigs
2126
+ *
2127
+ * @generated from field: bool sig_verify = 1;
2128
+ */
2129
+ sigVerify: boolean;
2130
+ /**
2131
+ * read consistency
2132
+ *
2133
+ * @generated from field: capabilities.blockchain.solana.v1alpha.CommitmentType commitment = 2;
2134
+ */
2135
+ commitment: CommitmentType;
2136
+ /**
2137
+ * refresh blockhash
2138
+ *
2139
+ * @generated from field: bool replace_recent_blockhash = 3;
2140
+ */
2141
+ replaceRecentBlockhash: boolean;
2142
+ /**
2143
+ * return accounts
2144
+ *
2145
+ * @generated from field: capabilities.blockchain.solana.v1alpha.SimulateTransactionAccountsOpts accounts = 4;
2146
+ */
2147
+ accounts?: SimulateTransactionAccountsOpts;
2148
+ };
2149
+ /**
2150
+ * Simulation options.
2151
+ *
2152
+ * @generated from message capabilities.blockchain.solana.v1alpha.SimulateTXOpts
2153
+ */
2154
+ export type SimulateTXOptsJson = {
2155
+ /**
2156
+ * verify sigs
2157
+ *
2158
+ * @generated from field: bool sig_verify = 1;
2159
+ */
2160
+ sigVerify?: boolean;
2161
+ /**
2162
+ * read consistency
2163
+ *
2164
+ * @generated from field: capabilities.blockchain.solana.v1alpha.CommitmentType commitment = 2;
2165
+ */
2166
+ commitment?: CommitmentTypeJson;
2167
+ /**
2168
+ * refresh blockhash
2169
+ *
2170
+ * @generated from field: bool replace_recent_blockhash = 3;
2171
+ */
2172
+ replaceRecentBlockhash?: boolean;
2173
+ /**
2174
+ * return accounts
2175
+ *
2176
+ * @generated from field: capabilities.blockchain.solana.v1alpha.SimulateTransactionAccountsOpts accounts = 4;
2177
+ */
2178
+ accounts?: SimulateTransactionAccountsOptsJson;
2179
+ };
2180
+ /**
2181
+ * Describes the message capabilities.blockchain.solana.v1alpha.SimulateTXOpts.
2182
+ * Use `create(SimulateTXOptsSchema)` to create a new message.
2183
+ */
2184
+ export declare const SimulateTXOptsSchema: GenMessage<SimulateTXOpts, {
2185
+ jsonType: SimulateTXOptsJson;
2186
+ }>;
2187
+ /**
2188
+ * Simulation result.
2189
+ *
2190
+ * @generated from message capabilities.blockchain.solana.v1alpha.SimulateTXReply
2191
+ */
2192
+ export type SimulateTXReply = Message<'capabilities.blockchain.solana.v1alpha.SimulateTXReply'> & {
2193
+ /**
2194
+ * empty on success
2195
+ *
2196
+ * @generated from field: string err = 1;
2197
+ */
2198
+ err: string;
2199
+ /**
2200
+ * runtime logs
2201
+ *
2202
+ * @generated from field: repeated string logs = 2;
2203
+ */
2204
+ logs: string[];
2205
+ /**
2206
+ * returned accounts
2207
+ *
2208
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.Account accounts = 3;
2209
+ */
2210
+ accounts: Account[];
2211
+ /**
2212
+ * CUs
2213
+ *
2214
+ * @generated from field: uint64 units_consumed = 4 [jstype = JS_NORMAL];
2215
+ */
2216
+ unitsConsumed: bigint;
2217
+ };
2218
+ /**
2219
+ * Simulation result.
2220
+ *
2221
+ * @generated from message capabilities.blockchain.solana.v1alpha.SimulateTXReply
2222
+ */
2223
+ export type SimulateTXReplyJson = {
2224
+ /**
2225
+ * empty on success
2226
+ *
2227
+ * @generated from field: string err = 1;
2228
+ */
2229
+ err?: string;
2230
+ /**
2231
+ * runtime logs
2232
+ *
2233
+ * @generated from field: repeated string logs = 2;
2234
+ */
2235
+ logs?: string[];
2236
+ /**
2237
+ * returned accounts
2238
+ *
2239
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.Account accounts = 3;
2240
+ */
2241
+ accounts?: AccountJson[];
2242
+ /**
2243
+ * CUs
2244
+ *
2245
+ * @generated from field: uint64 units_consumed = 4 [jstype = JS_NORMAL];
2246
+ */
2247
+ unitsConsumed?: string;
2248
+ };
2249
+ /**
2250
+ * Describes the message capabilities.blockchain.solana.v1alpha.SimulateTXReply.
2251
+ * Use `create(SimulateTXReplySchema)` to create a new message.
2252
+ */
2253
+ export declare const SimulateTXReplySchema: GenMessage<SimulateTXReply, {
2254
+ jsonType: SimulateTXReplyJson;
2255
+ }>;
2256
+ /**
2257
+ * Simulation request.
2258
+ *
2259
+ * @generated from message capabilities.blockchain.solana.v1alpha.SimulateTXRequest
2260
+ */
2261
+ export type SimulateTXRequest = Message<'capabilities.blockchain.solana.v1alpha.SimulateTXRequest'> & {
2262
+ /**
2263
+ * 32-byte program id (target)
2264
+ *
2265
+ * @generated from field: bytes receiver = 1;
2266
+ */
2267
+ receiver: Uint8Array;
2268
+ /**
2269
+ * base64/base58 tx
2270
+ *
2271
+ * @generated from field: string encoded_transaction = 2;
2272
+ */
2273
+ encodedTransaction: string;
2274
+ /**
2275
+ * @generated from field: capabilities.blockchain.solana.v1alpha.SimulateTXOpts opts = 3;
2276
+ */
2277
+ opts?: SimulateTXOpts;
2278
+ };
2279
+ /**
2280
+ * Simulation request.
2281
+ *
2282
+ * @generated from message capabilities.blockchain.solana.v1alpha.SimulateTXRequest
2283
+ */
2284
+ export type SimulateTXRequestJson = {
2285
+ /**
2286
+ * 32-byte program id (target)
2287
+ *
2288
+ * @generated from field: bytes receiver = 1;
2289
+ */
2290
+ receiver?: string;
2291
+ /**
2292
+ * base64/base58 tx
2293
+ *
2294
+ * @generated from field: string encoded_transaction = 2;
2295
+ */
2296
+ encodedTransaction?: string;
2297
+ /**
2298
+ * @generated from field: capabilities.blockchain.solana.v1alpha.SimulateTXOpts opts = 3;
2299
+ */
2300
+ opts?: SimulateTXOptsJson;
2301
+ };
2302
+ /**
2303
+ * Describes the message capabilities.blockchain.solana.v1alpha.SimulateTXRequest.
2304
+ * Use `create(SimulateTXRequestSchema)` to create a new message.
2305
+ */
2306
+ export declare const SimulateTXRequestSchema: GenMessage<SimulateTXRequest, {
2307
+ jsonType: SimulateTXRequestJson;
2308
+ }>;
2309
+ /**
2310
+ * Accounts to return during simulation.
2311
+ *
2312
+ * @generated from message capabilities.blockchain.solana.v1alpha.SimulateTransactionAccountsOpts
2313
+ */
2314
+ export type SimulateTransactionAccountsOpts = Message<'capabilities.blockchain.solana.v1alpha.SimulateTransactionAccountsOpts'> & {
2315
+ /**
2316
+ * account data encoding
2317
+ *
2318
+ * @generated from field: capabilities.blockchain.solana.v1alpha.EncodingType encoding = 1;
2319
+ */
2320
+ encoding: EncodingType;
2321
+ /**
2322
+ * 32-byte Pubkeys
2323
+ *
2324
+ * @generated from field: repeated bytes addresses = 2;
2325
+ */
2326
+ addresses: Uint8Array[];
2327
+ };
2328
+ /**
2329
+ * Accounts to return during simulation.
2330
+ *
2331
+ * @generated from message capabilities.blockchain.solana.v1alpha.SimulateTransactionAccountsOpts
2332
+ */
2333
+ export type SimulateTransactionAccountsOptsJson = {
2334
+ /**
2335
+ * account data encoding
2336
+ *
2337
+ * @generated from field: capabilities.blockchain.solana.v1alpha.EncodingType encoding = 1;
2338
+ */
2339
+ encoding?: EncodingTypeJson;
2340
+ /**
2341
+ * 32-byte Pubkeys
2342
+ *
2343
+ * @generated from field: repeated bytes addresses = 2;
2344
+ */
2345
+ addresses?: string[];
2346
+ };
2347
+ /**
2348
+ * Describes the message capabilities.blockchain.solana.v1alpha.SimulateTransactionAccountsOpts.
2349
+ * Use `create(SimulateTransactionAccountsOptsSchema)` to create a new message.
2350
+ */
2351
+ export declare const SimulateTransactionAccountsOptsSchema: GenMessage<SimulateTransactionAccountsOpts, {
2352
+ jsonType: SimulateTransactionAccountsOptsJson;
2353
+ }>;
2354
+ /**
2355
+ * @generated from message capabilities.blockchain.solana.v1alpha.ValueComparator
2356
+ */
2357
+ export type ValueComparator = Message<'capabilities.blockchain.solana.v1alpha.ValueComparator'> & {
2358
+ /**
2359
+ * @generated from field: bytes value = 1;
2360
+ */
2361
+ value: Uint8Array;
2362
+ /**
2363
+ * @generated from field: capabilities.blockchain.solana.v1alpha.ComparisonOperator operator = 2;
2364
+ */
2365
+ operator: ComparisonOperator;
2366
+ };
2367
+ /**
2368
+ * @generated from message capabilities.blockchain.solana.v1alpha.ValueComparator
2369
+ */
2370
+ export type ValueComparatorJson = {
2371
+ /**
2372
+ * @generated from field: bytes value = 1;
2373
+ */
2374
+ value?: string;
2375
+ /**
2376
+ * @generated from field: capabilities.blockchain.solana.v1alpha.ComparisonOperator operator = 2;
2377
+ */
2378
+ operator?: ComparisonOperatorJson;
2379
+ };
2380
+ /**
2381
+ * Describes the message capabilities.blockchain.solana.v1alpha.ValueComparator.
2382
+ * Use `create(ValueComparatorSchema)` to create a new message.
2383
+ */
2384
+ export declare const ValueComparatorSchema: GenMessage<ValueComparator, {
2385
+ jsonType: ValueComparatorJson;
2386
+ }>;
2387
+ /**
2388
+ * @generated from message capabilities.blockchain.solana.v1alpha.SubkeyConfig
2389
+ */
2390
+ export type SubkeyConfig = Message<'capabilities.blockchain.solana.v1alpha.SubkeyConfig'> & {
2391
+ /**
2392
+ * @generated from field: repeated string path = 1;
2393
+ */
2394
+ path: string[];
2395
+ /**
2396
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.ValueComparator comparers = 2;
2397
+ */
2398
+ comparers: ValueComparator[];
2399
+ };
2400
+ /**
2401
+ * @generated from message capabilities.blockchain.solana.v1alpha.SubkeyConfig
2402
+ */
2403
+ export type SubkeyConfigJson = {
2404
+ /**
2405
+ * @generated from field: repeated string path = 1;
2406
+ */
2407
+ path?: string[];
2408
+ /**
2409
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.ValueComparator comparers = 2;
2410
+ */
2411
+ comparers?: ValueComparatorJson[];
2412
+ };
2413
+ /**
2414
+ * Describes the message capabilities.blockchain.solana.v1alpha.SubkeyConfig.
2415
+ * Use `create(SubkeyConfigSchema)` to create a new message.
2416
+ */
2417
+ export declare const SubkeyConfigSchema: GenMessage<SubkeyConfig, {
2418
+ jsonType: SubkeyConfigJson;
2419
+ }>;
2420
+ /**
2421
+ * @generated from message capabilities.blockchain.solana.v1alpha.CPIFilterConfig
2422
+ */
2423
+ export type CPIFilterConfig = Message<'capabilities.blockchain.solana.v1alpha.CPIFilterConfig'> & {
14
2424
  /**
15
- * max CUs (approx per-tx limit)
2425
+ * @generated from field: bytes dest_address = 1;
2426
+ */
2427
+ destAddress: Uint8Array;
2428
+ /**
2429
+ * @generated from field: bytes method_name = 2;
2430
+ */
2431
+ methodName: Uint8Array;
2432
+ };
2433
+ /**
2434
+ * @generated from message capabilities.blockchain.solana.v1alpha.CPIFilterConfig
2435
+ */
2436
+ export type CPIFilterConfigJson = {
2437
+ /**
2438
+ * @generated from field: bytes dest_address = 1;
2439
+ */
2440
+ destAddress?: string;
2441
+ /**
2442
+ * @generated from field: bytes method_name = 2;
2443
+ */
2444
+ methodName?: string;
2445
+ };
2446
+ /**
2447
+ * Describes the message capabilities.blockchain.solana.v1alpha.CPIFilterConfig.
2448
+ * Use `create(CPIFilterConfigSchema)` to create a new message.
2449
+ */
2450
+ export declare const CPIFilterConfigSchema: GenMessage<CPIFilterConfig, {
2451
+ jsonType: CPIFilterConfigJson;
2452
+ }>;
2453
+ /**
2454
+ * @generated from message capabilities.blockchain.solana.v1alpha.FilterLogTriggerRequest
2455
+ */
2456
+ export type FilterLogTriggerRequest = Message<'capabilities.blockchain.solana.v1alpha.FilterLogTriggerRequest'> & {
2457
+ /**
2458
+ * @generated from field: string name = 1;
2459
+ */
2460
+ name: string;
2461
+ /**
2462
+ * Solana PublicKey (32 bytes)
16
2463
  *
17
- * @generated from field: uint32 compute_limit = 1;
2464
+ * @generated from field: bytes address = 2;
18
2465
  */
19
- computeLimit: number;
2466
+ address: Uint8Array;
2467
+ /**
2468
+ * @generated from field: string event_name = 3;
2469
+ */
2470
+ eventName: string;
2471
+ /**
2472
+ * @generated from field: bytes contract_idl_json = 4;
2473
+ */
2474
+ contractIdlJson: Uint8Array;
2475
+ /**
2476
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.SubkeyConfig subkeys = 5;
2477
+ */
2478
+ subkeys: SubkeyConfig[];
2479
+ /**
2480
+ * @generated from field: optional capabilities.blockchain.solana.v1alpha.CPIFilterConfig cpi_filter_config = 6;
2481
+ */
2482
+ cpiFilterConfig?: CPIFilterConfig;
20
2483
  };
21
2484
  /**
22
- * Compute budget configuration when submitting txs.
23
- *
24
- * @generated from message capabilities.blockchain.solana.v1alpha.ComputeConfig
2485
+ * @generated from message capabilities.blockchain.solana.v1alpha.FilterLogTriggerRequest
25
2486
  */
26
- export type ComputeConfigJson = {
2487
+ export type FilterLogTriggerRequestJson = {
27
2488
  /**
28
- * max CUs (approx per-tx limit)
2489
+ * @generated from field: string name = 1;
2490
+ */
2491
+ name?: string;
2492
+ /**
2493
+ * Solana PublicKey (32 bytes)
29
2494
  *
30
- * @generated from field: uint32 compute_limit = 1;
2495
+ * @generated from field: bytes address = 2;
31
2496
  */
32
- computeLimit?: number;
2497
+ address?: string;
2498
+ /**
2499
+ * @generated from field: string event_name = 3;
2500
+ */
2501
+ eventName?: string;
2502
+ /**
2503
+ * @generated from field: bytes contract_idl_json = 4;
2504
+ */
2505
+ contractIdlJson?: string;
2506
+ /**
2507
+ * @generated from field: repeated capabilities.blockchain.solana.v1alpha.SubkeyConfig subkeys = 5;
2508
+ */
2509
+ subkeys?: SubkeyConfigJson[];
2510
+ /**
2511
+ * @generated from field: optional capabilities.blockchain.solana.v1alpha.CPIFilterConfig cpi_filter_config = 6;
2512
+ */
2513
+ cpiFilterConfig?: CPIFilterConfigJson;
33
2514
  };
34
2515
  /**
35
- * Describes the message capabilities.blockchain.solana.v1alpha.ComputeConfig.
36
- * Use `create(ComputeConfigSchema)` to create a new message.
2516
+ * Describes the message capabilities.blockchain.solana.v1alpha.FilterLogTriggerRequest.
2517
+ * Use `create(FilterLogTriggerRequestSchema)` to create a new message.
37
2518
  */
38
- export declare const ComputeConfigSchema: GenMessage<ComputeConfig, {
39
- jsonType: ComputeConfigJson;
2519
+ export declare const FilterLogTriggerRequestSchema: GenMessage<FilterLogTriggerRequest, {
2520
+ jsonType: FilterLogTriggerRequestJson;
2521
+ }>;
2522
+ /**
2523
+ * @generated from message capabilities.blockchain.solana.v1alpha.Log
2524
+ */
2525
+ export type Log = Message<'capabilities.blockchain.solana.v1alpha.Log'> & {
2526
+ /**
2527
+ * Chain identifier
2528
+ *
2529
+ * @generated from field: string chain_id = 1;
2530
+ */
2531
+ chainId: string;
2532
+ /**
2533
+ * Index of the log within the block
2534
+ *
2535
+ * @generated from field: int64 log_index = 2 [jstype = JS_NORMAL];
2536
+ */
2537
+ logIndex: bigint;
2538
+ /**
2539
+ * 32-byte block hash
2540
+ *
2541
+ * @generated from field: bytes block_hash = 3;
2542
+ */
2543
+ blockHash: Uint8Array;
2544
+ /**
2545
+ * Block/slot number
2546
+ *
2547
+ * @generated from field: int64 block_number = 4 [jstype = JS_NORMAL];
2548
+ */
2549
+ blockNumber: bigint;
2550
+ /**
2551
+ * Unix timestamp of the block
2552
+ *
2553
+ * @generated from field: uint64 block_timestamp = 5 [jstype = JS_NORMAL];
2554
+ */
2555
+ blockTimestamp: bigint;
2556
+ /**
2557
+ * 32-byte program PublicKey
2558
+ *
2559
+ * @generated from field: bytes address = 6;
2560
+ */
2561
+ address: Uint8Array;
2562
+ /**
2563
+ * 8-byte event signature
2564
+ *
2565
+ * @generated from field: bytes event_sig = 7;
2566
+ */
2567
+ eventSig: Uint8Array;
2568
+ /**
2569
+ * 64-byte transaction signature
2570
+ *
2571
+ * @generated from field: bytes tx_hash = 8;
2572
+ */
2573
+ txHash: Uint8Array;
2574
+ /**
2575
+ * Decoded event data
2576
+ *
2577
+ * @generated from field: bytes data = 9;
2578
+ */
2579
+ data: Uint8Array;
2580
+ /**
2581
+ * Sequence number for ordering
2582
+ *
2583
+ * @generated from field: int64 sequence_num = 10 [jstype = JS_NORMAL];
2584
+ */
2585
+ sequenceNum: bigint;
2586
+ /**
2587
+ * Error message if log processing failed
2588
+ *
2589
+ * @generated from field: optional string error = 11;
2590
+ */
2591
+ error?: string;
2592
+ };
2593
+ /**
2594
+ * @generated from message capabilities.blockchain.solana.v1alpha.Log
2595
+ */
2596
+ export type LogJson = {
2597
+ /**
2598
+ * Chain identifier
2599
+ *
2600
+ * @generated from field: string chain_id = 1;
2601
+ */
2602
+ chainId?: string;
2603
+ /**
2604
+ * Index of the log within the block
2605
+ *
2606
+ * @generated from field: int64 log_index = 2 [jstype = JS_NORMAL];
2607
+ */
2608
+ logIndex?: string;
2609
+ /**
2610
+ * 32-byte block hash
2611
+ *
2612
+ * @generated from field: bytes block_hash = 3;
2613
+ */
2614
+ blockHash?: string;
2615
+ /**
2616
+ * Block/slot number
2617
+ *
2618
+ * @generated from field: int64 block_number = 4 [jstype = JS_NORMAL];
2619
+ */
2620
+ blockNumber?: string;
2621
+ /**
2622
+ * Unix timestamp of the block
2623
+ *
2624
+ * @generated from field: uint64 block_timestamp = 5 [jstype = JS_NORMAL];
2625
+ */
2626
+ blockTimestamp?: string;
2627
+ /**
2628
+ * 32-byte program PublicKey
2629
+ *
2630
+ * @generated from field: bytes address = 6;
2631
+ */
2632
+ address?: string;
2633
+ /**
2634
+ * 8-byte event signature
2635
+ *
2636
+ * @generated from field: bytes event_sig = 7;
2637
+ */
2638
+ eventSig?: string;
2639
+ /**
2640
+ * 64-byte transaction signature
2641
+ *
2642
+ * @generated from field: bytes tx_hash = 8;
2643
+ */
2644
+ txHash?: string;
2645
+ /**
2646
+ * Decoded event data
2647
+ *
2648
+ * @generated from field: bytes data = 9;
2649
+ */
2650
+ data?: string;
2651
+ /**
2652
+ * Sequence number for ordering
2653
+ *
2654
+ * @generated from field: int64 sequence_num = 10 [jstype = JS_NORMAL];
2655
+ */
2656
+ sequenceNum?: string;
2657
+ /**
2658
+ * Error message if log processing failed
2659
+ *
2660
+ * @generated from field: optional string error = 11;
2661
+ */
2662
+ error?: string;
2663
+ };
2664
+ /**
2665
+ * Describes the message capabilities.blockchain.solana.v1alpha.Log.
2666
+ * Use `create(LogSchema)` to create a new message.
2667
+ */
2668
+ export declare const LogSchema: GenMessage<Log, {
2669
+ jsonType: LogJson;
40
2670
  }>;
41
2671
  /**
42
2672
  * All metas are non-signers.
@@ -197,6 +2827,129 @@ export type WriteReportReplyJson = {
197
2827
  export declare const WriteReportReplySchema: GenMessage<WriteReportReply, {
198
2828
  jsonType: WriteReportReplyJson;
199
2829
  }>;
2830
+ /**
2831
+ * Account/tx data encodings.
2832
+ *
2833
+ * @generated from enum capabilities.blockchain.solana.v1alpha.EncodingType
2834
+ */
2835
+ export declare enum EncodingType {
2836
+ /**
2837
+ * @generated from enum value: ENCODING_TYPE_NONE = 0;
2838
+ */
2839
+ NONE = 0,
2840
+ /**
2841
+ * for data <129 bytes
2842
+ *
2843
+ * @generated from enum value: ENCODING_TYPE_BASE58 = 1;
2844
+ */
2845
+ BASE58 = 1,
2846
+ /**
2847
+ * any size
2848
+ *
2849
+ * @generated from enum value: ENCODING_TYPE_BASE64 = 2;
2850
+ */
2851
+ BASE64 = 2,
2852
+ /**
2853
+ * zstd-compressed, base64-wrapped
2854
+ *
2855
+ * @generated from enum value: ENCODING_TYPE_BASE64_ZSTD = 3;
2856
+ */
2857
+ BASE64_ZSTD = 3,
2858
+ /**
2859
+ * program parsers; fallback to base64 if unknown
2860
+ *
2861
+ * @generated from enum value: ENCODING_TYPE_JSON_PARSED = 4;
2862
+ */
2863
+ JSON_PARSED = 4,
2864
+ /**
2865
+ * raw JSON (rare; prefer JSON_PARSED)
2866
+ *
2867
+ * @generated from enum value: ENCODING_TYPE_JSON = 5;
2868
+ */
2869
+ JSON = 5
2870
+ }
2871
+ /**
2872
+ * Account/tx data encodings.
2873
+ *
2874
+ * @generated from enum capabilities.blockchain.solana.v1alpha.EncodingType
2875
+ */
2876
+ export type EncodingTypeJson = 'ENCODING_TYPE_NONE' | 'ENCODING_TYPE_BASE58' | 'ENCODING_TYPE_BASE64' | 'ENCODING_TYPE_BASE64_ZSTD' | 'ENCODING_TYPE_JSON_PARSED' | 'ENCODING_TYPE_JSON';
2877
+ /**
2878
+ * Describes the enum capabilities.blockchain.solana.v1alpha.EncodingType.
2879
+ */
2880
+ export declare const EncodingTypeSchema: GenEnum<EncodingType, EncodingTypeJson>;
2881
+ /**
2882
+ * Read consistency of queried state.
2883
+ *
2884
+ * @generated from enum capabilities.blockchain.solana.v1alpha.CommitmentType
2885
+ */
2886
+ export declare enum CommitmentType {
2887
+ /**
2888
+ * @generated from enum value: COMMITMENT_TYPE_NONE = 0;
2889
+ */
2890
+ NONE = 0,
2891
+ /**
2892
+ * cluster-finalized
2893
+ *
2894
+ * @generated from enum value: COMMITMENT_TYPE_FINALIZED = 1;
2895
+ */
2896
+ FINALIZED = 1,
2897
+ /**
2898
+ * voted by supermajority
2899
+ *
2900
+ * @generated from enum value: COMMITMENT_TYPE_CONFIRMED = 2;
2901
+ */
2902
+ CONFIRMED = 2,
2903
+ /**
2904
+ * node’s latest
2905
+ *
2906
+ * @generated from enum value: COMMITMENT_TYPE_PROCESSED = 3;
2907
+ */
2908
+ PROCESSED = 3
2909
+ }
2910
+ /**
2911
+ * Read consistency of queried state.
2912
+ *
2913
+ * @generated from enum capabilities.blockchain.solana.v1alpha.CommitmentType
2914
+ */
2915
+ export type CommitmentTypeJson = 'COMMITMENT_TYPE_NONE' | 'COMMITMENT_TYPE_FINALIZED' | 'COMMITMENT_TYPE_CONFIRMED' | 'COMMITMENT_TYPE_PROCESSED';
2916
+ /**
2917
+ * Describes the enum capabilities.blockchain.solana.v1alpha.CommitmentType.
2918
+ */
2919
+ export declare const CommitmentTypeSchema: GenEnum<CommitmentType, CommitmentTypeJson>;
2920
+ /**
2921
+ * Cluster confirmation status of a tx/signature.
2922
+ *
2923
+ * @generated from enum capabilities.blockchain.solana.v1alpha.ConfirmationStatusType
2924
+ */
2925
+ export declare enum ConfirmationStatusType {
2926
+ /**
2927
+ * @generated from enum value: CONFIRMATION_STATUS_TYPE_NONE = 0;
2928
+ */
2929
+ NONE = 0,
2930
+ /**
2931
+ * @generated from enum value: CONFIRMATION_STATUS_TYPE_PROCESSED = 1;
2932
+ */
2933
+ PROCESSED = 1,
2934
+ /**
2935
+ * @generated from enum value: CONFIRMATION_STATUS_TYPE_CONFIRMED = 2;
2936
+ */
2937
+ CONFIRMED = 2,
2938
+ /**
2939
+ * @generated from enum value: CONFIRMATION_STATUS_TYPE_FINALIZED = 3;
2940
+ */
2941
+ FINALIZED = 3
2942
+ }
2943
+ /**
2944
+ * Cluster confirmation status of a tx/signature.
2945
+ *
2946
+ * @generated from enum capabilities.blockchain.solana.v1alpha.ConfirmationStatusType
2947
+ */
2948
+ export type ConfirmationStatusTypeJson = 'CONFIRMATION_STATUS_TYPE_NONE' | 'CONFIRMATION_STATUS_TYPE_PROCESSED' | 'CONFIRMATION_STATUS_TYPE_CONFIRMED' | 'CONFIRMATION_STATUS_TYPE_FINALIZED';
2949
+ /**
2950
+ * Describes the enum capabilities.blockchain.solana.v1alpha.ConfirmationStatusType.
2951
+ */
2952
+ export declare const ConfirmationStatusTypeSchema: GenEnum<ConfirmationStatusType, ConfirmationStatusTypeJson>;
200
2953
  /**
201
2954
  * Transaction execution status returned by submitters/simulations.
202
2955
  *
@@ -232,6 +2985,43 @@ export type TxStatusJson = 'TX_STATUS_FATAL' | 'TX_STATUS_ABORTED' | 'TX_STATUS_
232
2985
  * Describes the enum capabilities.blockchain.solana.v1alpha.TxStatus.
233
2986
  */
234
2987
  export declare const TxStatusSchema: GenEnum<TxStatus, TxStatusJson>;
2988
+ /**
2989
+ * @generated from enum capabilities.blockchain.solana.v1alpha.ComparisonOperator
2990
+ */
2991
+ export declare enum ComparisonOperator {
2992
+ /**
2993
+ * @generated from enum value: COMPARISON_OPERATOR_EQ = 0;
2994
+ */
2995
+ EQ = 0,
2996
+ /**
2997
+ * @generated from enum value: COMPARISON_OPERATOR_NEQ = 1;
2998
+ */
2999
+ NEQ = 1,
3000
+ /**
3001
+ * @generated from enum value: COMPARISON_OPERATOR_GT = 2;
3002
+ */
3003
+ GT = 2,
3004
+ /**
3005
+ * @generated from enum value: COMPARISON_OPERATOR_LT = 3;
3006
+ */
3007
+ LT = 3,
3008
+ /**
3009
+ * @generated from enum value: COMPARISON_OPERATOR_GTE = 4;
3010
+ */
3011
+ GTE = 4,
3012
+ /**
3013
+ * @generated from enum value: COMPARISON_OPERATOR_LTE = 5;
3014
+ */
3015
+ LTE = 5
3016
+ }
3017
+ /**
3018
+ * @generated from enum capabilities.blockchain.solana.v1alpha.ComparisonOperator
3019
+ */
3020
+ export type ComparisonOperatorJson = 'COMPARISON_OPERATOR_EQ' | 'COMPARISON_OPERATOR_NEQ' | 'COMPARISON_OPERATOR_GT' | 'COMPARISON_OPERATOR_LT' | 'COMPARISON_OPERATOR_GTE' | 'COMPARISON_OPERATOR_LTE';
3021
+ /**
3022
+ * Describes the enum capabilities.blockchain.solana.v1alpha.ComparisonOperator.
3023
+ */
3024
+ export declare const ComparisonOperatorSchema: GenEnum<ComparisonOperator, ComparisonOperatorJson>;
235
3025
  /**
236
3026
  * @generated from enum capabilities.blockchain.solana.v1alpha.ReceiverContractExecutionStatus
237
3027
  */
@@ -257,6 +3047,86 @@ export declare const ReceiverContractExecutionStatusSchema: GenEnum<ReceiverCont
257
3047
  * @generated from service capabilities.blockchain.solana.v1alpha.Client
258
3048
  */
259
3049
  export declare const Client: GenService<{
3050
+ /**
3051
+ * @generated from rpc capabilities.blockchain.solana.v1alpha.Client.GetAccountInfoWithOpts
3052
+ */
3053
+ getAccountInfoWithOpts: {
3054
+ methodKind: 'unary';
3055
+ input: typeof GetAccountInfoWithOptsRequestSchema;
3056
+ output: typeof GetAccountInfoWithOptsReplySchema;
3057
+ };
3058
+ /**
3059
+ * @generated from rpc capabilities.blockchain.solana.v1alpha.Client.GetBalance
3060
+ */
3061
+ getBalance: {
3062
+ methodKind: 'unary';
3063
+ input: typeof GetBalanceRequestSchema;
3064
+ output: typeof GetBalanceReplySchema;
3065
+ };
3066
+ /**
3067
+ * @generated from rpc capabilities.blockchain.solana.v1alpha.Client.GetBlock
3068
+ */
3069
+ getBlock: {
3070
+ methodKind: 'unary';
3071
+ input: typeof GetBlockRequestSchema;
3072
+ output: typeof GetBlockReplySchema;
3073
+ };
3074
+ /**
3075
+ * @generated from rpc capabilities.blockchain.solana.v1alpha.Client.GetFeeForMessage
3076
+ */
3077
+ getFeeForMessage: {
3078
+ methodKind: 'unary';
3079
+ input: typeof GetFeeForMessageRequestSchema;
3080
+ output: typeof GetFeeForMessageReplySchema;
3081
+ };
3082
+ /**
3083
+ * @generated from rpc capabilities.blockchain.solana.v1alpha.Client.GetMultipleAccountsWithOpts
3084
+ */
3085
+ getMultipleAccountsWithOpts: {
3086
+ methodKind: 'unary';
3087
+ input: typeof GetMultipleAccountsWithOptsRequestSchema;
3088
+ output: typeof GetMultipleAccountsWithOptsReplySchema;
3089
+ };
3090
+ /**
3091
+ * @generated from rpc capabilities.blockchain.solana.v1alpha.Client.GetProgramAccounts
3092
+ */
3093
+ getProgramAccounts: {
3094
+ methodKind: 'unary';
3095
+ input: typeof GetProgramAccountsRequestSchema;
3096
+ output: typeof GetProgramAccountsReplySchema;
3097
+ };
3098
+ /**
3099
+ * @generated from rpc capabilities.blockchain.solana.v1alpha.Client.GetSignatureStatuses
3100
+ */
3101
+ getSignatureStatuses: {
3102
+ methodKind: 'unary';
3103
+ input: typeof GetSignatureStatusesRequestSchema;
3104
+ output: typeof GetSignatureStatusesReplySchema;
3105
+ };
3106
+ /**
3107
+ * @generated from rpc capabilities.blockchain.solana.v1alpha.Client.GetSlotHeight
3108
+ */
3109
+ getSlotHeight: {
3110
+ methodKind: 'unary';
3111
+ input: typeof GetSlotHeightRequestSchema;
3112
+ output: typeof GetSlotHeightReplySchema;
3113
+ };
3114
+ /**
3115
+ * @generated from rpc capabilities.blockchain.solana.v1alpha.Client.GetTransaction
3116
+ */
3117
+ getTransaction: {
3118
+ methodKind: 'unary';
3119
+ input: typeof GetTransactionRequestSchema;
3120
+ output: typeof GetTransactionReplySchema;
3121
+ };
3122
+ /**
3123
+ * @generated from rpc capabilities.blockchain.solana.v1alpha.Client.LogTrigger
3124
+ */
3125
+ logTrigger: {
3126
+ methodKind: 'server_streaming';
3127
+ input: typeof FilterLogTriggerRequestSchema;
3128
+ output: typeof LogSchema;
3129
+ };
260
3130
  /**
261
3131
  * @generated from rpc capabilities.blockchain.solana.v1alpha.Client.WriteReport
262
3132
  */