@solana/rpc-graphql 2.0.0-experimental.df45965 → 2.0.0-experimental.e15a66f

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 (85) hide show
  1. package/README.md +1088 -30
  2. package/dist/index.browser.cjs +3013 -1974
  3. package/dist/index.browser.cjs.map +1 -1
  4. package/dist/index.browser.js +3010 -1976
  5. package/dist/index.browser.js.map +1 -1
  6. package/dist/index.native.js +3010 -1972
  7. package/dist/index.native.js.map +1 -1
  8. package/dist/index.node.cjs +3013 -1970
  9. package/dist/index.node.cjs.map +1 -1
  10. package/dist/index.node.js +3010 -1972
  11. package/dist/index.node.js.map +1 -1
  12. package/dist/types/context.d.ts +16 -18
  13. package/dist/types/context.d.ts.map +1 -0
  14. package/dist/types/index.d.ts +6 -1
  15. package/dist/types/index.d.ts.map +1 -0
  16. package/dist/types/loaders/account.d.ts +14 -0
  17. package/dist/types/loaders/account.d.ts.map +1 -0
  18. package/dist/types/loaders/block.d.ts +4 -0
  19. package/dist/types/loaders/block.d.ts.map +1 -0
  20. package/dist/types/loaders/coalescer.d.ts +48 -0
  21. package/dist/types/loaders/coalescer.d.ts.map +1 -0
  22. package/dist/types/loaders/index.d.ts +6 -0
  23. package/dist/types/loaders/index.d.ts.map +1 -0
  24. package/dist/types/loaders/loader.d.ts +78 -0
  25. package/dist/types/loaders/loader.d.ts.map +1 -0
  26. package/dist/types/loaders/program-accounts.d.ts +8 -0
  27. package/dist/types/loaders/program-accounts.d.ts.map +1 -0
  28. package/dist/types/loaders/transaction.d.ts +4 -0
  29. package/dist/types/loaders/transaction.d.ts.map +1 -0
  30. package/dist/types/resolvers/account.d.ts +232 -0
  31. package/dist/types/resolvers/account.d.ts.map +1 -0
  32. package/dist/types/resolvers/block.d.ts +20 -0
  33. package/dist/types/resolvers/block.d.ts.map +1 -0
  34. package/dist/types/resolvers/index.d.ts +3 -0
  35. package/dist/types/resolvers/index.d.ts.map +1 -0
  36. package/dist/types/resolvers/instruction.d.ts +1968 -0
  37. package/dist/types/resolvers/instruction.d.ts.map +1 -0
  38. package/dist/types/resolvers/program-accounts.d.ts +19 -0
  39. package/dist/types/resolvers/program-accounts.d.ts.map +1 -0
  40. package/dist/types/resolvers/resolve-info/account.d.ts +15 -0
  41. package/dist/types/resolvers/resolve-info/account.d.ts.map +1 -0
  42. package/dist/types/resolvers/resolve-info/index.d.ts +4 -0
  43. package/dist/types/resolvers/resolve-info/index.d.ts.map +1 -0
  44. package/dist/types/resolvers/resolve-info/program-accounts.d.ts +20 -0
  45. package/dist/types/resolvers/resolve-info/program-accounts.d.ts.map +1 -0
  46. package/dist/types/resolvers/resolve-info/visitor.d.ts +18 -0
  47. package/dist/types/resolvers/resolve-info/visitor.d.ts.map +1 -0
  48. package/dist/types/resolvers/root.d.ts +3 -0
  49. package/dist/types/resolvers/root.d.ts.map +1 -0
  50. package/dist/types/resolvers/transaction.d.ts +19 -0
  51. package/dist/types/resolvers/transaction.d.ts.map +1 -0
  52. package/dist/types/resolvers/types.d.ts +101 -0
  53. package/dist/types/resolvers/types.d.ts.map +1 -0
  54. package/dist/types/schema/account.d.ts +2 -0
  55. package/dist/types/schema/account.d.ts.map +1 -0
  56. package/dist/types/schema/block.d.ts +2 -0
  57. package/dist/types/schema/block.d.ts.map +1 -0
  58. package/dist/types/schema/index.d.ts +2 -0
  59. package/dist/types/schema/index.d.ts.map +1 -0
  60. package/dist/types/schema/instruction.d.ts +2 -0
  61. package/dist/types/schema/instruction.d.ts.map +1 -0
  62. package/dist/types/schema/root.d.ts +2 -0
  63. package/dist/types/schema/root.d.ts.map +1 -0
  64. package/dist/types/schema/transaction.d.ts +2 -0
  65. package/dist/types/schema/transaction.d.ts.map +1 -0
  66. package/dist/types/schema/types.d.ts +2 -0
  67. package/dist/types/schema/types.d.ts.map +1 -0
  68. package/package.json +14 -37
  69. package/dist/types/cache.d.ts +0 -7
  70. package/dist/types/rpc.d.ts +0 -13
  71. package/dist/types/schema/account/index.d.ts +0 -3
  72. package/dist/types/schema/account/query.d.ts +0 -38
  73. package/dist/types/schema/account/types.d.ts +0 -5
  74. package/dist/types/schema/block/index.d.ts +0 -3
  75. package/dist/types/schema/block/query.d.ts +0 -42
  76. package/dist/types/schema/block/types.d.ts +0 -7
  77. package/dist/types/schema/inputs.d.ts +0 -9
  78. package/dist/types/schema/picks.d.ts +0 -36
  79. package/dist/types/schema/program-accounts/index.d.ts +0 -2
  80. package/dist/types/schema/program-accounts/query.d.ts +0 -47
  81. package/dist/types/schema/program-accounts/types.d.ts +0 -3
  82. package/dist/types/schema/scalars.d.ts +0 -3
  83. package/dist/types/schema/transaction/index.d.ts +0 -3
  84. package/dist/types/schema/transaction/query.d.ts +0 -33
  85. package/dist/types/schema/transaction/types.d.ts +0 -12
@@ -0,0 +1,1968 @@
1
+ export declare const instructionResolvers: {
2
+ AdvanceNonceAccountInstruction: {
3
+ nonceAccount: (parent: {
4
+ [x: string]: import("@solana/addresses").Address;
5
+ }, args: {
6
+ address?: import("@solana/addresses").Address | undefined;
7
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
8
+ minContextSlot?: bigint | undefined;
9
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
10
+ nonceAuthority: (parent: {
11
+ [x: string]: import("@solana/addresses").Address;
12
+ }, args: {
13
+ address?: import("@solana/addresses").Address | undefined;
14
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
15
+ minContextSlot?: bigint | undefined;
16
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
17
+ };
18
+ AllocateInstruction: {
19
+ account: (parent: {
20
+ [x: string]: import("@solana/addresses").Address;
21
+ }, args: {
22
+ address?: import("@solana/addresses").Address | undefined;
23
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
24
+ minContextSlot?: bigint | undefined;
25
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
26
+ };
27
+ AllocateWithSeedInstruction: {
28
+ account: (parent: {
29
+ [x: string]: import("@solana/addresses").Address;
30
+ }, args: {
31
+ address?: import("@solana/addresses").Address | undefined;
32
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
33
+ minContextSlot?: bigint | undefined;
34
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
35
+ owner: (parent: {
36
+ [x: string]: import("@solana/addresses").Address;
37
+ }, args: {
38
+ address?: import("@solana/addresses").Address | undefined;
39
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
40
+ minContextSlot?: bigint | undefined;
41
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
42
+ };
43
+ AssignInstruction: {
44
+ account: (parent: {
45
+ [x: string]: import("@solana/addresses").Address;
46
+ }, args: {
47
+ address?: import("@solana/addresses").Address | undefined;
48
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
49
+ minContextSlot?: bigint | undefined;
50
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
51
+ owner: (parent: {
52
+ [x: string]: import("@solana/addresses").Address;
53
+ }, args: {
54
+ address?: import("@solana/addresses").Address | undefined;
55
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
56
+ minContextSlot?: bigint | undefined;
57
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
58
+ };
59
+ AssignWithSeedInstruction: {
60
+ account: (parent: {
61
+ [x: string]: import("@solana/addresses").Address;
62
+ }, args: {
63
+ address?: import("@solana/addresses").Address | undefined;
64
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
65
+ minContextSlot?: bigint | undefined;
66
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
67
+ owner: (parent: {
68
+ [x: string]: import("@solana/addresses").Address;
69
+ }, args: {
70
+ address?: import("@solana/addresses").Address | undefined;
71
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
72
+ minContextSlot?: bigint | undefined;
73
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
74
+ };
75
+ AuthorizeNonceAccountInstruction: {
76
+ newAuthorized: (parent: {
77
+ [x: string]: import("@solana/addresses").Address;
78
+ }, args: {
79
+ address?: import("@solana/addresses").Address | undefined;
80
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
81
+ minContextSlot?: bigint | undefined;
82
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
83
+ nonceAccount: (parent: {
84
+ [x: string]: import("@solana/addresses").Address;
85
+ }, args: {
86
+ address?: import("@solana/addresses").Address | undefined;
87
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
88
+ minContextSlot?: bigint | undefined;
89
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
90
+ nonceAuthority: (parent: {
91
+ [x: string]: import("@solana/addresses").Address;
92
+ }, args: {
93
+ address?: import("@solana/addresses").Address | undefined;
94
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
95
+ minContextSlot?: bigint | undefined;
96
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
97
+ };
98
+ BpfLoaderFinalizeInstruction: {
99
+ account: (parent: {
100
+ [x: string]: import("@solana/addresses").Address;
101
+ }, args: {
102
+ address?: import("@solana/addresses").Address | undefined;
103
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
104
+ minContextSlot?: bigint | undefined;
105
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
106
+ };
107
+ BpfLoaderWriteInstruction: {
108
+ account: (parent: {
109
+ [x: string]: import("@solana/addresses").Address;
110
+ }, args: {
111
+ address?: import("@solana/addresses").Address | undefined;
112
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
113
+ minContextSlot?: bigint | undefined;
114
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
115
+ };
116
+ BpfUpgradeableLoaderCloseInstruction: {
117
+ account: (parent: {
118
+ [x: string]: import("@solana/addresses").Address;
119
+ }, args: {
120
+ address?: import("@solana/addresses").Address | undefined;
121
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
122
+ minContextSlot?: bigint | undefined;
123
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
124
+ authority: (parent: {
125
+ [x: string]: import("@solana/addresses").Address;
126
+ }, args: {
127
+ address?: import("@solana/addresses").Address | undefined;
128
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
129
+ minContextSlot?: bigint | undefined;
130
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
131
+ programAccount: (parent: {
132
+ [x: string]: import("@solana/addresses").Address;
133
+ }, args: {
134
+ address?: import("@solana/addresses").Address | undefined;
135
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
136
+ minContextSlot?: bigint | undefined;
137
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
138
+ recipient: (parent: {
139
+ [x: string]: import("@solana/addresses").Address;
140
+ }, args: {
141
+ address?: import("@solana/addresses").Address | undefined;
142
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
143
+ minContextSlot?: bigint | undefined;
144
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
145
+ };
146
+ BpfUpgradeableLoaderDeployWithMaxDataLenInstruction: {
147
+ authority: (parent: {
148
+ [x: string]: import("@solana/addresses").Address;
149
+ }, args: {
150
+ address?: import("@solana/addresses").Address | undefined;
151
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
152
+ minContextSlot?: bigint | undefined;
153
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
154
+ bufferAccount: (parent: {
155
+ [x: string]: import("@solana/addresses").Address;
156
+ }, args: {
157
+ address?: import("@solana/addresses").Address | undefined;
158
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
159
+ minContextSlot?: bigint | undefined;
160
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
161
+ payerAccount: (parent: {
162
+ [x: string]: import("@solana/addresses").Address;
163
+ }, args: {
164
+ address?: import("@solana/addresses").Address | undefined;
165
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
166
+ minContextSlot?: bigint | undefined;
167
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
168
+ programAccount: (parent: {
169
+ [x: string]: import("@solana/addresses").Address;
170
+ }, args: {
171
+ address?: import("@solana/addresses").Address | undefined;
172
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
173
+ minContextSlot?: bigint | undefined;
174
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
175
+ programDataAccount: (parent: {
176
+ [x: string]: import("@solana/addresses").Address;
177
+ }, args: {
178
+ address?: import("@solana/addresses").Address | undefined;
179
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
180
+ minContextSlot?: bigint | undefined;
181
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
182
+ };
183
+ BpfUpgradeableLoaderExtendProgramInstruction: {
184
+ payerAccount: (parent: {
185
+ [x: string]: import("@solana/addresses").Address;
186
+ }, args: {
187
+ address?: import("@solana/addresses").Address | undefined;
188
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
189
+ minContextSlot?: bigint | undefined;
190
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
191
+ programAccount: (parent: {
192
+ [x: string]: import("@solana/addresses").Address;
193
+ }, args: {
194
+ address?: import("@solana/addresses").Address | undefined;
195
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
196
+ minContextSlot?: bigint | undefined;
197
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
198
+ programDataAccount: (parent: {
199
+ [x: string]: import("@solana/addresses").Address;
200
+ }, args: {
201
+ address?: import("@solana/addresses").Address | undefined;
202
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
203
+ minContextSlot?: bigint | undefined;
204
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
205
+ systemProgram: (parent: {
206
+ [x: string]: import("@solana/addresses").Address;
207
+ }, args: {
208
+ address?: import("@solana/addresses").Address | undefined;
209
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
210
+ minContextSlot?: bigint | undefined;
211
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
212
+ };
213
+ BpfUpgradeableLoaderInitializeBufferInstruction: {
214
+ account: (parent: {
215
+ [x: string]: import("@solana/addresses").Address;
216
+ }, args: {
217
+ address?: import("@solana/addresses").Address | undefined;
218
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
219
+ minContextSlot?: bigint | undefined;
220
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
221
+ };
222
+ BpfUpgradeableLoaderSetAuthorityCheckedInstruction: {
223
+ account: (parent: {
224
+ [x: string]: import("@solana/addresses").Address;
225
+ }, args: {
226
+ address?: import("@solana/addresses").Address | undefined;
227
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
228
+ minContextSlot?: bigint | undefined;
229
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
230
+ authority: (parent: {
231
+ [x: string]: import("@solana/addresses").Address;
232
+ }, args: {
233
+ address?: import("@solana/addresses").Address | undefined;
234
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
235
+ minContextSlot?: bigint | undefined;
236
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
237
+ newAuthority: (parent: {
238
+ [x: string]: import("@solana/addresses").Address;
239
+ }, args: {
240
+ address?: import("@solana/addresses").Address | undefined;
241
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
242
+ minContextSlot?: bigint | undefined;
243
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
244
+ };
245
+ BpfUpgradeableLoaderSetAuthorityInstruction: {
246
+ account: (parent: {
247
+ [x: string]: import("@solana/addresses").Address;
248
+ }, args: {
249
+ address?: import("@solana/addresses").Address | undefined;
250
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
251
+ minContextSlot?: bigint | undefined;
252
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
253
+ authority: (parent: {
254
+ [x: string]: import("@solana/addresses").Address;
255
+ }, args: {
256
+ address?: import("@solana/addresses").Address | undefined;
257
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
258
+ minContextSlot?: bigint | undefined;
259
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
260
+ newAuthority: (parent: {
261
+ [x: string]: import("@solana/addresses").Address;
262
+ }, args: {
263
+ address?: import("@solana/addresses").Address | undefined;
264
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
265
+ minContextSlot?: bigint | undefined;
266
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
267
+ };
268
+ BpfUpgradeableLoaderUpgradeInstruction: {
269
+ authority: (parent: {
270
+ [x: string]: import("@solana/addresses").Address;
271
+ }, args: {
272
+ address?: import("@solana/addresses").Address | undefined;
273
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
274
+ minContextSlot?: bigint | undefined;
275
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
276
+ bufferAccount: (parent: {
277
+ [x: string]: import("@solana/addresses").Address;
278
+ }, args: {
279
+ address?: import("@solana/addresses").Address | undefined;
280
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
281
+ minContextSlot?: bigint | undefined;
282
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
283
+ programAccount: (parent: {
284
+ [x: string]: import("@solana/addresses").Address;
285
+ }, args: {
286
+ address?: import("@solana/addresses").Address | undefined;
287
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
288
+ minContextSlot?: bigint | undefined;
289
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
290
+ programDataAccount: (parent: {
291
+ [x: string]: import("@solana/addresses").Address;
292
+ }, args: {
293
+ address?: import("@solana/addresses").Address | undefined;
294
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
295
+ minContextSlot?: bigint | undefined;
296
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
297
+ };
298
+ BpfUpgradeableLoaderWriteInstruction: {
299
+ account: (parent: {
300
+ [x: string]: import("@solana/addresses").Address;
301
+ }, args: {
302
+ address?: import("@solana/addresses").Address | undefined;
303
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
304
+ minContextSlot?: bigint | undefined;
305
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
306
+ authority: (parent: {
307
+ [x: string]: import("@solana/addresses").Address;
308
+ }, args: {
309
+ address?: import("@solana/addresses").Address | undefined;
310
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
311
+ minContextSlot?: bigint | undefined;
312
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
313
+ };
314
+ CloseLookupTableInstruction: {
315
+ lookupTableAccount: (parent: {
316
+ [x: string]: import("@solana/addresses").Address;
317
+ }, args: {
318
+ address?: import("@solana/addresses").Address | undefined;
319
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
320
+ minContextSlot?: bigint | undefined;
321
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
322
+ lookupTableAuthority: (parent: {
323
+ [x: string]: import("@solana/addresses").Address;
324
+ }, args: {
325
+ address?: import("@solana/addresses").Address | undefined;
326
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
327
+ minContextSlot?: bigint | undefined;
328
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
329
+ recipient: (parent: {
330
+ [x: string]: import("@solana/addresses").Address;
331
+ }, args: {
332
+ address?: import("@solana/addresses").Address | undefined;
333
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
334
+ minContextSlot?: bigint | undefined;
335
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
336
+ };
337
+ CreateAccountInstruction: {
338
+ newAccount: (parent: {
339
+ [x: string]: import("@solana/addresses").Address;
340
+ }, args: {
341
+ address?: import("@solana/addresses").Address | undefined;
342
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
343
+ minContextSlot?: bigint | undefined;
344
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
345
+ owner: (parent: {
346
+ [x: string]: import("@solana/addresses").Address;
347
+ }, args: {
348
+ address?: import("@solana/addresses").Address | undefined;
349
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
350
+ minContextSlot?: bigint | undefined;
351
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
352
+ source: (parent: {
353
+ [x: string]: import("@solana/addresses").Address;
354
+ }, args: {
355
+ address?: import("@solana/addresses").Address | undefined;
356
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
357
+ minContextSlot?: bigint | undefined;
358
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
359
+ };
360
+ CreateAccountWithSeedInstruction: {
361
+ base: (parent: {
362
+ [x: string]: import("@solana/addresses").Address;
363
+ }, args: {
364
+ address?: import("@solana/addresses").Address | undefined;
365
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
366
+ minContextSlot?: bigint | undefined;
367
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
368
+ owner: (parent: {
369
+ [x: string]: import("@solana/addresses").Address;
370
+ }, args: {
371
+ address?: import("@solana/addresses").Address | undefined;
372
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
373
+ minContextSlot?: bigint | undefined;
374
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
375
+ seed: (parent: {
376
+ [x: string]: import("@solana/addresses").Address;
377
+ }, args: {
378
+ address?: import("@solana/addresses").Address | undefined;
379
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
380
+ minContextSlot?: bigint | undefined;
381
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
382
+ };
383
+ CreateLookupTableInstruction: {
384
+ lookupTableAccount: (parent: {
385
+ [x: string]: import("@solana/addresses").Address;
386
+ }, args: {
387
+ address?: import("@solana/addresses").Address | undefined;
388
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
389
+ minContextSlot?: bigint | undefined;
390
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
391
+ lookupTableAuthority: (parent: {
392
+ [x: string]: import("@solana/addresses").Address;
393
+ }, args: {
394
+ address?: import("@solana/addresses").Address | undefined;
395
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
396
+ minContextSlot?: bigint | undefined;
397
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
398
+ payerAccount: (parent: {
399
+ [x: string]: import("@solana/addresses").Address;
400
+ }, args: {
401
+ address?: import("@solana/addresses").Address | undefined;
402
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
403
+ minContextSlot?: bigint | undefined;
404
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
405
+ systemProgram: (parent: {
406
+ [x: string]: import("@solana/addresses").Address;
407
+ }, args: {
408
+ address?: import("@solana/addresses").Address | undefined;
409
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
410
+ minContextSlot?: bigint | undefined;
411
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
412
+ };
413
+ DeactivateLookupTableInstruction: {
414
+ lookupTableAccount: (parent: {
415
+ [x: string]: import("@solana/addresses").Address;
416
+ }, args: {
417
+ address?: import("@solana/addresses").Address | undefined;
418
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
419
+ minContextSlot?: bigint | undefined;
420
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
421
+ lookupTableAuthority: (parent: {
422
+ [x: string]: import("@solana/addresses").Address;
423
+ }, args: {
424
+ address?: import("@solana/addresses").Address | undefined;
425
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
426
+ minContextSlot?: bigint | undefined;
427
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
428
+ };
429
+ ExtendLookupTableInstruction: {
430
+ lookupTableAccount: (parent: {
431
+ [x: string]: import("@solana/addresses").Address;
432
+ }, args: {
433
+ address?: import("@solana/addresses").Address | undefined;
434
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
435
+ minContextSlot?: bigint | undefined;
436
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
437
+ lookupTableAuthority: (parent: {
438
+ [x: string]: import("@solana/addresses").Address;
439
+ }, args: {
440
+ address?: import("@solana/addresses").Address | undefined;
441
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
442
+ minContextSlot?: bigint | undefined;
443
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
444
+ payerAccount: (parent: {
445
+ [x: string]: import("@solana/addresses").Address;
446
+ }, args: {
447
+ address?: import("@solana/addresses").Address | undefined;
448
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
449
+ minContextSlot?: bigint | undefined;
450
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
451
+ systemProgram: (parent: {
452
+ [x: string]: import("@solana/addresses").Address;
453
+ }, args: {
454
+ address?: import("@solana/addresses").Address | undefined;
455
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
456
+ minContextSlot?: bigint | undefined;
457
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
458
+ };
459
+ FreezeLookupTableInstruction: {
460
+ lookupTableAccount: (parent: {
461
+ [x: string]: import("@solana/addresses").Address;
462
+ }, args: {
463
+ address?: import("@solana/addresses").Address | undefined;
464
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
465
+ minContextSlot?: bigint | undefined;
466
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
467
+ lookupTableAuthority: (parent: {
468
+ [x: string]: import("@solana/addresses").Address;
469
+ }, args: {
470
+ address?: import("@solana/addresses").Address | undefined;
471
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
472
+ minContextSlot?: bigint | undefined;
473
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
474
+ };
475
+ InitializeNonceAccountInstruction: {
476
+ nonceAccount: (parent: {
477
+ [x: string]: import("@solana/addresses").Address;
478
+ }, args: {
479
+ address?: import("@solana/addresses").Address | undefined;
480
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
481
+ minContextSlot?: bigint | undefined;
482
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
483
+ nonceAuthority: (parent: {
484
+ [x: string]: import("@solana/addresses").Address;
485
+ }, args: {
486
+ address?: import("@solana/addresses").Address | undefined;
487
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
488
+ minContextSlot?: bigint | undefined;
489
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
490
+ };
491
+ Lockup: {
492
+ custodian: (parent: {
493
+ [x: string]: import("@solana/addresses").Address;
494
+ }, args: {
495
+ address?: import("@solana/addresses").Address | undefined;
496
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
497
+ minContextSlot?: bigint | undefined;
498
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
499
+ };
500
+ SplAssociatedTokenCreateIdempotentInstruction: {
501
+ account: (parent: {
502
+ [x: string]: import("@solana/addresses").Address;
503
+ }, args: {
504
+ address?: import("@solana/addresses").Address | undefined;
505
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
506
+ minContextSlot?: bigint | undefined;
507
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
508
+ mint: (parent: {
509
+ [x: string]: import("@solana/addresses").Address;
510
+ }, args: {
511
+ address?: import("@solana/addresses").Address | undefined;
512
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
513
+ minContextSlot?: bigint | undefined;
514
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
515
+ source: (parent: {
516
+ [x: string]: import("@solana/addresses").Address;
517
+ }, args: {
518
+ address?: import("@solana/addresses").Address | undefined;
519
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
520
+ minContextSlot?: bigint | undefined;
521
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
522
+ systemProgram: (parent: {
523
+ [x: string]: import("@solana/addresses").Address;
524
+ }, args: {
525
+ address?: import("@solana/addresses").Address | undefined;
526
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
527
+ minContextSlot?: bigint | undefined;
528
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
529
+ tokenProgram: (parent: {
530
+ [x: string]: import("@solana/addresses").Address;
531
+ }, args: {
532
+ address?: import("@solana/addresses").Address | undefined;
533
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
534
+ minContextSlot?: bigint | undefined;
535
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
536
+ wallet: (parent: {
537
+ [x: string]: import("@solana/addresses").Address;
538
+ }, args: {
539
+ address?: import("@solana/addresses").Address | undefined;
540
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
541
+ minContextSlot?: bigint | undefined;
542
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
543
+ };
544
+ SplAssociatedTokenCreateInstruction: {
545
+ account: (parent: {
546
+ [x: string]: import("@solana/addresses").Address;
547
+ }, args: {
548
+ address?: import("@solana/addresses").Address | undefined;
549
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
550
+ minContextSlot?: bigint | undefined;
551
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
552
+ mint: (parent: {
553
+ [x: string]: import("@solana/addresses").Address;
554
+ }, args: {
555
+ address?: import("@solana/addresses").Address | undefined;
556
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
557
+ minContextSlot?: bigint | undefined;
558
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
559
+ source: (parent: {
560
+ [x: string]: import("@solana/addresses").Address;
561
+ }, args: {
562
+ address?: import("@solana/addresses").Address | undefined;
563
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
564
+ minContextSlot?: bigint | undefined;
565
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
566
+ systemProgram: (parent: {
567
+ [x: string]: import("@solana/addresses").Address;
568
+ }, args: {
569
+ address?: import("@solana/addresses").Address | undefined;
570
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
571
+ minContextSlot?: bigint | undefined;
572
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
573
+ tokenProgram: (parent: {
574
+ [x: string]: import("@solana/addresses").Address;
575
+ }, args: {
576
+ address?: import("@solana/addresses").Address | undefined;
577
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
578
+ minContextSlot?: bigint | undefined;
579
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
580
+ wallet: (parent: {
581
+ [x: string]: import("@solana/addresses").Address;
582
+ }, args: {
583
+ address?: import("@solana/addresses").Address | undefined;
584
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
585
+ minContextSlot?: bigint | undefined;
586
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
587
+ };
588
+ SplAssociatedTokenRecoverNestedInstruction: {
589
+ destination: (parent: {
590
+ [x: string]: import("@solana/addresses").Address;
591
+ }, args: {
592
+ address?: import("@solana/addresses").Address | undefined;
593
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
594
+ minContextSlot?: bigint | undefined;
595
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
596
+ nestedMint: (parent: {
597
+ [x: string]: import("@solana/addresses").Address;
598
+ }, args: {
599
+ address?: import("@solana/addresses").Address | undefined;
600
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
601
+ minContextSlot?: bigint | undefined;
602
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
603
+ nestedOwner: (parent: {
604
+ [x: string]: import("@solana/addresses").Address;
605
+ }, args: {
606
+ address?: import("@solana/addresses").Address | undefined;
607
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
608
+ minContextSlot?: bigint | undefined;
609
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
610
+ nestedSource: (parent: {
611
+ [x: string]: import("@solana/addresses").Address;
612
+ }, args: {
613
+ address?: import("@solana/addresses").Address | undefined;
614
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
615
+ minContextSlot?: bigint | undefined;
616
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
617
+ ownerMint: (parent: {
618
+ [x: string]: import("@solana/addresses").Address;
619
+ }, args: {
620
+ address?: import("@solana/addresses").Address | undefined;
621
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
622
+ minContextSlot?: bigint | undefined;
623
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
624
+ tokenProgram: (parent: {
625
+ [x: string]: import("@solana/addresses").Address;
626
+ }, args: {
627
+ address?: import("@solana/addresses").Address | undefined;
628
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
629
+ minContextSlot?: bigint | undefined;
630
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
631
+ wallet: (parent: {
632
+ [x: string]: import("@solana/addresses").Address;
633
+ }, args: {
634
+ address?: import("@solana/addresses").Address | undefined;
635
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
636
+ minContextSlot?: bigint | undefined;
637
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
638
+ };
639
+ SplTokenAmountToUiAmountInstruction: {
640
+ mint: (parent: {
641
+ [x: string]: import("@solana/addresses").Address;
642
+ }, args: {
643
+ address?: import("@solana/addresses").Address | undefined;
644
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
645
+ minContextSlot?: bigint | undefined;
646
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
647
+ };
648
+ SplTokenApproveCheckedInstruction: {
649
+ delegate: (parent: {
650
+ [x: string]: import("@solana/addresses").Address;
651
+ }, args: {
652
+ address?: import("@solana/addresses").Address | undefined;
653
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
654
+ minContextSlot?: bigint | undefined;
655
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
656
+ mint: (parent: {
657
+ [x: string]: import("@solana/addresses").Address;
658
+ }, args: {
659
+ address?: import("@solana/addresses").Address | undefined;
660
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
661
+ minContextSlot?: bigint | undefined;
662
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
663
+ multisigOwner: (parent: {
664
+ [x: string]: import("@solana/addresses").Address;
665
+ }, args: {
666
+ address?: import("@solana/addresses").Address | undefined;
667
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
668
+ minContextSlot?: bigint | undefined;
669
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
670
+ owner: (parent: {
671
+ [x: string]: import("@solana/addresses").Address;
672
+ }, args: {
673
+ address?: import("@solana/addresses").Address | undefined;
674
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
675
+ minContextSlot?: bigint | undefined;
676
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
677
+ source: (parent: {
678
+ [x: string]: import("@solana/addresses").Address;
679
+ }, args: {
680
+ address?: import("@solana/addresses").Address | undefined;
681
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
682
+ minContextSlot?: bigint | undefined;
683
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
684
+ };
685
+ SplTokenApproveInstruction: {
686
+ delegate: (parent: {
687
+ [x: string]: import("@solana/addresses").Address;
688
+ }, args: {
689
+ address?: import("@solana/addresses").Address | undefined;
690
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
691
+ minContextSlot?: bigint | undefined;
692
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
693
+ multisigOwner: (parent: {
694
+ [x: string]: import("@solana/addresses").Address;
695
+ }, args: {
696
+ address?: import("@solana/addresses").Address | undefined;
697
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
698
+ minContextSlot?: bigint | undefined;
699
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
700
+ owner: (parent: {
701
+ [x: string]: import("@solana/addresses").Address;
702
+ }, args: {
703
+ address?: import("@solana/addresses").Address | undefined;
704
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
705
+ minContextSlot?: bigint | undefined;
706
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
707
+ source: (parent: {
708
+ [x: string]: import("@solana/addresses").Address;
709
+ }, args: {
710
+ address?: import("@solana/addresses").Address | undefined;
711
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
712
+ minContextSlot?: bigint | undefined;
713
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
714
+ };
715
+ SplTokenBurnCheckedInstruction: {
716
+ account: (parent: {
717
+ [x: string]: import("@solana/addresses").Address;
718
+ }, args: {
719
+ address?: import("@solana/addresses").Address | undefined;
720
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
721
+ minContextSlot?: bigint | undefined;
722
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
723
+ authority: (parent: {
724
+ [x: string]: import("@solana/addresses").Address;
725
+ }, args: {
726
+ address?: import("@solana/addresses").Address | undefined;
727
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
728
+ minContextSlot?: bigint | undefined;
729
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
730
+ mint: (parent: {
731
+ [x: string]: import("@solana/addresses").Address;
732
+ }, args: {
733
+ address?: import("@solana/addresses").Address | undefined;
734
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
735
+ minContextSlot?: bigint | undefined;
736
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
737
+ multisigAuthority: (parent: {
738
+ [x: string]: import("@solana/addresses").Address;
739
+ }, args: {
740
+ address?: import("@solana/addresses").Address | undefined;
741
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
742
+ minContextSlot?: bigint | undefined;
743
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
744
+ };
745
+ SplTokenBurnInstruction: {
746
+ account: (parent: {
747
+ [x: string]: import("@solana/addresses").Address;
748
+ }, args: {
749
+ address?: import("@solana/addresses").Address | undefined;
750
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
751
+ minContextSlot?: bigint | undefined;
752
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
753
+ authority: (parent: {
754
+ [x: string]: import("@solana/addresses").Address;
755
+ }, args: {
756
+ address?: import("@solana/addresses").Address | undefined;
757
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
758
+ minContextSlot?: bigint | undefined;
759
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
760
+ mint: (parent: {
761
+ [x: string]: import("@solana/addresses").Address;
762
+ }, args: {
763
+ address?: import("@solana/addresses").Address | undefined;
764
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
765
+ minContextSlot?: bigint | undefined;
766
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
767
+ multisigAuthority: (parent: {
768
+ [x: string]: import("@solana/addresses").Address;
769
+ }, args: {
770
+ address?: import("@solana/addresses").Address | undefined;
771
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
772
+ minContextSlot?: bigint | undefined;
773
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
774
+ };
775
+ SplTokenCloseAccountInstruction: {
776
+ account: (parent: {
777
+ [x: string]: import("@solana/addresses").Address;
778
+ }, args: {
779
+ address?: import("@solana/addresses").Address | undefined;
780
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
781
+ minContextSlot?: bigint | undefined;
782
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
783
+ destination: (parent: {
784
+ [x: string]: import("@solana/addresses").Address;
785
+ }, args: {
786
+ address?: import("@solana/addresses").Address | undefined;
787
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
788
+ minContextSlot?: bigint | undefined;
789
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
790
+ multisigOwner: (parent: {
791
+ [x: string]: import("@solana/addresses").Address;
792
+ }, args: {
793
+ address?: import("@solana/addresses").Address | undefined;
794
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
795
+ minContextSlot?: bigint | undefined;
796
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
797
+ owner: (parent: {
798
+ [x: string]: import("@solana/addresses").Address;
799
+ }, args: {
800
+ address?: import("@solana/addresses").Address | undefined;
801
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
802
+ minContextSlot?: bigint | undefined;
803
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
804
+ };
805
+ SplTokenFreezeAccountInstruction: {
806
+ account: (parent: {
807
+ [x: string]: import("@solana/addresses").Address;
808
+ }, args: {
809
+ address?: import("@solana/addresses").Address | undefined;
810
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
811
+ minContextSlot?: bigint | undefined;
812
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
813
+ freezeAuthority: (parent: {
814
+ [x: string]: import("@solana/addresses").Address;
815
+ }, args: {
816
+ address?: import("@solana/addresses").Address | undefined;
817
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
818
+ minContextSlot?: bigint | undefined;
819
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
820
+ mint: (parent: {
821
+ [x: string]: import("@solana/addresses").Address;
822
+ }, args: {
823
+ address?: import("@solana/addresses").Address | undefined;
824
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
825
+ minContextSlot?: bigint | undefined;
826
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
827
+ multisigFreezeAuthority: (parent: {
828
+ [x: string]: import("@solana/addresses").Address;
829
+ }, args: {
830
+ address?: import("@solana/addresses").Address | undefined;
831
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
832
+ minContextSlot?: bigint | undefined;
833
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
834
+ };
835
+ SplTokenGetAccountDataSizeInstruction: {
836
+ mint: (parent: {
837
+ [x: string]: import("@solana/addresses").Address;
838
+ }, args: {
839
+ address?: import("@solana/addresses").Address | undefined;
840
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
841
+ minContextSlot?: bigint | undefined;
842
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
843
+ };
844
+ SplTokenInitializeAccount2Instruction: {
845
+ account: (parent: {
846
+ [x: string]: import("@solana/addresses").Address;
847
+ }, args: {
848
+ address?: import("@solana/addresses").Address | undefined;
849
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
850
+ minContextSlot?: bigint | undefined;
851
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
852
+ mint: (parent: {
853
+ [x: string]: import("@solana/addresses").Address;
854
+ }, args: {
855
+ address?: import("@solana/addresses").Address | undefined;
856
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
857
+ minContextSlot?: bigint | undefined;
858
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
859
+ owner: (parent: {
860
+ [x: string]: import("@solana/addresses").Address;
861
+ }, args: {
862
+ address?: import("@solana/addresses").Address | undefined;
863
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
864
+ minContextSlot?: bigint | undefined;
865
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
866
+ };
867
+ SplTokenInitializeAccount3Instruction: {
868
+ account: (parent: {
869
+ [x: string]: import("@solana/addresses").Address;
870
+ }, args: {
871
+ address?: import("@solana/addresses").Address | undefined;
872
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
873
+ minContextSlot?: bigint | undefined;
874
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
875
+ mint: (parent: {
876
+ [x: string]: import("@solana/addresses").Address;
877
+ }, args: {
878
+ address?: import("@solana/addresses").Address | undefined;
879
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
880
+ minContextSlot?: bigint | undefined;
881
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
882
+ owner: (parent: {
883
+ [x: string]: import("@solana/addresses").Address;
884
+ }, args: {
885
+ address?: import("@solana/addresses").Address | undefined;
886
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
887
+ minContextSlot?: bigint | undefined;
888
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
889
+ };
890
+ SplTokenInitializeAccountInstruction: {
891
+ account: (parent: {
892
+ [x: string]: import("@solana/addresses").Address;
893
+ }, args: {
894
+ address?: import("@solana/addresses").Address | undefined;
895
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
896
+ minContextSlot?: bigint | undefined;
897
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
898
+ mint: (parent: {
899
+ [x: string]: import("@solana/addresses").Address;
900
+ }, args: {
901
+ address?: import("@solana/addresses").Address | undefined;
902
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
903
+ minContextSlot?: bigint | undefined;
904
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
905
+ owner: (parent: {
906
+ [x: string]: import("@solana/addresses").Address;
907
+ }, args: {
908
+ address?: import("@solana/addresses").Address | undefined;
909
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
910
+ minContextSlot?: bigint | undefined;
911
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
912
+ };
913
+ SplTokenInitializeMint2Instruction: {
914
+ freezeAuthority: (parent: {
915
+ [x: string]: import("@solana/addresses").Address;
916
+ }, args: {
917
+ address?: import("@solana/addresses").Address | undefined;
918
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
919
+ minContextSlot?: bigint | undefined;
920
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
921
+ mint: (parent: {
922
+ [x: string]: import("@solana/addresses").Address;
923
+ }, args: {
924
+ address?: import("@solana/addresses").Address | undefined;
925
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
926
+ minContextSlot?: bigint | undefined;
927
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
928
+ mintAuthority: (parent: {
929
+ [x: string]: import("@solana/addresses").Address;
930
+ }, args: {
931
+ address?: import("@solana/addresses").Address | undefined;
932
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
933
+ minContextSlot?: bigint | undefined;
934
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
935
+ };
936
+ SplTokenInitializeMintCloseAuthorityInstruction: {
937
+ mint: (parent: {
938
+ [x: string]: import("@solana/addresses").Address;
939
+ }, args: {
940
+ address?: import("@solana/addresses").Address | undefined;
941
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
942
+ minContextSlot?: bigint | undefined;
943
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
944
+ newAuthority: (parent: {
945
+ [x: string]: import("@solana/addresses").Address;
946
+ }, args: {
947
+ address?: import("@solana/addresses").Address | undefined;
948
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
949
+ minContextSlot?: bigint | undefined;
950
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
951
+ };
952
+ SplTokenInitializeMintInstruction: {
953
+ freezeAuthority: (parent: {
954
+ [x: string]: import("@solana/addresses").Address;
955
+ }, args: {
956
+ address?: import("@solana/addresses").Address | undefined;
957
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
958
+ minContextSlot?: bigint | undefined;
959
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
960
+ mint: (parent: {
961
+ [x: string]: import("@solana/addresses").Address;
962
+ }, args: {
963
+ address?: import("@solana/addresses").Address | undefined;
964
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
965
+ minContextSlot?: bigint | undefined;
966
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
967
+ mintAuthority: (parent: {
968
+ [x: string]: import("@solana/addresses").Address;
969
+ }, args: {
970
+ address?: import("@solana/addresses").Address | undefined;
971
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
972
+ minContextSlot?: bigint | undefined;
973
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
974
+ };
975
+ SplTokenInitializeMultisig2Instruction: {
976
+ multisig: (parent: {
977
+ [x: string]: import("@solana/addresses").Address;
978
+ }, args: {
979
+ address?: import("@solana/addresses").Address | undefined;
980
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
981
+ minContextSlot?: bigint | undefined;
982
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
983
+ };
984
+ SplTokenInitializeMultisigInstruction: {
985
+ multisig: (parent: {
986
+ [x: string]: import("@solana/addresses").Address;
987
+ }, args: {
988
+ address?: import("@solana/addresses").Address | undefined;
989
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
990
+ minContextSlot?: bigint | undefined;
991
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
992
+ };
993
+ SplTokenMintToCheckedInstruction: {
994
+ account: (parent: {
995
+ [x: string]: import("@solana/addresses").Address;
996
+ }, args: {
997
+ address?: import("@solana/addresses").Address | undefined;
998
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
999
+ minContextSlot?: bigint | undefined;
1000
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1001
+ authority: (parent: {
1002
+ [x: string]: import("@solana/addresses").Address;
1003
+ }, args: {
1004
+ address?: import("@solana/addresses").Address | undefined;
1005
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1006
+ minContextSlot?: bigint | undefined;
1007
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1008
+ mint: (parent: {
1009
+ [x: string]: import("@solana/addresses").Address;
1010
+ }, args: {
1011
+ address?: import("@solana/addresses").Address | undefined;
1012
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1013
+ minContextSlot?: bigint | undefined;
1014
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1015
+ mintAuthority: (parent: {
1016
+ [x: string]: import("@solana/addresses").Address;
1017
+ }, args: {
1018
+ address?: import("@solana/addresses").Address | undefined;
1019
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1020
+ minContextSlot?: bigint | undefined;
1021
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1022
+ multisigMintAuthority: (parent: {
1023
+ [x: string]: import("@solana/addresses").Address;
1024
+ }, args: {
1025
+ address?: import("@solana/addresses").Address | undefined;
1026
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1027
+ minContextSlot?: bigint | undefined;
1028
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1029
+ };
1030
+ SplTokenMintToInstruction: {
1031
+ account: (parent: {
1032
+ [x: string]: import("@solana/addresses").Address;
1033
+ }, args: {
1034
+ address?: import("@solana/addresses").Address | undefined;
1035
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1036
+ minContextSlot?: bigint | undefined;
1037
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1038
+ authority: (parent: {
1039
+ [x: string]: import("@solana/addresses").Address;
1040
+ }, args: {
1041
+ address?: import("@solana/addresses").Address | undefined;
1042
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1043
+ minContextSlot?: bigint | undefined;
1044
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1045
+ mint: (parent: {
1046
+ [x: string]: import("@solana/addresses").Address;
1047
+ }, args: {
1048
+ address?: import("@solana/addresses").Address | undefined;
1049
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1050
+ minContextSlot?: bigint | undefined;
1051
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1052
+ mintAuthority: (parent: {
1053
+ [x: string]: import("@solana/addresses").Address;
1054
+ }, args: {
1055
+ address?: import("@solana/addresses").Address | undefined;
1056
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1057
+ minContextSlot?: bigint | undefined;
1058
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1059
+ multisigMintAuthority: (parent: {
1060
+ [x: string]: import("@solana/addresses").Address;
1061
+ }, args: {
1062
+ address?: import("@solana/addresses").Address | undefined;
1063
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1064
+ minContextSlot?: bigint | undefined;
1065
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1066
+ };
1067
+ SplTokenRevokeInstruction: {
1068
+ multisigOwner: (parent: {
1069
+ [x: string]: import("@solana/addresses").Address;
1070
+ }, args: {
1071
+ address?: import("@solana/addresses").Address | undefined;
1072
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1073
+ minContextSlot?: bigint | undefined;
1074
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1075
+ owner: (parent: {
1076
+ [x: string]: import("@solana/addresses").Address;
1077
+ }, args: {
1078
+ address?: import("@solana/addresses").Address | undefined;
1079
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1080
+ minContextSlot?: bigint | undefined;
1081
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1082
+ source: (parent: {
1083
+ [x: string]: import("@solana/addresses").Address;
1084
+ }, args: {
1085
+ address?: import("@solana/addresses").Address | undefined;
1086
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1087
+ minContextSlot?: bigint | undefined;
1088
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1089
+ };
1090
+ SplTokenSetAuthorityInstruction: {
1091
+ authority: (parent: {
1092
+ [x: string]: import("@solana/addresses").Address;
1093
+ }, args: {
1094
+ address?: import("@solana/addresses").Address | undefined;
1095
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1096
+ minContextSlot?: bigint | undefined;
1097
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1098
+ multisigAuthority: (parent: {
1099
+ [x: string]: import("@solana/addresses").Address;
1100
+ }, args: {
1101
+ address?: import("@solana/addresses").Address | undefined;
1102
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1103
+ minContextSlot?: bigint | undefined;
1104
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1105
+ newAuthority: (parent: {
1106
+ [x: string]: import("@solana/addresses").Address;
1107
+ }, args: {
1108
+ address?: import("@solana/addresses").Address | undefined;
1109
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1110
+ minContextSlot?: bigint | undefined;
1111
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1112
+ };
1113
+ SplTokenSyncNativeInstruction: {
1114
+ account: (parent: {
1115
+ [x: string]: import("@solana/addresses").Address;
1116
+ }, args: {
1117
+ address?: import("@solana/addresses").Address | undefined;
1118
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1119
+ minContextSlot?: bigint | undefined;
1120
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1121
+ };
1122
+ SplTokenThawAccountInstruction: {
1123
+ account: (parent: {
1124
+ [x: string]: import("@solana/addresses").Address;
1125
+ }, args: {
1126
+ address?: import("@solana/addresses").Address | undefined;
1127
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1128
+ minContextSlot?: bigint | undefined;
1129
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1130
+ freezeAuthority: (parent: {
1131
+ [x: string]: import("@solana/addresses").Address;
1132
+ }, args: {
1133
+ address?: import("@solana/addresses").Address | undefined;
1134
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1135
+ minContextSlot?: bigint | undefined;
1136
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1137
+ mint: (parent: {
1138
+ [x: string]: import("@solana/addresses").Address;
1139
+ }, args: {
1140
+ address?: import("@solana/addresses").Address | undefined;
1141
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1142
+ minContextSlot?: bigint | undefined;
1143
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1144
+ multisigFreezeAuthority: (parent: {
1145
+ [x: string]: import("@solana/addresses").Address;
1146
+ }, args: {
1147
+ address?: import("@solana/addresses").Address | undefined;
1148
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1149
+ minContextSlot?: bigint | undefined;
1150
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1151
+ };
1152
+ SplTokenTransferCheckedInstruction: {
1153
+ authority: (parent: {
1154
+ [x: string]: import("@solana/addresses").Address;
1155
+ }, args: {
1156
+ address?: import("@solana/addresses").Address | undefined;
1157
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1158
+ minContextSlot?: bigint | undefined;
1159
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1160
+ destination: (parent: {
1161
+ [x: string]: import("@solana/addresses").Address;
1162
+ }, args: {
1163
+ address?: import("@solana/addresses").Address | undefined;
1164
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1165
+ minContextSlot?: bigint | undefined;
1166
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1167
+ mint: (parent: {
1168
+ [x: string]: import("@solana/addresses").Address;
1169
+ }, args: {
1170
+ address?: import("@solana/addresses").Address | undefined;
1171
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1172
+ minContextSlot?: bigint | undefined;
1173
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1174
+ multisigAuthority: (parent: {
1175
+ [x: string]: import("@solana/addresses").Address;
1176
+ }, args: {
1177
+ address?: import("@solana/addresses").Address | undefined;
1178
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1179
+ minContextSlot?: bigint | undefined;
1180
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1181
+ source: (parent: {
1182
+ [x: string]: import("@solana/addresses").Address;
1183
+ }, args: {
1184
+ address?: import("@solana/addresses").Address | undefined;
1185
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1186
+ minContextSlot?: bigint | undefined;
1187
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1188
+ };
1189
+ SplTokenTransferInstruction: {
1190
+ authority: (parent: {
1191
+ [x: string]: import("@solana/addresses").Address;
1192
+ }, args: {
1193
+ address?: import("@solana/addresses").Address | undefined;
1194
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1195
+ minContextSlot?: bigint | undefined;
1196
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1197
+ destination: (parent: {
1198
+ [x: string]: import("@solana/addresses").Address;
1199
+ }, args: {
1200
+ address?: import("@solana/addresses").Address | undefined;
1201
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1202
+ minContextSlot?: bigint | undefined;
1203
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1204
+ multisigAuthority: (parent: {
1205
+ [x: string]: import("@solana/addresses").Address;
1206
+ }, args: {
1207
+ address?: import("@solana/addresses").Address | undefined;
1208
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1209
+ minContextSlot?: bigint | undefined;
1210
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1211
+ source: (parent: {
1212
+ [x: string]: import("@solana/addresses").Address;
1213
+ }, args: {
1214
+ address?: import("@solana/addresses").Address | undefined;
1215
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1216
+ minContextSlot?: bigint | undefined;
1217
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1218
+ };
1219
+ SplTokenUiAmountToAmountInstruction: {
1220
+ mint: (parent: {
1221
+ [x: string]: import("@solana/addresses").Address;
1222
+ }, args: {
1223
+ address?: import("@solana/addresses").Address | undefined;
1224
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1225
+ minContextSlot?: bigint | undefined;
1226
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1227
+ };
1228
+ StakeAuthorizeCheckedInstruction: {
1229
+ authority: (parent: {
1230
+ [x: string]: import("@solana/addresses").Address;
1231
+ }, args: {
1232
+ address?: import("@solana/addresses").Address | undefined;
1233
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1234
+ minContextSlot?: bigint | undefined;
1235
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1236
+ custodian: (parent: {
1237
+ [x: string]: import("@solana/addresses").Address;
1238
+ }, args: {
1239
+ address?: import("@solana/addresses").Address | undefined;
1240
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1241
+ minContextSlot?: bigint | undefined;
1242
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1243
+ newAuthority: (parent: {
1244
+ [x: string]: import("@solana/addresses").Address;
1245
+ }, args: {
1246
+ address?: import("@solana/addresses").Address | undefined;
1247
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1248
+ minContextSlot?: bigint | undefined;
1249
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1250
+ stakeAccount: (parent: {
1251
+ [x: string]: import("@solana/addresses").Address;
1252
+ }, args: {
1253
+ address?: import("@solana/addresses").Address | undefined;
1254
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1255
+ minContextSlot?: bigint | undefined;
1256
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1257
+ };
1258
+ StakeAuthorizeCheckedWithSeedInstruction: {
1259
+ authorityBase: (parent: {
1260
+ [x: string]: import("@solana/addresses").Address;
1261
+ }, args: {
1262
+ address?: import("@solana/addresses").Address | undefined;
1263
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1264
+ minContextSlot?: bigint | undefined;
1265
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1266
+ authorityOwner: (parent: {
1267
+ [x: string]: import("@solana/addresses").Address;
1268
+ }, args: {
1269
+ address?: import("@solana/addresses").Address | undefined;
1270
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1271
+ minContextSlot?: bigint | undefined;
1272
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1273
+ custodian: (parent: {
1274
+ [x: string]: import("@solana/addresses").Address;
1275
+ }, args: {
1276
+ address?: import("@solana/addresses").Address | undefined;
1277
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1278
+ minContextSlot?: bigint | undefined;
1279
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1280
+ newAuthorized: (parent: {
1281
+ [x: string]: import("@solana/addresses").Address;
1282
+ }, args: {
1283
+ address?: import("@solana/addresses").Address | undefined;
1284
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1285
+ minContextSlot?: bigint | undefined;
1286
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1287
+ stakeAccount: (parent: {
1288
+ [x: string]: import("@solana/addresses").Address;
1289
+ }, args: {
1290
+ address?: import("@solana/addresses").Address | undefined;
1291
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1292
+ minContextSlot?: bigint | undefined;
1293
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1294
+ };
1295
+ StakeAuthorizeInstruction: {
1296
+ authority: (parent: {
1297
+ [x: string]: import("@solana/addresses").Address;
1298
+ }, args: {
1299
+ address?: import("@solana/addresses").Address | undefined;
1300
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1301
+ minContextSlot?: bigint | undefined;
1302
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1303
+ custodian: (parent: {
1304
+ [x: string]: import("@solana/addresses").Address;
1305
+ }, args: {
1306
+ address?: import("@solana/addresses").Address | undefined;
1307
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1308
+ minContextSlot?: bigint | undefined;
1309
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1310
+ newAuthority: (parent: {
1311
+ [x: string]: import("@solana/addresses").Address;
1312
+ }, args: {
1313
+ address?: import("@solana/addresses").Address | undefined;
1314
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1315
+ minContextSlot?: bigint | undefined;
1316
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1317
+ stakeAccount: (parent: {
1318
+ [x: string]: import("@solana/addresses").Address;
1319
+ }, args: {
1320
+ address?: import("@solana/addresses").Address | undefined;
1321
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1322
+ minContextSlot?: bigint | undefined;
1323
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1324
+ };
1325
+ StakeAuthorizeWithSeedInstruction: {
1326
+ authorityBase: (parent: {
1327
+ [x: string]: import("@solana/addresses").Address;
1328
+ }, args: {
1329
+ address?: import("@solana/addresses").Address | undefined;
1330
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1331
+ minContextSlot?: bigint | undefined;
1332
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1333
+ authorityOwner: (parent: {
1334
+ [x: string]: import("@solana/addresses").Address;
1335
+ }, args: {
1336
+ address?: import("@solana/addresses").Address | undefined;
1337
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1338
+ minContextSlot?: bigint | undefined;
1339
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1340
+ custodian: (parent: {
1341
+ [x: string]: import("@solana/addresses").Address;
1342
+ }, args: {
1343
+ address?: import("@solana/addresses").Address | undefined;
1344
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1345
+ minContextSlot?: bigint | undefined;
1346
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1347
+ newAuthorized: (parent: {
1348
+ [x: string]: import("@solana/addresses").Address;
1349
+ }, args: {
1350
+ address?: import("@solana/addresses").Address | undefined;
1351
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1352
+ minContextSlot?: bigint | undefined;
1353
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1354
+ stakeAccount: (parent: {
1355
+ [x: string]: import("@solana/addresses").Address;
1356
+ }, args: {
1357
+ address?: import("@solana/addresses").Address | undefined;
1358
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1359
+ minContextSlot?: bigint | undefined;
1360
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1361
+ };
1362
+ StakeDeactivateDelinquentInstruction: {
1363
+ referenceVoteAccount: (parent: {
1364
+ [x: string]: import("@solana/addresses").Address;
1365
+ }, args: {
1366
+ address?: import("@solana/addresses").Address | undefined;
1367
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1368
+ minContextSlot?: bigint | undefined;
1369
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1370
+ stakeAccount: (parent: {
1371
+ [x: string]: import("@solana/addresses").Address;
1372
+ }, args: {
1373
+ address?: import("@solana/addresses").Address | undefined;
1374
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1375
+ minContextSlot?: bigint | undefined;
1376
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1377
+ voteAccount: (parent: {
1378
+ [x: string]: import("@solana/addresses").Address;
1379
+ }, args: {
1380
+ address?: import("@solana/addresses").Address | undefined;
1381
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1382
+ minContextSlot?: bigint | undefined;
1383
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1384
+ };
1385
+ StakeDeactivateInstruction: {
1386
+ stakeAccount: (parent: {
1387
+ [x: string]: import("@solana/addresses").Address;
1388
+ }, args: {
1389
+ address?: import("@solana/addresses").Address | undefined;
1390
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1391
+ minContextSlot?: bigint | undefined;
1392
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1393
+ stakeAuthority: (parent: {
1394
+ [x: string]: import("@solana/addresses").Address;
1395
+ }, args: {
1396
+ address?: import("@solana/addresses").Address | undefined;
1397
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1398
+ minContextSlot?: bigint | undefined;
1399
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1400
+ };
1401
+ StakeDelegateStakeInstruction: {
1402
+ stakeAccount: (parent: {
1403
+ [x: string]: import("@solana/addresses").Address;
1404
+ }, args: {
1405
+ address?: import("@solana/addresses").Address | undefined;
1406
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1407
+ minContextSlot?: bigint | undefined;
1408
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1409
+ stakeAuthority: (parent: {
1410
+ [x: string]: import("@solana/addresses").Address;
1411
+ }, args: {
1412
+ address?: import("@solana/addresses").Address | undefined;
1413
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1414
+ minContextSlot?: bigint | undefined;
1415
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1416
+ stakeConfigAccount: (parent: {
1417
+ [x: string]: import("@solana/addresses").Address;
1418
+ }, args: {
1419
+ address?: import("@solana/addresses").Address | undefined;
1420
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1421
+ minContextSlot?: bigint | undefined;
1422
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1423
+ voteAccount: (parent: {
1424
+ [x: string]: import("@solana/addresses").Address;
1425
+ }, args: {
1426
+ address?: import("@solana/addresses").Address | undefined;
1427
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1428
+ minContextSlot?: bigint | undefined;
1429
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1430
+ };
1431
+ StakeInitializeCheckedInstructionDataAuthorized: {
1432
+ staker: (parent: {
1433
+ [x: string]: import("@solana/addresses").Address;
1434
+ }, args: {
1435
+ address?: import("@solana/addresses").Address | undefined;
1436
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1437
+ minContextSlot?: bigint | undefined;
1438
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1439
+ withdrawer: (parent: {
1440
+ [x: string]: import("@solana/addresses").Address;
1441
+ }, args: {
1442
+ address?: import("@solana/addresses").Address | undefined;
1443
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1444
+ minContextSlot?: bigint | undefined;
1445
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1446
+ };
1447
+ StakeInitializeInstruction: {
1448
+ stakeAccount: (parent: {
1449
+ [x: string]: import("@solana/addresses").Address;
1450
+ }, args: {
1451
+ address?: import("@solana/addresses").Address | undefined;
1452
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1453
+ minContextSlot?: bigint | undefined;
1454
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1455
+ };
1456
+ StakeInitializeInstructionDataAuthorized: {
1457
+ staker: (parent: {
1458
+ [x: string]: import("@solana/addresses").Address;
1459
+ }, args: {
1460
+ address?: import("@solana/addresses").Address | undefined;
1461
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1462
+ minContextSlot?: bigint | undefined;
1463
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1464
+ withdrawer: (parent: {
1465
+ [x: string]: import("@solana/addresses").Address;
1466
+ }, args: {
1467
+ address?: import("@solana/addresses").Address | undefined;
1468
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1469
+ minContextSlot?: bigint | undefined;
1470
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1471
+ };
1472
+ StakeMergeInstruction: {
1473
+ destination: (parent: {
1474
+ [x: string]: import("@solana/addresses").Address;
1475
+ }, args: {
1476
+ address?: import("@solana/addresses").Address | undefined;
1477
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1478
+ minContextSlot?: bigint | undefined;
1479
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1480
+ source: (parent: {
1481
+ [x: string]: import("@solana/addresses").Address;
1482
+ }, args: {
1483
+ address?: import("@solana/addresses").Address | undefined;
1484
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1485
+ minContextSlot?: bigint | undefined;
1486
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1487
+ stakeAuthority: (parent: {
1488
+ [x: string]: import("@solana/addresses").Address;
1489
+ }, args: {
1490
+ address?: import("@solana/addresses").Address | undefined;
1491
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1492
+ minContextSlot?: bigint | undefined;
1493
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1494
+ };
1495
+ StakeRedelegateInstruction: {
1496
+ newStakeAccount: (parent: {
1497
+ [x: string]: import("@solana/addresses").Address;
1498
+ }, args: {
1499
+ address?: import("@solana/addresses").Address | undefined;
1500
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1501
+ minContextSlot?: bigint | undefined;
1502
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1503
+ stakeAccount: (parent: {
1504
+ [x: string]: import("@solana/addresses").Address;
1505
+ }, args: {
1506
+ address?: import("@solana/addresses").Address | undefined;
1507
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1508
+ minContextSlot?: bigint | undefined;
1509
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1510
+ stakeAuthority: (parent: {
1511
+ [x: string]: import("@solana/addresses").Address;
1512
+ }, args: {
1513
+ address?: import("@solana/addresses").Address | undefined;
1514
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1515
+ minContextSlot?: bigint | undefined;
1516
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1517
+ stakeConfigAccount: (parent: {
1518
+ [x: string]: import("@solana/addresses").Address;
1519
+ }, args: {
1520
+ address?: import("@solana/addresses").Address | undefined;
1521
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1522
+ minContextSlot?: bigint | undefined;
1523
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1524
+ voteAccount: (parent: {
1525
+ [x: string]: import("@solana/addresses").Address;
1526
+ }, args: {
1527
+ address?: import("@solana/addresses").Address | undefined;
1528
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1529
+ minContextSlot?: bigint | undefined;
1530
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1531
+ };
1532
+ StakeSetLockupCheckedInstruction: {
1533
+ custodian: (parent: {
1534
+ [x: string]: import("@solana/addresses").Address;
1535
+ }, args: {
1536
+ address?: import("@solana/addresses").Address | undefined;
1537
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1538
+ minContextSlot?: bigint | undefined;
1539
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1540
+ stakeAccount: (parent: {
1541
+ [x: string]: import("@solana/addresses").Address;
1542
+ }, args: {
1543
+ address?: import("@solana/addresses").Address | undefined;
1544
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1545
+ minContextSlot?: bigint | undefined;
1546
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1547
+ };
1548
+ StakeSetLockupInstruction: {
1549
+ custodian: (parent: {
1550
+ [x: string]: import("@solana/addresses").Address;
1551
+ }, args: {
1552
+ address?: import("@solana/addresses").Address | undefined;
1553
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1554
+ minContextSlot?: bigint | undefined;
1555
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1556
+ stakeAccount: (parent: {
1557
+ [x: string]: import("@solana/addresses").Address;
1558
+ }, args: {
1559
+ address?: import("@solana/addresses").Address | undefined;
1560
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1561
+ minContextSlot?: bigint | undefined;
1562
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1563
+ };
1564
+ StakeSplitInstruction: {
1565
+ newSplitAccount: (parent: {
1566
+ [x: string]: import("@solana/addresses").Address;
1567
+ }, args: {
1568
+ address?: import("@solana/addresses").Address | undefined;
1569
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1570
+ minContextSlot?: bigint | undefined;
1571
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1572
+ stakeAccount: (parent: {
1573
+ [x: string]: import("@solana/addresses").Address;
1574
+ }, args: {
1575
+ address?: import("@solana/addresses").Address | undefined;
1576
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1577
+ minContextSlot?: bigint | undefined;
1578
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1579
+ stakeAuthority: (parent: {
1580
+ [x: string]: import("@solana/addresses").Address;
1581
+ }, args: {
1582
+ address?: import("@solana/addresses").Address | undefined;
1583
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1584
+ minContextSlot?: bigint | undefined;
1585
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1586
+ };
1587
+ StakeWithdrawInstruction: {
1588
+ destination: (parent: {
1589
+ [x: string]: import("@solana/addresses").Address;
1590
+ }, args: {
1591
+ address?: import("@solana/addresses").Address | undefined;
1592
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1593
+ minContextSlot?: bigint | undefined;
1594
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1595
+ stakeAccount: (parent: {
1596
+ [x: string]: import("@solana/addresses").Address;
1597
+ }, args: {
1598
+ address?: import("@solana/addresses").Address | undefined;
1599
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1600
+ minContextSlot?: bigint | undefined;
1601
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1602
+ withdrawAuthority: (parent: {
1603
+ [x: string]: import("@solana/addresses").Address;
1604
+ }, args: {
1605
+ address?: import("@solana/addresses").Address | undefined;
1606
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1607
+ minContextSlot?: bigint | undefined;
1608
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1609
+ };
1610
+ TransactionInstruction: {
1611
+ __resolveType(instruction: {
1612
+ programName: string;
1613
+ instructionType: string;
1614
+ }): "CreateLookupTableInstruction" | "FreezeLookupTableInstruction" | "ExtendLookupTableInstruction" | "DeactivateLookupTableInstruction" | "CloseLookupTableInstruction" | "BpfLoaderWriteInstruction" | "BpfLoaderFinalizeInstruction" | "BpfUpgradeableLoaderInitializeBufferInstruction" | "BpfUpgradeableLoaderWriteInstruction" | "BpfUpgradeableLoaderDeployWithMaxDataLenInstruction" | "BpfUpgradeableLoaderUpgradeInstruction" | "BpfUpgradeableLoaderSetAuthorityInstruction" | "BpfUpgradeableLoaderSetAuthorityCheckedInstruction" | "BpfUpgradeableLoaderCloseInstruction" | "BpfUpgradeableLoaderExtendProgramInstruction" | "SplAssociatedTokenCreateInstruction" | "SplAssociatedTokenCreateIdempotentInstruction" | "SplAssociatedTokenRecoverNestedInstruction" | "SplMemoInstruction" | "SplTokenInitializeMintInstruction" | "SplTokenInitializeMint2Instruction" | "SplTokenInitializeAccountInstruction" | "SplTokenInitializeAccount2Instruction" | "SplTokenInitializeAccount3Instruction" | "SplTokenInitializeMultisigInstruction" | "SplTokenInitializeMultisig2Instruction" | "SplTokenTransferInstruction" | "SplTokenApproveInstruction" | "SplTokenRevokeInstruction" | "SplTokenSetAuthorityInstruction" | "SplTokenMintToInstruction" | "SplTokenBurnInstruction" | "SplTokenCloseAccountInstruction" | "SplTokenFreezeAccountInstruction" | "SplTokenThawAccountInstruction" | "SplTokenTransferCheckedInstruction" | "SplTokenApproveCheckedInstruction" | "SplTokenMintToCheckedInstruction" | "SplTokenBurnCheckedInstruction" | "SplTokenSyncNativeInstruction" | "SplTokenGetAccountDataSizeInstruction" | "SplTokenInitializeImmutableOwnerInstruction" | "SplTokenAmountToUiAmountInstruction" | "SplTokenUiAmountToAmountInstruction" | "SplTokenInitializeMintCloseAuthorityInstruction" | "StakeInitializeInstruction" | "StakeAuthorizeInstruction" | "StakeDelegateStakeInstruction" | "StakeSplitInstruction" | "StakeWithdrawInstruction" | "StakeDeactivateInstruction" | "StakeSetLockupInstruction" | "StakeMergeInstruction" | "StakeAuthorizeWithSeedInstruction" | "StakeInitializeCheckedInstruction" | "StakeAuthorizeCheckedInstruction" | "StakeAuthorizeCheckedWithSeedInstruction" | "StakeSetLockupCheckedInstruction" | "StakeDeactivateDelinquentInstruction" | "StakeRedelegateInstruction" | "CreateAccountInstruction" | "AssignInstruction" | "TransferInstruction" | "CreateAccountWithSeedInstruction" | "AdvanceNonceAccountInstruction" | "WithdrawNonceAccountInstruction" | "InitializeNonceAccountInstruction" | "AuthorizeNonceAccountInstruction" | "UpgradeNonceAccountInstruction" | "AllocateInstruction" | "AllocateWithSeedInstruction" | "AssignWithSeedInstruction" | "TransferWithSeedInstruction" | "VoteInitializeAccountInstruction" | "VoteAuthorizeInstruction" | "VoteAuthorizeWithSeedInstruction" | "VoteAuthorizeCheckedWithSeedInstruction" | "VoteVoteInstruction" | "VoteUpdateVoteStateInstruction" | "VoteUpdateVoteStateSwitchInstruction" | "VoteCompactUpdateVoteStateInstruction" | "VoteCompactUpdateVoteStateSwitchInstruction" | "VoteWithdrawInstruction" | "VoteUpdateValidatorIdentityInstruction" | "VoteUpdateCommissionInstruction" | "VoteVoteSwitchInstruction" | "VoteAuthorizeCheckedInstruction" | "GenericInstruction";
1615
+ };
1616
+ TransferInstruction: {
1617
+ destination: (parent: {
1618
+ [x: string]: import("@solana/addresses").Address;
1619
+ }, args: {
1620
+ address?: import("@solana/addresses").Address | undefined;
1621
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1622
+ minContextSlot?: bigint | undefined;
1623
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1624
+ source: (parent: {
1625
+ [x: string]: import("@solana/addresses").Address;
1626
+ }, args: {
1627
+ address?: import("@solana/addresses").Address | undefined;
1628
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1629
+ minContextSlot?: bigint | undefined;
1630
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1631
+ };
1632
+ TransferWithSeedInstruction: {
1633
+ destination: (parent: {
1634
+ [x: string]: import("@solana/addresses").Address;
1635
+ }, args: {
1636
+ address?: import("@solana/addresses").Address | undefined;
1637
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1638
+ minContextSlot?: bigint | undefined;
1639
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1640
+ source: (parent: {
1641
+ [x: string]: import("@solana/addresses").Address;
1642
+ }, args: {
1643
+ address?: import("@solana/addresses").Address | undefined;
1644
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1645
+ minContextSlot?: bigint | undefined;
1646
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1647
+ sourceOwner: (parent: {
1648
+ [x: string]: import("@solana/addresses").Address;
1649
+ }, args: {
1650
+ address?: import("@solana/addresses").Address | undefined;
1651
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1652
+ minContextSlot?: bigint | undefined;
1653
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1654
+ };
1655
+ UpgradeNonceAccountInstruction: {
1656
+ nonceAccount: (parent: {
1657
+ [x: string]: import("@solana/addresses").Address;
1658
+ }, args: {
1659
+ address?: import("@solana/addresses").Address | undefined;
1660
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1661
+ minContextSlot?: bigint | undefined;
1662
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1663
+ nonceAuthority: (parent: {
1664
+ [x: string]: import("@solana/addresses").Address;
1665
+ }, args: {
1666
+ address?: import("@solana/addresses").Address | undefined;
1667
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1668
+ minContextSlot?: bigint | undefined;
1669
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1670
+ };
1671
+ VoteAuthorizeCheckedInstruction: {
1672
+ authority: (parent: {
1673
+ [x: string]: import("@solana/addresses").Address;
1674
+ }, args: {
1675
+ address?: import("@solana/addresses").Address | undefined;
1676
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1677
+ minContextSlot?: bigint | undefined;
1678
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1679
+ newAuthority: (parent: {
1680
+ [x: string]: import("@solana/addresses").Address;
1681
+ }, args: {
1682
+ address?: import("@solana/addresses").Address | undefined;
1683
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1684
+ minContextSlot?: bigint | undefined;
1685
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1686
+ voteAccount: (parent: {
1687
+ [x: string]: import("@solana/addresses").Address;
1688
+ }, args: {
1689
+ address?: import("@solana/addresses").Address | undefined;
1690
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1691
+ minContextSlot?: bigint | undefined;
1692
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1693
+ };
1694
+ VoteAuthorizeCheckedWithSeedInstruction: {
1695
+ authorityOwner: (parent: {
1696
+ [x: string]: import("@solana/addresses").Address;
1697
+ }, args: {
1698
+ address?: import("@solana/addresses").Address | undefined;
1699
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1700
+ minContextSlot?: bigint | undefined;
1701
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1702
+ newAuthority: (parent: {
1703
+ [x: string]: import("@solana/addresses").Address;
1704
+ }, args: {
1705
+ address?: import("@solana/addresses").Address | undefined;
1706
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1707
+ minContextSlot?: bigint | undefined;
1708
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1709
+ voteAccount: (parent: {
1710
+ [x: string]: import("@solana/addresses").Address;
1711
+ }, args: {
1712
+ address?: import("@solana/addresses").Address | undefined;
1713
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1714
+ minContextSlot?: bigint | undefined;
1715
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1716
+ };
1717
+ VoteAuthorizeInstruction: {
1718
+ authority: (parent: {
1719
+ [x: string]: import("@solana/addresses").Address;
1720
+ }, args: {
1721
+ address?: import("@solana/addresses").Address | undefined;
1722
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1723
+ minContextSlot?: bigint | undefined;
1724
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1725
+ newAuthority: (parent: {
1726
+ [x: string]: import("@solana/addresses").Address;
1727
+ }, args: {
1728
+ address?: import("@solana/addresses").Address | undefined;
1729
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1730
+ minContextSlot?: bigint | undefined;
1731
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1732
+ voteAccount: (parent: {
1733
+ [x: string]: import("@solana/addresses").Address;
1734
+ }, args: {
1735
+ address?: import("@solana/addresses").Address | undefined;
1736
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1737
+ minContextSlot?: bigint | undefined;
1738
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1739
+ };
1740
+ VoteAuthorizeWithSeedInstruction: {
1741
+ authorityOwner: (parent: {
1742
+ [x: string]: import("@solana/addresses").Address;
1743
+ }, args: {
1744
+ address?: import("@solana/addresses").Address | undefined;
1745
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1746
+ minContextSlot?: bigint | undefined;
1747
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1748
+ newAuthority: (parent: {
1749
+ [x: string]: import("@solana/addresses").Address;
1750
+ }, args: {
1751
+ address?: import("@solana/addresses").Address | undefined;
1752
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1753
+ minContextSlot?: bigint | undefined;
1754
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1755
+ voteAccount: (parent: {
1756
+ [x: string]: import("@solana/addresses").Address;
1757
+ }, args: {
1758
+ address?: import("@solana/addresses").Address | undefined;
1759
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1760
+ minContextSlot?: bigint | undefined;
1761
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1762
+ };
1763
+ VoteCompactUpdateVoteStateInstruction: {
1764
+ voteAccount: (parent: {
1765
+ [x: string]: import("@solana/addresses").Address;
1766
+ }, args: {
1767
+ address?: import("@solana/addresses").Address | undefined;
1768
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1769
+ minContextSlot?: bigint | undefined;
1770
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1771
+ voteAuthority: (parent: {
1772
+ [x: string]: import("@solana/addresses").Address;
1773
+ }, args: {
1774
+ address?: import("@solana/addresses").Address | undefined;
1775
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1776
+ minContextSlot?: bigint | undefined;
1777
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1778
+ };
1779
+ VoteCompactUpdateVoteStateSwitchInstruction: {
1780
+ voteAccount: (parent: {
1781
+ [x: string]: import("@solana/addresses").Address;
1782
+ }, args: {
1783
+ address?: import("@solana/addresses").Address | undefined;
1784
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1785
+ minContextSlot?: bigint | undefined;
1786
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1787
+ voteAuthority: (parent: {
1788
+ [x: string]: import("@solana/addresses").Address;
1789
+ }, args: {
1790
+ address?: import("@solana/addresses").Address | undefined;
1791
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1792
+ minContextSlot?: bigint | undefined;
1793
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1794
+ };
1795
+ VoteInitializeAccountInstruction: {
1796
+ authorizedVoter: (parent: {
1797
+ [x: string]: import("@solana/addresses").Address;
1798
+ }, args: {
1799
+ address?: import("@solana/addresses").Address | undefined;
1800
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1801
+ minContextSlot?: bigint | undefined;
1802
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1803
+ authorizedWithdrawer: (parent: {
1804
+ [x: string]: import("@solana/addresses").Address;
1805
+ }, args: {
1806
+ address?: import("@solana/addresses").Address | undefined;
1807
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1808
+ minContextSlot?: bigint | undefined;
1809
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1810
+ node: (parent: {
1811
+ [x: string]: import("@solana/addresses").Address;
1812
+ }, args: {
1813
+ address?: import("@solana/addresses").Address | undefined;
1814
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1815
+ minContextSlot?: bigint | undefined;
1816
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1817
+ voteAccount: (parent: {
1818
+ [x: string]: import("@solana/addresses").Address;
1819
+ }, args: {
1820
+ address?: import("@solana/addresses").Address | undefined;
1821
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1822
+ minContextSlot?: bigint | undefined;
1823
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1824
+ };
1825
+ VoteUpdateCommissionInstruction: {
1826
+ voteAccount: (parent: {
1827
+ [x: string]: import("@solana/addresses").Address;
1828
+ }, args: {
1829
+ address?: import("@solana/addresses").Address | undefined;
1830
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1831
+ minContextSlot?: bigint | undefined;
1832
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1833
+ withdrawAuthority: (parent: {
1834
+ [x: string]: import("@solana/addresses").Address;
1835
+ }, args: {
1836
+ address?: import("@solana/addresses").Address | undefined;
1837
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1838
+ minContextSlot?: bigint | undefined;
1839
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1840
+ };
1841
+ VoteUpdateValidatorIdentityInstruction: {
1842
+ newValidatorIdentity: (parent: {
1843
+ [x: string]: import("@solana/addresses").Address;
1844
+ }, args: {
1845
+ address?: import("@solana/addresses").Address | undefined;
1846
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1847
+ minContextSlot?: bigint | undefined;
1848
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1849
+ voteAccount: (parent: {
1850
+ [x: string]: import("@solana/addresses").Address;
1851
+ }, args: {
1852
+ address?: import("@solana/addresses").Address | undefined;
1853
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1854
+ minContextSlot?: bigint | undefined;
1855
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1856
+ withdrawAuthority: (parent: {
1857
+ [x: string]: import("@solana/addresses").Address;
1858
+ }, args: {
1859
+ address?: import("@solana/addresses").Address | undefined;
1860
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1861
+ minContextSlot?: bigint | undefined;
1862
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1863
+ };
1864
+ VoteUpdateVoteStateInstruction: {
1865
+ voteAccount: (parent: {
1866
+ [x: string]: import("@solana/addresses").Address;
1867
+ }, args: {
1868
+ address?: import("@solana/addresses").Address | undefined;
1869
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1870
+ minContextSlot?: bigint | undefined;
1871
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1872
+ voteAuthority: (parent: {
1873
+ [x: string]: import("@solana/addresses").Address;
1874
+ }, args: {
1875
+ address?: import("@solana/addresses").Address | undefined;
1876
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1877
+ minContextSlot?: bigint | undefined;
1878
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1879
+ };
1880
+ VoteUpdateVoteStateSwitchInstruction: {
1881
+ voteAccount: (parent: {
1882
+ [x: string]: import("@solana/addresses").Address;
1883
+ }, args: {
1884
+ address?: import("@solana/addresses").Address | undefined;
1885
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1886
+ minContextSlot?: bigint | undefined;
1887
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1888
+ voteAuthority: (parent: {
1889
+ [x: string]: import("@solana/addresses").Address;
1890
+ }, args: {
1891
+ address?: import("@solana/addresses").Address | undefined;
1892
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1893
+ minContextSlot?: bigint | undefined;
1894
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1895
+ };
1896
+ VoteVoteInstruction: {
1897
+ voteAccount: (parent: {
1898
+ [x: string]: import("@solana/addresses").Address;
1899
+ }, args: {
1900
+ address?: import("@solana/addresses").Address | undefined;
1901
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1902
+ minContextSlot?: bigint | undefined;
1903
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1904
+ voteAuthority: (parent: {
1905
+ [x: string]: import("@solana/addresses").Address;
1906
+ }, args: {
1907
+ address?: import("@solana/addresses").Address | undefined;
1908
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1909
+ minContextSlot?: bigint | undefined;
1910
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1911
+ };
1912
+ VoteVoteSwitchInstruction: {
1913
+ voteAccount: (parent: {
1914
+ [x: string]: import("@solana/addresses").Address;
1915
+ }, args: {
1916
+ address?: import("@solana/addresses").Address | undefined;
1917
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1918
+ minContextSlot?: bigint | undefined;
1919
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1920
+ voteAuthority: (parent: {
1921
+ [x: string]: import("@solana/addresses").Address;
1922
+ }, args: {
1923
+ address?: import("@solana/addresses").Address | undefined;
1924
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1925
+ minContextSlot?: bigint | undefined;
1926
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1927
+ };
1928
+ VoteWithdrawInstruction: {
1929
+ voteAccount: (parent: {
1930
+ [x: string]: import("@solana/addresses").Address;
1931
+ }, args: {
1932
+ address?: import("@solana/addresses").Address | undefined;
1933
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1934
+ minContextSlot?: bigint | undefined;
1935
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1936
+ withdrawAuthority: (parent: {
1937
+ [x: string]: import("@solana/addresses").Address;
1938
+ }, args: {
1939
+ address?: import("@solana/addresses").Address | undefined;
1940
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1941
+ minContextSlot?: bigint | undefined;
1942
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1943
+ };
1944
+ WithdrawNonceAccountInstruction: {
1945
+ destination: (parent: {
1946
+ [x: string]: import("@solana/addresses").Address;
1947
+ }, args: {
1948
+ address?: import("@solana/addresses").Address | undefined;
1949
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1950
+ minContextSlot?: bigint | undefined;
1951
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1952
+ nonceAccount: (parent: {
1953
+ [x: string]: import("@solana/addresses").Address;
1954
+ }, args: {
1955
+ address?: import("@solana/addresses").Address | undefined;
1956
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1957
+ minContextSlot?: bigint | undefined;
1958
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1959
+ nonceAuthority: (parent: {
1960
+ [x: string]: import("@solana/addresses").Address;
1961
+ }, args: {
1962
+ address?: import("@solana/addresses").Address | undefined;
1963
+ commitment?: import("@solana/rpc-types").Commitment | undefined;
1964
+ minContextSlot?: bigint | undefined;
1965
+ }, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo) => Promise<import("./account").AccountResult | null>;
1966
+ };
1967
+ };
1968
+ //# sourceMappingURL=instruction.d.ts.map