@sentio/sdk 3.9.0-rc.4 → 3.9.0-rc.6

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 (40) hide show
  1. package/lib/fuel/transaction.js +8 -3
  2. package/lib/fuel/transaction.js.map +1 -1
  3. package/lib/solana/builtin/index.d.ts +1 -0
  4. package/lib/solana/builtin/index.d.ts.map +1 -1
  5. package/lib/solana/builtin/index.js +1 -0
  6. package/lib/solana/builtin/index.js.map +1 -1
  7. package/lib/solana/builtin/spl-token-2022-processor.d.ts +46 -0
  8. package/lib/solana/builtin/spl-token-2022-processor.d.ts.map +1 -0
  9. package/lib/solana/builtin/spl-token-2022-processor.js +132 -0
  10. package/lib/solana/builtin/spl-token-2022-processor.js.map +1 -0
  11. package/lib/solana/builtin/spl-token-processor.d.ts +30 -30
  12. package/lib/solana/builtin/spl-token-processor.d.ts.map +1 -1
  13. package/lib/solana/builtin/types.d.ts +1699 -81
  14. package/lib/solana/builtin/types.d.ts.map +1 -1
  15. package/lib/solana/builtin/types.js +520 -72
  16. package/lib/solana/builtin/types.js.map +1 -1
  17. package/lib/solana/codegen/codegen.js +2 -2
  18. package/lib/solana/codegen/codegen.js.map +1 -1
  19. package/lib/solana/index.d.ts +1 -1
  20. package/lib/solana/index.js +1 -1
  21. package/lib/solana/solana-context.d.ts +1 -1
  22. package/lib/solana/solana-context.d.ts.map +1 -1
  23. package/lib/solana/solana-processor.d.ts +2 -2
  24. package/lib/solana/solana-processor.d.ts.map +1 -1
  25. package/lib/solana/solana-rpc-types.d.ts +75 -0
  26. package/lib/solana/solana-rpc-types.d.ts.map +1 -0
  27. package/lib/solana/solana-rpc-types.js +2 -0
  28. package/lib/solana/solana-rpc-types.js.map +1 -0
  29. package/package.json +6 -6
  30. package/src/fuel/transaction.ts +5 -5
  31. package/src/solana/builtin/index.ts +2 -1
  32. package/src/solana/builtin/spl-token-2022-processor.ts +324 -0
  33. package/src/solana/builtin/spl-token-processor.ts +30 -30
  34. package/src/solana/builtin/types.ts +659 -144
  35. package/src/solana/codegen/codegen.ts +6 -6
  36. package/src/solana/index.ts +1 -1
  37. package/src/solana/solana-context.ts +1 -1
  38. package/src/solana/solana-plugin.ts +1 -1
  39. package/src/solana/solana-processor.ts +2 -2
  40. package/src/solana/solana-rpc-types.ts +73 -0
@@ -1,13 +1,6 @@
1
- import { Infer } from "superstruct";
1
+ import { Infer } from 'superstruct';
2
2
  export declare const PublicKeyFromString: import("superstruct").Struct<String, null>;
3
3
  export type TokenAmountUi = Infer<typeof TokenAmountUi>;
4
- export type MintTo = Infer<typeof MintTo>;
5
- export type Burn = Infer<typeof Burn>;
6
- export type InitializeMint = Infer<typeof InitializeMint>;
7
- export type InitializeAccount = Infer<typeof InitializeAccount>;
8
- export type InitializeAccount2 = Infer<typeof InitializeAccount2>;
9
- export type InitializeAccount3 = Infer<typeof InitializeAccount3>;
10
- export type InitializeMultisig = Infer<typeof InitializeMultisig>;
11
4
  export declare const TokenAmountUi: import("superstruct").Struct<{
12
5
  amount: string;
13
6
  decimals: number;
@@ -17,20 +10,36 @@ export declare const TokenAmountUi: import("superstruct").Struct<{
17
10
  decimals: import("superstruct").Struct<number, null>;
18
11
  uiAmountString: import("superstruct").Struct<string, null>;
19
12
  }>;
20
- declare const InitializeMint: import("superstruct").Struct<{
13
+ export type InitializeMint = Infer<typeof InitializeMint>;
14
+ export declare const InitializeMint: import("superstruct").Struct<{
21
15
  decimals: number;
22
16
  mint: String;
23
17
  mintAuthority: String;
24
18
  rentSysvar: String;
25
19
  freezeAuthority?: String | undefined;
26
20
  }, {
27
- mint: import("superstruct").Struct<String, null>;
28
21
  decimals: import("superstruct").Struct<number, null>;
22
+ freezeAuthority: import("superstruct").Struct<String | undefined, null>;
23
+ mint: import("superstruct").Struct<String, null>;
29
24
  mintAuthority: import("superstruct").Struct<String, null>;
30
25
  rentSysvar: import("superstruct").Struct<String, null>;
31
- freezeAuthority: import("superstruct").Struct<String | undefined, null>;
32
26
  }>;
33
- declare const InitializeAccount: import("superstruct").Struct<{
27
+ export type InitializeMint2 = Infer<typeof InitializeMint2>;
28
+ export declare const InitializeMint2: import("superstruct").Struct<{
29
+ decimals: number;
30
+ mint: String;
31
+ freezeAuthority: String;
32
+ mintAuthority: String;
33
+ freezeAuthorityOption?: number | undefined;
34
+ }, {
35
+ decimals: import("superstruct").Struct<number, null>;
36
+ freezeAuthority: import("superstruct").Struct<String, null>;
37
+ freezeAuthorityOption: import("superstruct").Struct<number | undefined, null>;
38
+ mint: import("superstruct").Struct<String, null>;
39
+ mintAuthority: import("superstruct").Struct<String, null>;
40
+ }>;
41
+ export type InitializeAccount = Infer<typeof InitializeAccount>;
42
+ export declare const InitializeAccount: import("superstruct").Struct<{
34
43
  account: String;
35
44
  owner: String;
36
45
  mint: String;
@@ -41,7 +50,8 @@ declare const InitializeAccount: import("superstruct").Struct<{
41
50
  owner: import("superstruct").Struct<String, null>;
42
51
  rentSysvar: import("superstruct").Struct<String, null>;
43
52
  }>;
44
- declare const InitializeAccount2: import("superstruct").Struct<{
53
+ export type InitializeAccount2 = Infer<typeof InitializeAccount2>;
54
+ export declare const InitializeAccount2: import("superstruct").Struct<{
45
55
  account: String;
46
56
  owner: String;
47
57
  mint: String;
@@ -49,10 +59,11 @@ declare const InitializeAccount2: import("superstruct").Struct<{
49
59
  }, {
50
60
  account: import("superstruct").Struct<String, null>;
51
61
  mint: import("superstruct").Struct<String, null>;
52
- rentSysvar: import("superstruct").Struct<String, null>;
53
62
  owner: import("superstruct").Struct<String, null>;
63
+ rentSysvar: import("superstruct").Struct<String, null>;
54
64
  }>;
55
- declare const InitializeAccount3: import("superstruct").Struct<{
65
+ export type InitializeAccount3 = Infer<typeof InitializeAccount3>;
66
+ export declare const InitializeAccount3: import("superstruct").Struct<{
56
67
  account: String;
57
68
  owner: String;
58
69
  mint: String;
@@ -61,35 +72,36 @@ declare const InitializeAccount3: import("superstruct").Struct<{
61
72
  mint: import("superstruct").Struct<String, null>;
62
73
  owner: import("superstruct").Struct<String, null>;
63
74
  }>;
64
- declare const InitializeMultisig: import("superstruct").Struct<{
65
- signers: String[];
75
+ export type InitializeMultisig = Infer<typeof InitializeMultisig>;
76
+ export declare const InitializeMultisig: import("superstruct").Struct<{
66
77
  rentSysvar: String;
67
- multisig: String;
68
78
  m: number;
79
+ multisig: String;
80
+ signers: String[];
69
81
  }, {
82
+ m: import("superstruct").Struct<number, null>;
70
83
  multisig: import("superstruct").Struct<String, null>;
71
84
  rentSysvar: import("superstruct").Struct<String, null>;
72
85
  signers: import("superstruct").Struct<String[], import("superstruct").Struct<String, null>>;
73
- m: import("superstruct").Struct<number, null>;
74
86
  }>;
75
87
  export type Transfer = Infer<typeof Transfer>;
76
88
  export declare const Transfer: import("superstruct").Struct<{
77
89
  amount: string | number;
78
- source: String;
79
90
  destination: String;
91
+ source: String;
80
92
  signers?: String[] | undefined;
81
93
  authority?: String | undefined;
82
94
  multisigAuthority?: String | undefined;
83
95
  }, {
84
- source: import("superstruct").Struct<String, null>;
85
- destination: import("superstruct").Struct<String, null>;
86
96
  amount: import("superstruct").Struct<string | number, null>;
87
97
  authority: import("superstruct").Struct<String | undefined, null>;
98
+ destination: import("superstruct").Struct<String, null>;
88
99
  multisigAuthority: import("superstruct").Struct<String | undefined, null>;
89
100
  signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
101
+ source: import("superstruct").Struct<String, null>;
90
102
  }>;
91
103
  export type Approve = Infer<typeof Approve>;
92
- declare const Approve: import("superstruct").Struct<{
104
+ export declare const Approve: import("superstruct").Struct<{
93
105
  amount: string | number;
94
106
  source: String;
95
107
  delegate: String;
@@ -97,27 +109,27 @@ declare const Approve: import("superstruct").Struct<{
97
109
  signers?: String[] | undefined;
98
110
  multisigOwner?: String | undefined;
99
111
  }, {
100
- source: import("superstruct").Struct<String, null>;
101
- delegate: import("superstruct").Struct<String, null>;
102
112
  amount: import("superstruct").Struct<string | number, null>;
103
- owner: import("superstruct").Struct<String | undefined, null>;
113
+ delegate: import("superstruct").Struct<String, null>;
104
114
  multisigOwner: import("superstruct").Struct<String | undefined, null>;
115
+ owner: import("superstruct").Struct<String | undefined, null>;
105
116
  signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
117
+ source: import("superstruct").Struct<String, null>;
106
118
  }>;
107
119
  export type Revoke = Infer<typeof Revoke>;
108
- declare const Revoke: import("superstruct").Struct<{
120
+ export declare const Revoke: import("superstruct").Struct<{
109
121
  source: String;
110
122
  owner?: String | undefined;
111
123
  signers?: String[] | undefined;
112
124
  multisigOwner?: String | undefined;
113
125
  }, {
114
- source: import("superstruct").Struct<String, null>;
115
- owner: import("superstruct").Struct<String | undefined, null>;
116
126
  multisigOwner: import("superstruct").Struct<String | undefined, null>;
127
+ owner: import("superstruct").Struct<String | undefined, null>;
117
128
  signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
129
+ source: import("superstruct").Struct<String, null>;
118
130
  }>;
119
131
  export type SetAuthority = Infer<typeof SetAuthority>;
120
- declare const SetAuthority: import("superstruct").Struct<{
132
+ export declare const SetAuthority: import("superstruct").Struct<{
121
133
  authorityType: "mintTokens" | "freezeAccount" | "accountOwner" | "closeAccount";
122
134
  newAuthority: String | null;
123
135
  account?: String | undefined;
@@ -126,35 +138,37 @@ declare const SetAuthority: import("superstruct").Struct<{
126
138
  authority?: String | undefined;
127
139
  multisigAuthority?: String | undefined;
128
140
  }, {
129
- mint: import("superstruct").Struct<String | undefined, null>;
130
141
  account: import("superstruct").Struct<String | undefined, null>;
142
+ authority: import("superstruct").Struct<String | undefined, null>;
131
143
  authorityType: import("superstruct").Struct<"mintTokens" | "freezeAccount" | "accountOwner" | "closeAccount", {
132
144
  mintTokens: "mintTokens";
133
145
  freezeAccount: "freezeAccount";
134
146
  accountOwner: "accountOwner";
135
147
  closeAccount: "closeAccount";
136
148
  }>;
137
- newAuthority: import("superstruct").Struct<String | null, null>;
138
- authority: import("superstruct").Struct<String | undefined, null>;
149
+ mint: import("superstruct").Struct<String | undefined, null>;
139
150
  multisigAuthority: import("superstruct").Struct<String | undefined, null>;
151
+ newAuthority: import("superstruct").Struct<String | null, null>;
140
152
  signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
141
153
  }>;
142
- declare const MintTo: import("superstruct").Struct<{
154
+ export type MintTo = Infer<typeof MintTo>;
155
+ export declare const MintTo: import("superstruct").Struct<{
143
156
  amount: string | number;
144
157
  account: String;
145
158
  mint: String;
146
159
  mintAuthority?: String | undefined;
147
- multisigMintAuthority?: String | undefined;
148
160
  signers?: String[] | undefined;
161
+ multisigMintAuthority?: String | undefined;
149
162
  }, {
150
- mint: import("superstruct").Struct<String, null>;
151
163
  account: import("superstruct").Struct<String, null>;
152
164
  amount: import("superstruct").Struct<string | number, null>;
165
+ mint: import("superstruct").Struct<String, null>;
153
166
  mintAuthority: import("superstruct").Struct<String | undefined, null>;
154
167
  multisigMintAuthority: import("superstruct").Struct<String | undefined, null>;
155
168
  signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
156
169
  }>;
157
- declare const Burn: import("superstruct").Struct<{
170
+ export type Burn = Infer<typeof Burn>;
171
+ export declare const Burn: import("superstruct").Struct<{
158
172
  amount: string | number;
159
173
  account: String;
160
174
  mint: String;
@@ -163,13 +177,14 @@ declare const Burn: import("superstruct").Struct<{
163
177
  multisigAuthority?: String | undefined;
164
178
  }, {
165
179
  account: import("superstruct").Struct<String, null>;
166
- mint: import("superstruct").Struct<String, null>;
167
180
  amount: import("superstruct").Struct<string | number, null>;
168
181
  authority: import("superstruct").Struct<String | undefined, null>;
182
+ mint: import("superstruct").Struct<String, null>;
169
183
  multisigAuthority: import("superstruct").Struct<String | undefined, null>;
170
184
  signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
171
185
  }>;
172
- declare const CloseAccount: import("superstruct").Struct<{
186
+ export type CloseAccount = Infer<typeof CloseAccount>;
187
+ export declare const CloseAccount: import("superstruct").Struct<{
173
188
  account: String;
174
189
  destination: String;
175
190
  owner?: String | undefined;
@@ -178,44 +193,43 @@ declare const CloseAccount: import("superstruct").Struct<{
178
193
  }, {
179
194
  account: import("superstruct").Struct<String, null>;
180
195
  destination: import("superstruct").Struct<String, null>;
181
- owner: import("superstruct").Struct<String | undefined, null>;
182
196
  multisigOwner: import("superstruct").Struct<String | undefined, null>;
197
+ owner: import("superstruct").Struct<String | undefined, null>;
183
198
  signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
184
199
  }>;
185
- export type CloseAccount = Infer<typeof CloseAccount>;
186
200
  export type FreezeAccount = Infer<typeof FreezeAccount>;
187
- declare const FreezeAccount: import("superstruct").Struct<{
201
+ export declare const FreezeAccount: import("superstruct").Struct<{
188
202
  account: String;
189
203
  mint: String;
190
- signers?: String[] | undefined;
191
204
  freezeAuthority?: String | undefined;
205
+ signers?: String[] | undefined;
192
206
  multisigFreezeAuthority?: String | undefined;
193
207
  }, {
194
208
  account: import("superstruct").Struct<String, null>;
195
- mint: import("superstruct").Struct<String, null>;
196
209
  freezeAuthority: import("superstruct").Struct<String | undefined, null>;
210
+ mint: import("superstruct").Struct<String, null>;
197
211
  multisigFreezeAuthority: import("superstruct").Struct<String | undefined, null>;
198
212
  signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
199
213
  }>;
200
214
  export type ThawAccount = Infer<typeof ThawAccount>;
201
- declare const ThawAccount: import("superstruct").Struct<{
215
+ export declare const ThawAccount: import("superstruct").Struct<{
202
216
  account: String;
203
217
  mint: String;
204
- signers?: String[] | undefined;
205
218
  freezeAuthority?: String | undefined;
219
+ signers?: String[] | undefined;
206
220
  multisigFreezeAuthority?: String | undefined;
207
221
  }, {
208
222
  account: import("superstruct").Struct<String, null>;
209
- mint: import("superstruct").Struct<String, null>;
210
223
  freezeAuthority: import("superstruct").Struct<String | undefined, null>;
224
+ mint: import("superstruct").Struct<String, null>;
211
225
  multisigFreezeAuthority: import("superstruct").Struct<String | undefined, null>;
212
226
  signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
213
227
  }>;
214
228
  export type TransferChecked = Infer<typeof TransferChecked>;
215
229
  export declare const TransferChecked: import("superstruct").Struct<{
216
230
  mint: String;
217
- source: String;
218
231
  destination: String;
232
+ source: String;
219
233
  tokenAmount: {
220
234
  amount: string;
221
235
  decimals: number;
@@ -225,12 +239,12 @@ export declare const TransferChecked: import("superstruct").Struct<{
225
239
  authority?: String | undefined;
226
240
  multisigAuthority?: String | undefined;
227
241
  }, {
228
- source: import("superstruct").Struct<String, null>;
229
- mint: import("superstruct").Struct<String, null>;
230
- destination: import("superstruct").Struct<String, null>;
231
242
  authority: import("superstruct").Struct<String | undefined, null>;
243
+ destination: import("superstruct").Struct<String, null>;
244
+ mint: import("superstruct").Struct<String, null>;
232
245
  multisigAuthority: import("superstruct").Struct<String | undefined, null>;
233
246
  signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
247
+ source: import("superstruct").Struct<String, null>;
234
248
  tokenAmount: import("superstruct").Struct<{
235
249
  amount: string;
236
250
  decimals: number;
@@ -242,7 +256,7 @@ export declare const TransferChecked: import("superstruct").Struct<{
242
256
  }>;
243
257
  }>;
244
258
  export type ApproveChecked = Infer<typeof ApproveChecked>;
245
- declare const ApproveChecked: import("superstruct").Struct<{
259
+ export declare const ApproveChecked: import("superstruct").Struct<{
246
260
  mint: String;
247
261
  source: String;
248
262
  delegate: String;
@@ -255,12 +269,12 @@ declare const ApproveChecked: import("superstruct").Struct<{
255
269
  signers?: String[] | undefined;
256
270
  multisigOwner?: String | undefined;
257
271
  }, {
258
- source: import("superstruct").Struct<String, null>;
259
- mint: import("superstruct").Struct<String, null>;
260
272
  delegate: import("superstruct").Struct<String, null>;
261
- owner: import("superstruct").Struct<String | undefined, null>;
273
+ mint: import("superstruct").Struct<String, null>;
262
274
  multisigOwner: import("superstruct").Struct<String | undefined, null>;
275
+ owner: import("superstruct").Struct<String | undefined, null>;
263
276
  signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
277
+ source: import("superstruct").Struct<String, null>;
264
278
  tokenAmount: import("superstruct").Struct<{
265
279
  amount: string;
266
280
  decimals: number;
@@ -272,7 +286,7 @@ declare const ApproveChecked: import("superstruct").Struct<{
272
286
  }>;
273
287
  }>;
274
288
  export type MintToChecked = Infer<typeof MintToChecked>;
275
- declare const MintToChecked: import("superstruct").Struct<{
289
+ export declare const MintToChecked: import("superstruct").Struct<{
276
290
  account: String;
277
291
  mint: String;
278
292
  tokenAmount: {
@@ -281,8 +295,8 @@ declare const MintToChecked: import("superstruct").Struct<{
281
295
  uiAmountString: string;
282
296
  };
283
297
  mintAuthority?: String | undefined;
284
- multisigMintAuthority?: String | undefined;
285
298
  signers?: String[] | undefined;
299
+ multisigMintAuthority?: String | undefined;
286
300
  }, {
287
301
  account: import("superstruct").Struct<String, null>;
288
302
  mint: import("superstruct").Struct<String, null>;
@@ -300,7 +314,7 @@ declare const MintToChecked: import("superstruct").Struct<{
300
314
  }>;
301
315
  }>;
302
316
  export type BurnChecked = Infer<typeof BurnChecked>;
303
- declare const BurnChecked: import("superstruct").Struct<{
317
+ export declare const BurnChecked: import("superstruct").Struct<{
304
318
  account: String;
305
319
  mint: String;
306
320
  tokenAmount: {
@@ -313,8 +327,8 @@ declare const BurnChecked: import("superstruct").Struct<{
313
327
  multisigAuthority?: String | undefined;
314
328
  }, {
315
329
  account: import("superstruct").Struct<String, null>;
316
- mint: import("superstruct").Struct<String, null>;
317
330
  authority: import("superstruct").Struct<String | undefined, null>;
331
+ mint: import("superstruct").Struct<String, null>;
318
332
  multisigAuthority: import("superstruct").Struct<String | undefined, null>;
319
333
  signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
320
334
  tokenAmount: import("superstruct").Struct<{
@@ -327,31 +341,36 @@ declare const BurnChecked: import("superstruct").Struct<{
327
341
  uiAmountString: import("superstruct").Struct<string, null>;
328
342
  }>;
329
343
  }>;
330
- export type SyncNative = Infer<typeof BurnChecked>;
344
+ export type SyncNative = Infer<typeof SyncNative>;
345
+ export declare const SyncNative: import("superstruct").Struct<{
346
+ account: String;
347
+ }, {
348
+ account: import("superstruct").Struct<String, null>;
349
+ }>;
331
350
  export type GetAccountDataSize = Infer<typeof GetAccountDataSize>;
332
- declare const GetAccountDataSize: import("superstruct").Struct<{
351
+ export declare const GetAccountDataSize: import("superstruct").Struct<{
333
352
  mint: String;
334
353
  extensionTypes?: string[] | undefined;
335
354
  }, {
336
- mint: import("superstruct").Struct<String, null>;
337
355
  extensionTypes: import("superstruct").Struct<string[] | undefined, import("superstruct").Struct<string, null>>;
356
+ mint: import("superstruct").Struct<String, null>;
338
357
  }>;
339
358
  export type InitializeImmutableOwner = Infer<typeof InitializeImmutableOwner>;
340
- declare const InitializeImmutableOwner: import("superstruct").Struct<{
359
+ export declare const InitializeImmutableOwner: import("superstruct").Struct<{
341
360
  account: String;
342
361
  }, {
343
362
  account: import("superstruct").Struct<String, null>;
344
363
  }>;
345
364
  export type AmountToUiAmount = Infer<typeof AmountToUiAmount>;
346
- declare const AmountToUiAmount: import("superstruct").Struct<{
365
+ export declare const AmountToUiAmount: import("superstruct").Struct<{
347
366
  amount: string | number;
348
367
  mint: String;
349
368
  }, {
350
- mint: import("superstruct").Struct<String, null>;
351
369
  amount: import("superstruct").Struct<string | number, null>;
370
+ mint: import("superstruct").Struct<String, null>;
352
371
  }>;
353
372
  export type UiAmountToAmount = Infer<typeof UiAmountToAmount>;
354
- declare const UiAmountToAmount: import("superstruct").Struct<{
373
+ export declare const UiAmountToAmount: import("superstruct").Struct<{
355
374
  mint: String;
356
375
  uiAmount: string;
357
376
  }, {
@@ -359,7 +378,7 @@ declare const UiAmountToAmount: import("superstruct").Struct<{
359
378
  uiAmount: import("superstruct").Struct<string, null>;
360
379
  }>;
361
380
  export type InitializeMintCloseAuthority = Infer<typeof InitializeMintCloseAuthority>;
362
- declare const InitializeMintCloseAuthority: import("superstruct").Struct<{
381
+ export declare const InitializeMintCloseAuthority: import("superstruct").Struct<{
363
382
  mint: String;
364
383
  newAuthority: String;
365
384
  }, {
@@ -367,62 +386,1661 @@ declare const InitializeMintCloseAuthority: import("superstruct").Struct<{
367
386
  newAuthority: import("superstruct").Struct<String, null>;
368
387
  }>;
369
388
  export type TransferFeeExtension = Infer<typeof TransferFeeExtension>;
370
- declare const TransferFeeExtension: import("superstruct").Struct<{
389
+ export declare const TransferFeeExtension: import("superstruct").Struct<{
371
390
  mint: String;
391
+ maximumFee: number;
392
+ transferFeeBasisPoints: number;
372
393
  transferFeeConfigAuthority: String;
373
394
  withdrawWitheldAuthority: String;
374
- transferFeeBasisPoints: number;
375
- maximumFee: number;
376
395
  }, {
396
+ maximumFee: import("superstruct").Struct<number, null>;
377
397
  mint: import("superstruct").Struct<String, null>;
398
+ transferFeeBasisPoints: import("superstruct").Struct<number, null>;
378
399
  transferFeeConfigAuthority: import("superstruct").Struct<String, null>;
379
400
  withdrawWitheldAuthority: import("superstruct").Struct<String, null>;
380
- transferFeeBasisPoints: import("superstruct").Struct<number, null>;
381
- maximumFee: import("superstruct").Struct<number, null>;
382
401
  }>;
383
402
  export type DefaultAccountStateExtension = Infer<typeof DefaultAccountStateExtension>;
384
- declare const DefaultAccountStateExtension: import("superstruct").Struct<{
403
+ export declare const DefaultAccountStateExtension: import("superstruct").Struct<{
385
404
  mint: String;
386
405
  accountState: string;
387
406
  freezeAuthority?: String | undefined;
388
407
  }, {
389
- mint: import("superstruct").Struct<String, null>;
390
408
  accountState: import("superstruct").Struct<string, null>;
391
409
  freezeAuthority: import("superstruct").Struct<String | undefined, null>;
410
+ mint: import("superstruct").Struct<String, null>;
392
411
  }>;
393
412
  export type Reallocate = Infer<typeof Reallocate>;
394
- declare const Reallocate: import("superstruct").Struct<{
413
+ export declare const Reallocate: import("superstruct").Struct<{
395
414
  account: String;
396
415
  extensionTypes: string[];
397
416
  payer: String;
398
417
  systemProgram: String;
399
418
  }, {
400
419
  account: import("superstruct").Struct<String, null>;
420
+ extensionTypes: import("superstruct").Struct<string[], import("superstruct").Struct<string, null>>;
401
421
  payer: import("superstruct").Struct<String, null>;
402
422
  systemProgram: import("superstruct").Struct<String, null>;
403
- extensionTypes: import("superstruct").Struct<string[], import("superstruct").Struct<string, null>>;
404
423
  }>;
405
424
  export type MemoTransferExtension = Infer<typeof MemoTransferExtension>;
406
- declare const MemoTransferExtension: import("superstruct").Struct<{
425
+ export declare const MemoTransferExtension: import("superstruct").Struct<{
407
426
  account: String;
408
427
  owner?: String | undefined;
409
428
  signers?: String[] | undefined;
410
429
  multisigOwner?: String | undefined;
411
430
  }, {
412
431
  account: import("superstruct").Struct<String, null>;
413
- owner: import("superstruct").Struct<String | undefined, null>;
414
432
  multisigOwner: import("superstruct").Struct<String | undefined, null>;
433
+ owner: import("superstruct").Struct<String | undefined, null>;
415
434
  signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
416
435
  }>;
417
436
  export type CreateNativeMint = Infer<typeof CreateNativeMint>;
418
- declare const CreateNativeMint: import("superstruct").Struct<{
437
+ export declare const CreateNativeMint: import("superstruct").Struct<{
419
438
  payer: String;
420
439
  systemProgram: String;
421
440
  nativeMint: String;
422
441
  }, {
423
- payer: import("superstruct").Struct<String, null>;
424
442
  nativeMint: import("superstruct").Struct<String, null>;
443
+ payer: import("superstruct").Struct<String, null>;
425
444
  systemProgram: import("superstruct").Struct<String, null>;
426
445
  }>;
427
- export {};
446
+ export type InitializeMetadataPointerInfo = Infer<typeof InitializeMetadataPointer>;
447
+ export declare const InitializeMetadataPointer: import("superstruct").Struct<{
448
+ mint: String;
449
+ authority: String;
450
+ metadataAddress: String;
451
+ }, {
452
+ authority: import("superstruct").Struct<String, null>;
453
+ metadataAddress: import("superstruct").Struct<String, null>;
454
+ mint: import("superstruct").Struct<String, null>;
455
+ }>;
456
+ export type InitializeGroupMemberPointerInfo = Infer<typeof InitializeGroupMemberPointer>;
457
+ export declare const InitializeGroupMemberPointer: import("superstruct").Struct<{
458
+ mint: String;
459
+ authority: String;
460
+ memberAddress: String;
461
+ }, {
462
+ authority: import("superstruct").Struct<String, null>;
463
+ memberAddress: import("superstruct").Struct<String, null>;
464
+ mint: import("superstruct").Struct<String, null>;
465
+ }>;
466
+ export type InitializeNonTransferableMint = Infer<typeof InitializeNonTransferableMint>;
467
+ export declare const InitializeNonTransferableMint: import("superstruct").Struct<{
468
+ mint: String;
469
+ }, {
470
+ mint: import("superstruct").Struct<String, null>;
471
+ }>;
472
+ export type InitializePermanentDelegate = Infer<typeof InitializePermanentDelegate>;
473
+ export declare const InitializePermanentDelegate: import("superstruct").Struct<{
474
+ mint: String;
475
+ delegate: String;
476
+ }, {
477
+ delegate: import("superstruct").Struct<String, null>;
478
+ mint: import("superstruct").Struct<String, null>;
479
+ }>;
480
+ export type InitializeTokenMetadataInfo = Infer<typeof InitializeTokenMetadata>;
481
+ export declare const InitializeTokenMetadata: import("superstruct").Struct<{
482
+ symbol: string;
483
+ name: string;
484
+ metadata: String;
485
+ mint: String;
486
+ uri: string;
487
+ mintAuthority: String;
488
+ updateAuthority: String;
489
+ }, {
490
+ metadata: import("superstruct").Struct<String, null>;
491
+ mint: import("superstruct").Struct<String, null>;
492
+ mintAuthority: import("superstruct").Struct<String, null>;
493
+ name: import("superstruct").Struct<string, null>;
494
+ symbol: import("superstruct").Struct<string, null>;
495
+ updateAuthority: import("superstruct").Struct<String, null>;
496
+ uri: import("superstruct").Struct<string, null>;
497
+ }>;
498
+ export type UpdateTokenMetadataFieldInfo = Infer<typeof UpdateTokenMetadataField>;
499
+ export declare const UpdateTokenMetadataField: import("superstruct").Struct<{
500
+ value: string;
501
+ field: string;
502
+ metadata: String;
503
+ updateAuthority: String;
504
+ }, {
505
+ field: import("superstruct").Struct<string, null>;
506
+ metadata: import("superstruct").Struct<String, null>;
507
+ updateAuthority: import("superstruct").Struct<String, null>;
508
+ value: import("superstruct").Struct<string, null>;
509
+ }>;
510
+ export type RemoveTokenMetadataKeyInfo = Infer<typeof RemoveTokenMetadataKey>;
511
+ export declare const RemoveTokenMetadataKey: import("superstruct").Struct<{
512
+ key: string;
513
+ metadata: String;
514
+ updateAuthority: String;
515
+ idempotent?: boolean | undefined;
516
+ }, {
517
+ idempotent: import("superstruct").Struct<boolean | undefined, null>;
518
+ key: import("superstruct").Struct<string, null>;
519
+ metadata: import("superstruct").Struct<String, null>;
520
+ updateAuthority: import("superstruct").Struct<String, null>;
521
+ }>;
522
+ export type UpdateTokenMetadataUpdateAuthorityInfo = Infer<typeof UpdateTokenMetadataUpdateAuthority>;
523
+ export declare const UpdateTokenMetadataUpdateAuthority: import("superstruct").Struct<{
524
+ metadata: String;
525
+ updateAuthority: String;
526
+ newUpdateAuthority: String;
527
+ }, {
528
+ metadata: import("superstruct").Struct<String, null>;
529
+ newUpdateAuthority: import("superstruct").Struct<String, null>;
530
+ updateAuthority: import("superstruct").Struct<String, null>;
531
+ }>;
532
+ export type UpdateTokenMetadataAuthorityInfo = Infer<typeof UpdateTokenMetadataAuthority>;
533
+ export declare const UpdateTokenMetadataAuthority: import("superstruct").Struct<{
534
+ metadata: String;
535
+ newAuthority: String;
536
+ updateAuthority: String;
537
+ }, {
538
+ metadata: import("superstruct").Struct<String, null>;
539
+ newAuthority: import("superstruct").Struct<String, null>;
540
+ updateAuthority: import("superstruct").Struct<String, null>;
541
+ }>;
542
+ export type EmitTokenMetadataInfo = Infer<typeof EmitTokenMetadata>;
543
+ export declare const EmitTokenMetadata: import("superstruct").Struct<{
544
+ metadata: String;
545
+ start?: number | null | undefined;
546
+ end?: number | null | undefined;
547
+ }, {
548
+ end: import("superstruct").Struct<number | null | undefined, null>;
549
+ metadata: import("superstruct").Struct<String, null>;
550
+ start: import("superstruct").Struct<number | null | undefined, null>;
551
+ }>;
552
+ export type UpdateMetadataPointerInfo = Infer<typeof UpdateMetadataPointer>;
553
+ export declare const UpdateMetadataPointer: import("superstruct").Struct<{
554
+ mint: String;
555
+ authority: String;
556
+ metadataAddress?: String | null | undefined;
557
+ }, {
558
+ authority: import("superstruct").Struct<String, null>;
559
+ metadataAddress: import("superstruct").Struct<String | null | undefined, null>;
560
+ mint: import("superstruct").Struct<String, null>;
561
+ }>;
562
+ export type InitializeGroupPointerInfo = Infer<typeof InitializeGroupPointer>;
563
+ export declare const InitializeGroupPointer: import("superstruct").Struct<{
564
+ mint: String;
565
+ authority: String;
566
+ groupAddress: String;
567
+ }, {
568
+ authority: import("superstruct").Struct<String, null>;
569
+ groupAddress: import("superstruct").Struct<String, null>;
570
+ mint: import("superstruct").Struct<String, null>;
571
+ }>;
572
+ export type UpdateGroupPointerInfo = Infer<typeof UpdateGroupPointer>;
573
+ export declare const UpdateGroupPointer: import("superstruct").Struct<{
574
+ mint: String;
575
+ authority: String;
576
+ groupAddress?: String | null | undefined;
577
+ }, {
578
+ authority: import("superstruct").Struct<String, null>;
579
+ groupAddress: import("superstruct").Struct<String | null | undefined, null>;
580
+ mint: import("superstruct").Struct<String, null>;
581
+ }>;
582
+ export type UpdateGroupMemberPointerInfo = Infer<typeof UpdateGroupMemberPointer>;
583
+ export declare const UpdateGroupMemberPointer: import("superstruct").Struct<{
584
+ mint: String;
585
+ authority: String;
586
+ memberAddress?: String | null | undefined;
587
+ }, {
588
+ authority: import("superstruct").Struct<String, null>;
589
+ memberAddress: import("superstruct").Struct<String | null | undefined, null>;
590
+ mint: import("superstruct").Struct<String, null>;
591
+ }>;
592
+ export type InitializeTokenGroupInfo = Infer<typeof InitializeTokenGroup>;
593
+ export declare const InitializeTokenGroup: import("superstruct").Struct<{
594
+ mint: String;
595
+ maxSize: number;
596
+ mintAuthority: String;
597
+ updateAuthority: String;
598
+ group: String;
599
+ }, {
600
+ group: import("superstruct").Struct<String, null>;
601
+ maxSize: import("superstruct").Struct<number, null>;
602
+ mint: import("superstruct").Struct<String, null>;
603
+ mintAuthority: import("superstruct").Struct<String, null>;
604
+ updateAuthority: import("superstruct").Struct<String, null>;
605
+ }>;
606
+ export type UpdateTokenGroupMaxSizeInfo = Infer<typeof UpdateTokenGroupMaxSize>;
607
+ export declare const UpdateTokenGroupMaxSize: import("superstruct").Struct<{
608
+ maxSize: number;
609
+ updateAuthority: String;
610
+ group: String;
611
+ }, {
612
+ group: import("superstruct").Struct<String, null>;
613
+ maxSize: import("superstruct").Struct<number, null>;
614
+ updateAuthority: import("superstruct").Struct<String, null>;
615
+ }>;
616
+ export type UpdateTokenGroupUpdateAuthorityInfo = Infer<typeof UpdateTokenGroupUpdateAuthority>;
617
+ export declare const UpdateTokenGroupUpdateAuthority: import("superstruct").Struct<{
618
+ updateAuthority: String;
619
+ newUpdateAuthority: String;
620
+ group: String;
621
+ }, {
622
+ group: import("superstruct").Struct<String, null>;
623
+ newUpdateAuthority: import("superstruct").Struct<String, null>;
624
+ updateAuthority: import("superstruct").Struct<String, null>;
625
+ }>;
626
+ export type InitializeTokenGroupMemberInfo = Infer<typeof InitializeTokenGroupMember>;
627
+ export declare const InitializeTokenGroupMember: import("superstruct").Struct<{
628
+ group: String;
629
+ groupUpdateAuthority: String;
630
+ member: String;
631
+ memberMint: String;
632
+ memberMintAuthority: String;
633
+ }, {
634
+ group: import("superstruct").Struct<String, null>;
635
+ groupUpdateAuthority: import("superstruct").Struct<String, null>;
636
+ member: import("superstruct").Struct<String, null>;
637
+ memberMint: import("superstruct").Struct<String, null>;
638
+ memberMintAuthority: import("superstruct").Struct<String, null>;
639
+ }>;
640
+ export type InitializeConfidentialTransferMint = Infer<typeof InitializeConfidentialTransferMint>;
641
+ export declare const InitializeConfidentialTransferMint: import("superstruct").Struct<{
642
+ mint: String;
643
+ auditorElGamalPubkey: string | null;
644
+ autoApproveNewAccounts: boolean;
645
+ authority?: String | undefined;
646
+ }, {
647
+ auditorElGamalPubkey: import("superstruct").Struct<string | null, null>;
648
+ authority: import("superstruct").Struct<String | undefined, null>;
649
+ autoApproveNewAccounts: import("superstruct").Struct<boolean, null>;
650
+ mint: import("superstruct").Struct<String, null>;
651
+ }>;
652
+ export type UpdateConfidentialTransferMint = Infer<typeof UpdateConfidentialTransferMint>;
653
+ export declare const UpdateConfidentialTransferMint: import("superstruct").Struct<{
654
+ mint: String;
655
+ auditorElGamalPubkey: string | null;
656
+ autoApproveNewAccounts: boolean;
657
+ confidentialTransferMintAuthority: String;
658
+ }, {
659
+ auditorElGamalPubkey: import("superstruct").Struct<string | null, null>;
660
+ autoApproveNewAccounts: import("superstruct").Struct<boolean, null>;
661
+ confidentialTransferMintAuthority: import("superstruct").Struct<String, null>;
662
+ mint: import("superstruct").Struct<String, null>;
663
+ }>;
664
+ export type ConfigureConfidentialTransferAccount = Infer<typeof ConfigureConfidentialTransferAccount>;
665
+ export declare const ConfigureConfidentialTransferAccount: import("superstruct").Struct<{
666
+ account: String;
667
+ mint: String;
668
+ decryptableZeroBalance: string;
669
+ maximumPendingBalanceCreditCounter: string | number;
670
+ proofInstructionOffset: number;
671
+ owner?: String | undefined;
672
+ signers?: String[] | undefined;
673
+ multisigOwner?: String | undefined;
674
+ instructionsSysvar?: String | undefined;
675
+ proofContextStateAccount?: String | undefined;
676
+ recordAccount?: String | undefined;
677
+ }, {
678
+ account: import("superstruct").Struct<String, null>;
679
+ decryptableZeroBalance: import("superstruct").Struct<string, null>;
680
+ instructionsSysvar: import("superstruct").Struct<String | undefined, null>;
681
+ maximumPendingBalanceCreditCounter: import("superstruct").Struct<string | number, null>;
682
+ mint: import("superstruct").Struct<String, null>;
683
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
684
+ owner: import("superstruct").Struct<String | undefined, null>;
685
+ proofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
686
+ proofInstructionOffset: import("superstruct").Struct<number, null>;
687
+ recordAccount: import("superstruct").Struct<String | undefined, null>;
688
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
689
+ }>;
690
+ export type ApproveConfidentialTransferAccount = Infer<typeof ApproveConfidentialTransferAccount>;
691
+ export declare const ApproveConfidentialTransferAccount: import("superstruct").Struct<{
692
+ account: String;
693
+ mint: String;
694
+ confidentialTransferAuditorAuthority: String;
695
+ }, {
696
+ account: import("superstruct").Struct<String, null>;
697
+ confidentialTransferAuditorAuthority: import("superstruct").Struct<String, null>;
698
+ mint: import("superstruct").Struct<String, null>;
699
+ }>;
700
+ export type EmptyConfidentialTransferAccount = Infer<typeof EmptyConfidentialTransferAccount>;
701
+ export declare const EmptyConfidentialTransferAccount: import("superstruct").Struct<{
702
+ account: String;
703
+ proofInstructionOffset: number;
704
+ owner?: String | undefined;
705
+ signers?: String[] | undefined;
706
+ multisigOwner?: String | undefined;
707
+ instructionsSysvar?: String | undefined;
708
+ proofContextStateAccount?: String | undefined;
709
+ recordAccount?: String | undefined;
710
+ }, {
711
+ account: import("superstruct").Struct<String, null>;
712
+ instructionsSysvar: import("superstruct").Struct<String | undefined, null>;
713
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
714
+ owner: import("superstruct").Struct<String | undefined, null>;
715
+ proofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
716
+ proofInstructionOffset: import("superstruct").Struct<number, null>;
717
+ recordAccount: import("superstruct").Struct<String | undefined, null>;
718
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
719
+ }>;
720
+ export type DepositConfidentialTransfer = Infer<typeof DepositConfidentialTransfer>;
721
+ export declare const DepositConfidentialTransfer: import("superstruct").Struct<{
722
+ amount: string | number;
723
+ decimals: number;
724
+ mint: String;
725
+ destination: String;
726
+ source: String;
727
+ owner?: String | undefined;
728
+ signers?: String[] | undefined;
729
+ multisigOwner?: String | undefined;
730
+ }, {
731
+ amount: import("superstruct").Struct<string | number, null>;
732
+ decimals: import("superstruct").Struct<number, null>;
733
+ destination: import("superstruct").Struct<String, null>;
734
+ mint: import("superstruct").Struct<String, null>;
735
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
736
+ owner: import("superstruct").Struct<String | undefined, null>;
737
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
738
+ source: import("superstruct").Struct<String, null>;
739
+ }>;
740
+ export type WithdrawConfidentialTransfer = Infer<typeof WithdrawConfidentialTransfer>;
741
+ export declare const WithdrawConfidentialTransfer: import("superstruct").Struct<{
742
+ amount: string | number;
743
+ decimals: number;
744
+ mint: String;
745
+ destination: String;
746
+ source: String;
747
+ equalityProofInstructionOffset: number;
748
+ newDecryptableAvailableBalance: string;
749
+ rangeProofInstructionOffset: number;
750
+ owner?: String | undefined;
751
+ signers?: String[] | undefined;
752
+ multisigOwner?: String | undefined;
753
+ instructionsSysvar?: String | undefined;
754
+ equalityProofContextStateAccount?: String | undefined;
755
+ equalityProofRecordAccount?: String | undefined;
756
+ rangeProofContextStateAccount?: String | undefined;
757
+ rangeProofRecordAccount?: String | undefined;
758
+ }, {
759
+ amount: import("superstruct").Struct<string | number, null>;
760
+ decimals: import("superstruct").Struct<number, null>;
761
+ destination: import("superstruct").Struct<String, null>;
762
+ equalityProofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
763
+ equalityProofInstructionOffset: import("superstruct").Struct<number, null>;
764
+ equalityProofRecordAccount: import("superstruct").Struct<String | undefined, null>;
765
+ instructionsSysvar: import("superstruct").Struct<String | undefined, null>;
766
+ mint: import("superstruct").Struct<String, null>;
767
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
768
+ newDecryptableAvailableBalance: import("superstruct").Struct<string, null>;
769
+ owner: import("superstruct").Struct<String | undefined, null>;
770
+ rangeProofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
771
+ rangeProofInstructionOffset: import("superstruct").Struct<number, null>;
772
+ rangeProofRecordAccount: import("superstruct").Struct<String | undefined, null>;
773
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
774
+ source: import("superstruct").Struct<String, null>;
775
+ }>;
776
+ export type ConfidentialTransfer = Infer<typeof ConfidentialTransfer>;
777
+ export declare const ConfidentialTransfer: import("superstruct").Struct<{
778
+ mint: String;
779
+ destination: String;
780
+ source: String;
781
+ equalityProofInstructionOffset: number;
782
+ rangeProofInstructionOffset: number;
783
+ ciphertextValidityProofInstructionOffset: number;
784
+ newSourceDecryptableAvailableBalance: string;
785
+ owner?: String | undefined;
786
+ signers?: String[] | undefined;
787
+ multisigOwner?: String | undefined;
788
+ instructionsSysvar?: String | undefined;
789
+ equalityProofContextStateAccount?: String | undefined;
790
+ equalityProofRecordAccount?: String | undefined;
791
+ rangeProofContextStateAccount?: String | undefined;
792
+ rangeProofRecordAccount?: String | undefined;
793
+ ciphertextValidityProofContextStateAccount?: String | undefined;
794
+ ciphertextValidityProofRecordAccount?: String | undefined;
795
+ }, {
796
+ ciphertextValidityProofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
797
+ ciphertextValidityProofInstructionOffset: import("superstruct").Struct<number, null>;
798
+ ciphertextValidityProofRecordAccount: import("superstruct").Struct<String | undefined, null>;
799
+ destination: import("superstruct").Struct<String, null>;
800
+ equalityProofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
801
+ equalityProofInstructionOffset: import("superstruct").Struct<number, null>;
802
+ equalityProofRecordAccount: import("superstruct").Struct<String | undefined, null>;
803
+ instructionsSysvar: import("superstruct").Struct<String | undefined, null>;
804
+ mint: import("superstruct").Struct<String, null>;
805
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
806
+ newSourceDecryptableAvailableBalance: import("superstruct").Struct<string, null>;
807
+ owner: import("superstruct").Struct<String | undefined, null>;
808
+ rangeProofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
809
+ rangeProofInstructionOffset: import("superstruct").Struct<number, null>;
810
+ rangeProofRecordAccount: import("superstruct").Struct<String | undefined, null>;
811
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
812
+ source: import("superstruct").Struct<String, null>;
813
+ }>;
814
+ export type ConfidentialTransferWithFee = Infer<typeof ConfidentialTransferWithFee>;
815
+ export declare const ConfidentialTransferWithFee: import("superstruct").Struct<{
816
+ mint: String;
817
+ destination: String;
818
+ source: String;
819
+ equalityProofInstructionOffset: number;
820
+ rangeProofInstructionOffset: number;
821
+ newSourceDecryptableAvailableBalance: string;
822
+ feeCiphertextValidityProofInstructionOffset: number;
823
+ feeSigmaProofInstructionOffset: number;
824
+ transferAmountCiphertextValidityProofInstructionOffset: number;
825
+ owner?: String | undefined;
826
+ signers?: String[] | undefined;
827
+ multisigOwner?: String | undefined;
828
+ instructionsSysvar?: String | undefined;
829
+ equalityProofContextStateAccount?: String | undefined;
830
+ equalityProofRecordAccount?: String | undefined;
831
+ rangeProofContextStateAccount?: String | undefined;
832
+ rangeProofRecordAccount?: String | undefined;
833
+ feeCiphertextValidityProofContextStateAccount?: String | undefined;
834
+ feeCiphertextValidityProofRecordAccount?: String | undefined;
835
+ feeSigmaProofContextStateAccount?: String | undefined;
836
+ feeSigmaProofRecordAccount?: String | undefined;
837
+ transferAmountCiphertextValidityProofContextStateAccount?: String | undefined;
838
+ transferAmountCiphertextValidityProofRecordAccount?: String | undefined;
839
+ }, {
840
+ destination: import("superstruct").Struct<String, null>;
841
+ equalityProofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
842
+ equalityProofInstructionOffset: import("superstruct").Struct<number, null>;
843
+ equalityProofRecordAccount: import("superstruct").Struct<String | undefined, null>;
844
+ feeCiphertextValidityProofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
845
+ feeCiphertextValidityProofInstructionOffset: import("superstruct").Struct<number, null>;
846
+ feeCiphertextValidityProofRecordAccount: import("superstruct").Struct<String | undefined, null>;
847
+ feeSigmaProofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
848
+ feeSigmaProofInstructionOffset: import("superstruct").Struct<number, null>;
849
+ feeSigmaProofRecordAccount: import("superstruct").Struct<String | undefined, null>;
850
+ instructionsSysvar: import("superstruct").Struct<String | undefined, null>;
851
+ mint: import("superstruct").Struct<String, null>;
852
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
853
+ newSourceDecryptableAvailableBalance: import("superstruct").Struct<string, null>;
854
+ owner: import("superstruct").Struct<String | undefined, null>;
855
+ rangeProofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
856
+ rangeProofInstructionOffset: import("superstruct").Struct<number, null>;
857
+ rangeProofRecordAccount: import("superstruct").Struct<String | undefined, null>;
858
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
859
+ source: import("superstruct").Struct<String, null>;
860
+ transferAmountCiphertextValidityProofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
861
+ transferAmountCiphertextValidityProofInstructionOffset: import("superstruct").Struct<number, null>;
862
+ transferAmountCiphertextValidityProofRecordAccount: import("superstruct").Struct<String | undefined, null>;
863
+ }>;
864
+ export type ApplyPendingConfidentialTransferBalance = Infer<typeof ApplyPendingConfidentialTransferBalance>;
865
+ export declare const ApplyPendingConfidentialTransferBalance: import("superstruct").Struct<{
866
+ account: String;
867
+ newDecryptableAvailableBalance: string;
868
+ expectedPendingBalanceCreditCounter: string | number;
869
+ owner?: String | undefined;
870
+ signers?: String[] | undefined;
871
+ multisigOwner?: String | undefined;
872
+ }, {
873
+ account: import("superstruct").Struct<String, null>;
874
+ expectedPendingBalanceCreditCounter: import("superstruct").Struct<string | number, null>;
875
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
876
+ newDecryptableAvailableBalance: import("superstruct").Struct<string, null>;
877
+ owner: import("superstruct").Struct<String | undefined, null>;
878
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
879
+ }>;
880
+ export type ConfidentialTransferCreditsToggle = Infer<typeof ConfidentialTransferCreditsToggle>;
881
+ export declare const ConfidentialTransferCreditsToggle: import("superstruct").Struct<{
882
+ account: String;
883
+ owner?: String | undefined;
884
+ signers?: String[] | undefined;
885
+ multisigOwner?: String | undefined;
886
+ }, {
887
+ account: import("superstruct").Struct<String, null>;
888
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
889
+ owner: import("superstruct").Struct<String | undefined, null>;
890
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
891
+ }>;
892
+ export type ConfigureConfidentialAccountWithRegistry = Infer<typeof ConfigureConfidentialAccountWithRegistry>;
893
+ export declare const ConfigureConfidentialAccountWithRegistry: import("superstruct").Struct<{
894
+ account: String;
895
+ mint: String;
896
+ registry: String;
897
+ }, {
898
+ account: import("superstruct").Struct<String, null>;
899
+ mint: import("superstruct").Struct<String, null>;
900
+ registry: import("superstruct").Struct<String, null>;
901
+ }>;
902
+ export type WithdrawExcessLamports = Infer<typeof WithdrawExcessLamports>;
903
+ export declare const WithdrawExcessLamports: import("superstruct").Struct<{
904
+ destination: String;
905
+ source: String;
906
+ signers?: String[] | undefined;
907
+ authority?: String | undefined;
908
+ multisigAuthority?: String | undefined;
909
+ }, {
910
+ authority: import("superstruct").Struct<String | undefined, null>;
911
+ destination: import("superstruct").Struct<String, null>;
912
+ multisigAuthority: import("superstruct").Struct<String | undefined, null>;
913
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
914
+ source: import("superstruct").Struct<String, null>;
915
+ }>;
916
+ export type TokenInstructionType = Infer<typeof TokenInstructionType>;
917
+ export declare const TokenInstructionType: import("superstruct").Struct<"approve" | "burn" | "transfer" | "freezeAccount" | "closeAccount" | "initializeMint" | "initializeMint2" | "initializeAccount" | "initializeAccount2" | "initializeAccount3" | "initializeGroupMemberPointer" | "initializeMultisig" | "initializeNonTransferableMint" | "initializeTokenGroupMember" | "initializeTokenMetadata" | "initializePermanentDelegate" | "initializeMetadataPointer" | "revoke" | "setAuthority" | "mintTo" | "thawAccount" | "transfer2" | "approve2" | "mintTo2" | "burn2" | "transferChecked" | "approveChecked" | "mintToChecked" | "burnChecked" | "syncNative" | "getAccountDataSize" | "initializeImmutableOwner" | "amountToUiAmount" | "uiAmountToAmount" | "initializeMintCloseAuthority" | "transferFeeExtension" | "defaultAccountStateExtension" | "reallocate" | "memoTransferExtension" | "updateTokenMetadataField" | "removeTokenMetadataKey" | "updateTokenMetadataAuthority" | "updateTokenMetadataUpdateAuthority" | "emitTokenMetadata" | "updateMetadataPointer" | "initializeGroupPointer" | "updateGroupPointer" | "updateGroupMemberPointer" | "initializeTokenGroup" | "updateTokenGroupMaxSize" | "updateTokenGroupUpdateAuthority" | "createNativeMint" | "initializeConfidentialTransferMint" | "updateConfidentialTransferMint" | "configureConfidentialTransferAccount" | "approveConfidentialTransferAccount" | "emptyConfidentialTransferAccount" | "depositConfidentialTransfer" | "withdrawConfidentialTransfer" | "confidentialTransfer" | "confidentialTransferWithFee" | "applyPendingConfidentialTransferBalance" | "enableConfidentialTransferConfidentialCredits" | "disableConfidentialTransferConfidentialCredits" | "enableConfidentialTransferNonConfidentialCredits" | "disableConfidentialTransferNonConfidentialCredits" | "configureConfidentialAccountWithRegistry" | "withdrawExcessLamports", {
918
+ approve: "approve";
919
+ burn: "burn";
920
+ transfer: "transfer";
921
+ freezeAccount: "freezeAccount";
922
+ closeAccount: "closeAccount";
923
+ initializeMint: "initializeMint";
924
+ initializeMint2: "initializeMint2";
925
+ initializeAccount: "initializeAccount";
926
+ initializeAccount2: "initializeAccount2";
927
+ initializeAccount3: "initializeAccount3";
928
+ initializeGroupMemberPointer: "initializeGroupMemberPointer";
929
+ initializeMultisig: "initializeMultisig";
930
+ initializeNonTransferableMint: "initializeNonTransferableMint";
931
+ initializeTokenGroupMember: "initializeTokenGroupMember";
932
+ initializeTokenMetadata: "initializeTokenMetadata";
933
+ initializePermanentDelegate: "initializePermanentDelegate";
934
+ initializeMetadataPointer: "initializeMetadataPointer";
935
+ revoke: "revoke";
936
+ setAuthority: "setAuthority";
937
+ mintTo: "mintTo";
938
+ thawAccount: "thawAccount";
939
+ transfer2: "transfer2";
940
+ approve2: "approve2";
941
+ mintTo2: "mintTo2";
942
+ burn2: "burn2";
943
+ transferChecked: "transferChecked";
944
+ approveChecked: "approveChecked";
945
+ mintToChecked: "mintToChecked";
946
+ burnChecked: "burnChecked";
947
+ syncNative: "syncNative";
948
+ getAccountDataSize: "getAccountDataSize";
949
+ initializeImmutableOwner: "initializeImmutableOwner";
950
+ amountToUiAmount: "amountToUiAmount";
951
+ uiAmountToAmount: "uiAmountToAmount";
952
+ initializeMintCloseAuthority: "initializeMintCloseAuthority";
953
+ transferFeeExtension: "transferFeeExtension";
954
+ defaultAccountStateExtension: "defaultAccountStateExtension";
955
+ reallocate: "reallocate";
956
+ memoTransferExtension: "memoTransferExtension";
957
+ updateTokenMetadataField: "updateTokenMetadataField";
958
+ removeTokenMetadataKey: "removeTokenMetadataKey";
959
+ updateTokenMetadataAuthority: "updateTokenMetadataAuthority";
960
+ updateTokenMetadataUpdateAuthority: "updateTokenMetadataUpdateAuthority";
961
+ emitTokenMetadata: "emitTokenMetadata";
962
+ updateMetadataPointer: "updateMetadataPointer";
963
+ initializeGroupPointer: "initializeGroupPointer";
964
+ updateGroupPointer: "updateGroupPointer";
965
+ updateGroupMemberPointer: "updateGroupMemberPointer";
966
+ initializeTokenGroup: "initializeTokenGroup";
967
+ updateTokenGroupMaxSize: "updateTokenGroupMaxSize";
968
+ updateTokenGroupUpdateAuthority: "updateTokenGroupUpdateAuthority";
969
+ createNativeMint: "createNativeMint";
970
+ initializeConfidentialTransferMint: "initializeConfidentialTransferMint";
971
+ updateConfidentialTransferMint: "updateConfidentialTransferMint";
972
+ configureConfidentialTransferAccount: "configureConfidentialTransferAccount";
973
+ approveConfidentialTransferAccount: "approveConfidentialTransferAccount";
974
+ emptyConfidentialTransferAccount: "emptyConfidentialTransferAccount";
975
+ depositConfidentialTransfer: "depositConfidentialTransfer";
976
+ withdrawConfidentialTransfer: "withdrawConfidentialTransfer";
977
+ confidentialTransfer: "confidentialTransfer";
978
+ confidentialTransferWithFee: "confidentialTransferWithFee";
979
+ applyPendingConfidentialTransferBalance: "applyPendingConfidentialTransferBalance";
980
+ enableConfidentialTransferConfidentialCredits: "enableConfidentialTransferConfidentialCredits";
981
+ disableConfidentialTransferConfidentialCredits: "disableConfidentialTransferConfidentialCredits";
982
+ enableConfidentialTransferNonConfidentialCredits: "enableConfidentialTransferNonConfidentialCredits";
983
+ disableConfidentialTransferNonConfidentialCredits: "disableConfidentialTransferNonConfidentialCredits";
984
+ configureConfidentialAccountWithRegistry: "configureConfidentialAccountWithRegistry";
985
+ withdrawExcessLamports: "withdrawExcessLamports";
986
+ }>;
987
+ export declare const IX_STRUCTS: {
988
+ amountToUiAmount: import("superstruct").Struct<{
989
+ amount: string | number;
990
+ mint: String;
991
+ }, {
992
+ amount: import("superstruct").Struct<string | number, null>;
993
+ mint: import("superstruct").Struct<String, null>;
994
+ }>;
995
+ applyPendingConfidentialTransferBalance: import("superstruct").Struct<{
996
+ account: String;
997
+ newDecryptableAvailableBalance: string;
998
+ expectedPendingBalanceCreditCounter: string | number;
999
+ owner?: String | undefined;
1000
+ signers?: String[] | undefined;
1001
+ multisigOwner?: String | undefined;
1002
+ }, {
1003
+ account: import("superstruct").Struct<String, null>;
1004
+ expectedPendingBalanceCreditCounter: import("superstruct").Struct<string | number, null>;
1005
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
1006
+ newDecryptableAvailableBalance: import("superstruct").Struct<string, null>;
1007
+ owner: import("superstruct").Struct<String | undefined, null>;
1008
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1009
+ }>;
1010
+ approve: import("superstruct").Struct<{
1011
+ amount: string | number;
1012
+ source: String;
1013
+ delegate: String;
1014
+ owner?: String | undefined;
1015
+ signers?: String[] | undefined;
1016
+ multisigOwner?: String | undefined;
1017
+ }, {
1018
+ amount: import("superstruct").Struct<string | number, null>;
1019
+ delegate: import("superstruct").Struct<String, null>;
1020
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
1021
+ owner: import("superstruct").Struct<String | undefined, null>;
1022
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1023
+ source: import("superstruct").Struct<String, null>;
1024
+ }>;
1025
+ approve2: import("superstruct").Struct<{
1026
+ mint: String;
1027
+ source: String;
1028
+ delegate: String;
1029
+ tokenAmount: {
1030
+ amount: string;
1031
+ decimals: number;
1032
+ uiAmountString: string;
1033
+ };
1034
+ owner?: String | undefined;
1035
+ signers?: String[] | undefined;
1036
+ multisigOwner?: String | undefined;
1037
+ }, {
1038
+ delegate: import("superstruct").Struct<String, null>;
1039
+ mint: import("superstruct").Struct<String, null>;
1040
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
1041
+ owner: import("superstruct").Struct<String | undefined, null>;
1042
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1043
+ source: import("superstruct").Struct<String, null>;
1044
+ tokenAmount: import("superstruct").Struct<{
1045
+ amount: string;
1046
+ decimals: number;
1047
+ uiAmountString: string;
1048
+ }, {
1049
+ amount: import("superstruct").Struct<string, null>;
1050
+ decimals: import("superstruct").Struct<number, null>;
1051
+ uiAmountString: import("superstruct").Struct<string, null>;
1052
+ }>;
1053
+ }>;
1054
+ approveChecked: import("superstruct").Struct<{
1055
+ mint: String;
1056
+ source: String;
1057
+ delegate: String;
1058
+ tokenAmount: {
1059
+ amount: string;
1060
+ decimals: number;
1061
+ uiAmountString: string;
1062
+ };
1063
+ owner?: String | undefined;
1064
+ signers?: String[] | undefined;
1065
+ multisigOwner?: String | undefined;
1066
+ }, {
1067
+ delegate: import("superstruct").Struct<String, null>;
1068
+ mint: import("superstruct").Struct<String, null>;
1069
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
1070
+ owner: import("superstruct").Struct<String | undefined, null>;
1071
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1072
+ source: import("superstruct").Struct<String, null>;
1073
+ tokenAmount: import("superstruct").Struct<{
1074
+ amount: string;
1075
+ decimals: number;
1076
+ uiAmountString: string;
1077
+ }, {
1078
+ amount: import("superstruct").Struct<string, null>;
1079
+ decimals: import("superstruct").Struct<number, null>;
1080
+ uiAmountString: import("superstruct").Struct<string, null>;
1081
+ }>;
1082
+ }>;
1083
+ approveConfidentialTransferAccount: import("superstruct").Struct<{
1084
+ account: String;
1085
+ mint: String;
1086
+ confidentialTransferAuditorAuthority: String;
1087
+ }, {
1088
+ account: import("superstruct").Struct<String, null>;
1089
+ confidentialTransferAuditorAuthority: import("superstruct").Struct<String, null>;
1090
+ mint: import("superstruct").Struct<String, null>;
1091
+ }>;
1092
+ burn: import("superstruct").Struct<{
1093
+ amount: string | number;
1094
+ account: String;
1095
+ mint: String;
1096
+ signers?: String[] | undefined;
1097
+ authority?: String | undefined;
1098
+ multisigAuthority?: String | undefined;
1099
+ }, {
1100
+ account: import("superstruct").Struct<String, null>;
1101
+ amount: import("superstruct").Struct<string | number, null>;
1102
+ authority: import("superstruct").Struct<String | undefined, null>;
1103
+ mint: import("superstruct").Struct<String, null>;
1104
+ multisigAuthority: import("superstruct").Struct<String | undefined, null>;
1105
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1106
+ }>;
1107
+ burn2: import("superstruct").Struct<{
1108
+ account: String;
1109
+ mint: String;
1110
+ tokenAmount: {
1111
+ amount: string;
1112
+ decimals: number;
1113
+ uiAmountString: string;
1114
+ };
1115
+ signers?: String[] | undefined;
1116
+ authority?: String | undefined;
1117
+ multisigAuthority?: String | undefined;
1118
+ }, {
1119
+ account: import("superstruct").Struct<String, null>;
1120
+ authority: import("superstruct").Struct<String | undefined, null>;
1121
+ mint: import("superstruct").Struct<String, null>;
1122
+ multisigAuthority: import("superstruct").Struct<String | undefined, null>;
1123
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1124
+ tokenAmount: import("superstruct").Struct<{
1125
+ amount: string;
1126
+ decimals: number;
1127
+ uiAmountString: string;
1128
+ }, {
1129
+ amount: import("superstruct").Struct<string, null>;
1130
+ decimals: import("superstruct").Struct<number, null>;
1131
+ uiAmountString: import("superstruct").Struct<string, null>;
1132
+ }>;
1133
+ }>;
1134
+ burnChecked: import("superstruct").Struct<{
1135
+ account: String;
1136
+ mint: String;
1137
+ tokenAmount: {
1138
+ amount: string;
1139
+ decimals: number;
1140
+ uiAmountString: string;
1141
+ };
1142
+ signers?: String[] | undefined;
1143
+ authority?: String | undefined;
1144
+ multisigAuthority?: String | undefined;
1145
+ }, {
1146
+ account: import("superstruct").Struct<String, null>;
1147
+ authority: import("superstruct").Struct<String | undefined, null>;
1148
+ mint: import("superstruct").Struct<String, null>;
1149
+ multisigAuthority: import("superstruct").Struct<String | undefined, null>;
1150
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1151
+ tokenAmount: import("superstruct").Struct<{
1152
+ amount: string;
1153
+ decimals: number;
1154
+ uiAmountString: string;
1155
+ }, {
1156
+ amount: import("superstruct").Struct<string, null>;
1157
+ decimals: import("superstruct").Struct<number, null>;
1158
+ uiAmountString: import("superstruct").Struct<string, null>;
1159
+ }>;
1160
+ }>;
1161
+ closeAccount: import("superstruct").Struct<{
1162
+ account: String;
1163
+ destination: String;
1164
+ owner?: String | undefined;
1165
+ signers?: String[] | undefined;
1166
+ multisigOwner?: String | undefined;
1167
+ }, {
1168
+ account: import("superstruct").Struct<String, null>;
1169
+ destination: import("superstruct").Struct<String, null>;
1170
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
1171
+ owner: import("superstruct").Struct<String | undefined, null>;
1172
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1173
+ }>;
1174
+ confidentialTransfer: import("superstruct").Struct<{
1175
+ mint: String;
1176
+ destination: String;
1177
+ source: String;
1178
+ equalityProofInstructionOffset: number;
1179
+ rangeProofInstructionOffset: number;
1180
+ ciphertextValidityProofInstructionOffset: number;
1181
+ newSourceDecryptableAvailableBalance: string;
1182
+ owner?: String | undefined;
1183
+ signers?: String[] | undefined;
1184
+ multisigOwner?: String | undefined;
1185
+ instructionsSysvar?: String | undefined;
1186
+ equalityProofContextStateAccount?: String | undefined;
1187
+ equalityProofRecordAccount?: String | undefined;
1188
+ rangeProofContextStateAccount?: String | undefined;
1189
+ rangeProofRecordAccount?: String | undefined;
1190
+ ciphertextValidityProofContextStateAccount?: String | undefined;
1191
+ ciphertextValidityProofRecordAccount?: String | undefined;
1192
+ }, {
1193
+ ciphertextValidityProofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
1194
+ ciphertextValidityProofInstructionOffset: import("superstruct").Struct<number, null>;
1195
+ ciphertextValidityProofRecordAccount: import("superstruct").Struct<String | undefined, null>;
1196
+ destination: import("superstruct").Struct<String, null>;
1197
+ equalityProofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
1198
+ equalityProofInstructionOffset: import("superstruct").Struct<number, null>;
1199
+ equalityProofRecordAccount: import("superstruct").Struct<String | undefined, null>;
1200
+ instructionsSysvar: import("superstruct").Struct<String | undefined, null>;
1201
+ mint: import("superstruct").Struct<String, null>;
1202
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
1203
+ newSourceDecryptableAvailableBalance: import("superstruct").Struct<string, null>;
1204
+ owner: import("superstruct").Struct<String | undefined, null>;
1205
+ rangeProofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
1206
+ rangeProofInstructionOffset: import("superstruct").Struct<number, null>;
1207
+ rangeProofRecordAccount: import("superstruct").Struct<String | undefined, null>;
1208
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1209
+ source: import("superstruct").Struct<String, null>;
1210
+ }>;
1211
+ confidentialTransferWithFee: import("superstruct").Struct<{
1212
+ mint: String;
1213
+ destination: String;
1214
+ source: String;
1215
+ equalityProofInstructionOffset: number;
1216
+ rangeProofInstructionOffset: number;
1217
+ newSourceDecryptableAvailableBalance: string;
1218
+ feeCiphertextValidityProofInstructionOffset: number;
1219
+ feeSigmaProofInstructionOffset: number;
1220
+ transferAmountCiphertextValidityProofInstructionOffset: number;
1221
+ owner?: String | undefined;
1222
+ signers?: String[] | undefined;
1223
+ multisigOwner?: String | undefined;
1224
+ instructionsSysvar?: String | undefined;
1225
+ equalityProofContextStateAccount?: String | undefined;
1226
+ equalityProofRecordAccount?: String | undefined;
1227
+ rangeProofContextStateAccount?: String | undefined;
1228
+ rangeProofRecordAccount?: String | undefined;
1229
+ feeCiphertextValidityProofContextStateAccount?: String | undefined;
1230
+ feeCiphertextValidityProofRecordAccount?: String | undefined;
1231
+ feeSigmaProofContextStateAccount?: String | undefined;
1232
+ feeSigmaProofRecordAccount?: String | undefined;
1233
+ transferAmountCiphertextValidityProofContextStateAccount?: String | undefined;
1234
+ transferAmountCiphertextValidityProofRecordAccount?: String | undefined;
1235
+ }, {
1236
+ destination: import("superstruct").Struct<String, null>;
1237
+ equalityProofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
1238
+ equalityProofInstructionOffset: import("superstruct").Struct<number, null>;
1239
+ equalityProofRecordAccount: import("superstruct").Struct<String | undefined, null>;
1240
+ feeCiphertextValidityProofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
1241
+ feeCiphertextValidityProofInstructionOffset: import("superstruct").Struct<number, null>;
1242
+ feeCiphertextValidityProofRecordAccount: import("superstruct").Struct<String | undefined, null>;
1243
+ feeSigmaProofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
1244
+ feeSigmaProofInstructionOffset: import("superstruct").Struct<number, null>;
1245
+ feeSigmaProofRecordAccount: import("superstruct").Struct<String | undefined, null>;
1246
+ instructionsSysvar: import("superstruct").Struct<String | undefined, null>;
1247
+ mint: import("superstruct").Struct<String, null>;
1248
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
1249
+ newSourceDecryptableAvailableBalance: import("superstruct").Struct<string, null>;
1250
+ owner: import("superstruct").Struct<String | undefined, null>;
1251
+ rangeProofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
1252
+ rangeProofInstructionOffset: import("superstruct").Struct<number, null>;
1253
+ rangeProofRecordAccount: import("superstruct").Struct<String | undefined, null>;
1254
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1255
+ source: import("superstruct").Struct<String, null>;
1256
+ transferAmountCiphertextValidityProofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
1257
+ transferAmountCiphertextValidityProofInstructionOffset: import("superstruct").Struct<number, null>;
1258
+ transferAmountCiphertextValidityProofRecordAccount: import("superstruct").Struct<String | undefined, null>;
1259
+ }>;
1260
+ configureConfidentialAccountWithRegistry: import("superstruct").Struct<{
1261
+ account: String;
1262
+ mint: String;
1263
+ registry: String;
1264
+ }, {
1265
+ account: import("superstruct").Struct<String, null>;
1266
+ mint: import("superstruct").Struct<String, null>;
1267
+ registry: import("superstruct").Struct<String, null>;
1268
+ }>;
1269
+ configureConfidentialTransferAccount: import("superstruct").Struct<{
1270
+ account: String;
1271
+ mint: String;
1272
+ decryptableZeroBalance: string;
1273
+ maximumPendingBalanceCreditCounter: string | number;
1274
+ proofInstructionOffset: number;
1275
+ owner?: String | undefined;
1276
+ signers?: String[] | undefined;
1277
+ multisigOwner?: String | undefined;
1278
+ instructionsSysvar?: String | undefined;
1279
+ proofContextStateAccount?: String | undefined;
1280
+ recordAccount?: String | undefined;
1281
+ }, {
1282
+ account: import("superstruct").Struct<String, null>;
1283
+ decryptableZeroBalance: import("superstruct").Struct<string, null>;
1284
+ instructionsSysvar: import("superstruct").Struct<String | undefined, null>;
1285
+ maximumPendingBalanceCreditCounter: import("superstruct").Struct<string | number, null>;
1286
+ mint: import("superstruct").Struct<String, null>;
1287
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
1288
+ owner: import("superstruct").Struct<String | undefined, null>;
1289
+ proofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
1290
+ proofInstructionOffset: import("superstruct").Struct<number, null>;
1291
+ recordAccount: import("superstruct").Struct<String | undefined, null>;
1292
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1293
+ }>;
1294
+ createNativeMint: import("superstruct").Struct<{
1295
+ payer: String;
1296
+ systemProgram: String;
1297
+ nativeMint: String;
1298
+ }, {
1299
+ nativeMint: import("superstruct").Struct<String, null>;
1300
+ payer: import("superstruct").Struct<String, null>;
1301
+ systemProgram: import("superstruct").Struct<String, null>;
1302
+ }>;
1303
+ defaultAccountStateExtension: import("superstruct").Struct<{
1304
+ mint: String;
1305
+ accountState: string;
1306
+ freezeAuthority?: String | undefined;
1307
+ }, {
1308
+ accountState: import("superstruct").Struct<string, null>;
1309
+ freezeAuthority: import("superstruct").Struct<String | undefined, null>;
1310
+ mint: import("superstruct").Struct<String, null>;
1311
+ }>;
1312
+ depositConfidentialTransfer: import("superstruct").Struct<{
1313
+ amount: string | number;
1314
+ decimals: number;
1315
+ mint: String;
1316
+ destination: String;
1317
+ source: String;
1318
+ owner?: String | undefined;
1319
+ signers?: String[] | undefined;
1320
+ multisigOwner?: String | undefined;
1321
+ }, {
1322
+ amount: import("superstruct").Struct<string | number, null>;
1323
+ decimals: import("superstruct").Struct<number, null>;
1324
+ destination: import("superstruct").Struct<String, null>;
1325
+ mint: import("superstruct").Struct<String, null>;
1326
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
1327
+ owner: import("superstruct").Struct<String | undefined, null>;
1328
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1329
+ source: import("superstruct").Struct<String, null>;
1330
+ }>;
1331
+ disableConfidentialTransferConfidentialCredits: import("superstruct").Struct<{
1332
+ account: String;
1333
+ owner?: String | undefined;
1334
+ signers?: String[] | undefined;
1335
+ multisigOwner?: String | undefined;
1336
+ }, {
1337
+ account: import("superstruct").Struct<String, null>;
1338
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
1339
+ owner: import("superstruct").Struct<String | undefined, null>;
1340
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1341
+ }>;
1342
+ disableConfidentialTransferNonConfidentialCredits: import("superstruct").Struct<{
1343
+ account: String;
1344
+ owner?: String | undefined;
1345
+ signers?: String[] | undefined;
1346
+ multisigOwner?: String | undefined;
1347
+ }, {
1348
+ account: import("superstruct").Struct<String, null>;
1349
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
1350
+ owner: import("superstruct").Struct<String | undefined, null>;
1351
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1352
+ }>;
1353
+ emitTokenMetadata: import("superstruct").Struct<{
1354
+ metadata: String;
1355
+ start?: number | null | undefined;
1356
+ end?: number | null | undefined;
1357
+ }, {
1358
+ end: import("superstruct").Struct<number | null | undefined, null>;
1359
+ metadata: import("superstruct").Struct<String, null>;
1360
+ start: import("superstruct").Struct<number | null | undefined, null>;
1361
+ }>;
1362
+ emptyConfidentialTransferAccount: import("superstruct").Struct<{
1363
+ account: String;
1364
+ proofInstructionOffset: number;
1365
+ owner?: String | undefined;
1366
+ signers?: String[] | undefined;
1367
+ multisigOwner?: String | undefined;
1368
+ instructionsSysvar?: String | undefined;
1369
+ proofContextStateAccount?: String | undefined;
1370
+ recordAccount?: String | undefined;
1371
+ }, {
1372
+ account: import("superstruct").Struct<String, null>;
1373
+ instructionsSysvar: import("superstruct").Struct<String | undefined, null>;
1374
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
1375
+ owner: import("superstruct").Struct<String | undefined, null>;
1376
+ proofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
1377
+ proofInstructionOffset: import("superstruct").Struct<number, null>;
1378
+ recordAccount: import("superstruct").Struct<String | undefined, null>;
1379
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1380
+ }>;
1381
+ enableConfidentialTransferConfidentialCredits: import("superstruct").Struct<{
1382
+ account: String;
1383
+ owner?: String | undefined;
1384
+ signers?: String[] | undefined;
1385
+ multisigOwner?: String | undefined;
1386
+ }, {
1387
+ account: import("superstruct").Struct<String, null>;
1388
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
1389
+ owner: import("superstruct").Struct<String | undefined, null>;
1390
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1391
+ }>;
1392
+ enableConfidentialTransferNonConfidentialCredits: import("superstruct").Struct<{
1393
+ account: String;
1394
+ owner?: String | undefined;
1395
+ signers?: String[] | undefined;
1396
+ multisigOwner?: String | undefined;
1397
+ }, {
1398
+ account: import("superstruct").Struct<String, null>;
1399
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
1400
+ owner: import("superstruct").Struct<String | undefined, null>;
1401
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1402
+ }>;
1403
+ freezeAccount: import("superstruct").Struct<{
1404
+ account: String;
1405
+ mint: String;
1406
+ freezeAuthority?: String | undefined;
1407
+ signers?: String[] | undefined;
1408
+ multisigFreezeAuthority?: String | undefined;
1409
+ }, {
1410
+ account: import("superstruct").Struct<String, null>;
1411
+ freezeAuthority: import("superstruct").Struct<String | undefined, null>;
1412
+ mint: import("superstruct").Struct<String, null>;
1413
+ multisigFreezeAuthority: import("superstruct").Struct<String | undefined, null>;
1414
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1415
+ }>;
1416
+ getAccountDataSize: import("superstruct").Struct<{
1417
+ mint: String;
1418
+ extensionTypes?: string[] | undefined;
1419
+ }, {
1420
+ extensionTypes: import("superstruct").Struct<string[] | undefined, import("superstruct").Struct<string, null>>;
1421
+ mint: import("superstruct").Struct<String, null>;
1422
+ }>;
1423
+ initializeAccount: import("superstruct").Struct<{
1424
+ account: String;
1425
+ owner: String;
1426
+ mint: String;
1427
+ rentSysvar: String;
1428
+ }, {
1429
+ account: import("superstruct").Struct<String, null>;
1430
+ mint: import("superstruct").Struct<String, null>;
1431
+ owner: import("superstruct").Struct<String, null>;
1432
+ rentSysvar: import("superstruct").Struct<String, null>;
1433
+ }>;
1434
+ initializeAccount2: import("superstruct").Struct<{
1435
+ account: String;
1436
+ owner: String;
1437
+ mint: String;
1438
+ rentSysvar: String;
1439
+ }, {
1440
+ account: import("superstruct").Struct<String, null>;
1441
+ mint: import("superstruct").Struct<String, null>;
1442
+ owner: import("superstruct").Struct<String, null>;
1443
+ rentSysvar: import("superstruct").Struct<String, null>;
1444
+ }>;
1445
+ initializeAccount3: import("superstruct").Struct<{
1446
+ account: String;
1447
+ owner: String;
1448
+ mint: String;
1449
+ }, {
1450
+ account: import("superstruct").Struct<String, null>;
1451
+ mint: import("superstruct").Struct<String, null>;
1452
+ owner: import("superstruct").Struct<String, null>;
1453
+ }>;
1454
+ initializeConfidentialTransferMint: import("superstruct").Struct<{
1455
+ mint: String;
1456
+ auditorElGamalPubkey: string | null;
1457
+ autoApproveNewAccounts: boolean;
1458
+ authority?: String | undefined;
1459
+ }, {
1460
+ auditorElGamalPubkey: import("superstruct").Struct<string | null, null>;
1461
+ authority: import("superstruct").Struct<String | undefined, null>;
1462
+ autoApproveNewAccounts: import("superstruct").Struct<boolean, null>;
1463
+ mint: import("superstruct").Struct<String, null>;
1464
+ }>;
1465
+ initializeGroupMemberPointer: import("superstruct").Struct<{
1466
+ mint: String;
1467
+ authority: String;
1468
+ memberAddress: String;
1469
+ }, {
1470
+ authority: import("superstruct").Struct<String, null>;
1471
+ memberAddress: import("superstruct").Struct<String, null>;
1472
+ mint: import("superstruct").Struct<String, null>;
1473
+ }>;
1474
+ initializeGroupPointer: import("superstruct").Struct<{
1475
+ mint: String;
1476
+ authority: String;
1477
+ groupAddress: String;
1478
+ }, {
1479
+ authority: import("superstruct").Struct<String, null>;
1480
+ groupAddress: import("superstruct").Struct<String, null>;
1481
+ mint: import("superstruct").Struct<String, null>;
1482
+ }>;
1483
+ initializeImmutableOwner: import("superstruct").Struct<{
1484
+ account: String;
1485
+ }, {
1486
+ account: import("superstruct").Struct<String, null>;
1487
+ }>;
1488
+ initializeMetadataPointer: import("superstruct").Struct<{
1489
+ mint: String;
1490
+ authority: String;
1491
+ metadataAddress: String;
1492
+ }, {
1493
+ authority: import("superstruct").Struct<String, null>;
1494
+ metadataAddress: import("superstruct").Struct<String, null>;
1495
+ mint: import("superstruct").Struct<String, null>;
1496
+ }>;
1497
+ initializeMint: import("superstruct").Struct<{
1498
+ decimals: number;
1499
+ mint: String;
1500
+ mintAuthority: String;
1501
+ rentSysvar: String;
1502
+ freezeAuthority?: String | undefined;
1503
+ }, {
1504
+ decimals: import("superstruct").Struct<number, null>;
1505
+ freezeAuthority: import("superstruct").Struct<String | undefined, null>;
1506
+ mint: import("superstruct").Struct<String, null>;
1507
+ mintAuthority: import("superstruct").Struct<String, null>;
1508
+ rentSysvar: import("superstruct").Struct<String, null>;
1509
+ }>;
1510
+ initializeMint2: import("superstruct").Struct<{
1511
+ decimals: number;
1512
+ mint: String;
1513
+ freezeAuthority: String;
1514
+ mintAuthority: String;
1515
+ freezeAuthorityOption?: number | undefined;
1516
+ }, {
1517
+ decimals: import("superstruct").Struct<number, null>;
1518
+ freezeAuthority: import("superstruct").Struct<String, null>;
1519
+ freezeAuthorityOption: import("superstruct").Struct<number | undefined, null>;
1520
+ mint: import("superstruct").Struct<String, null>;
1521
+ mintAuthority: import("superstruct").Struct<String, null>;
1522
+ }>;
1523
+ initializeMintCloseAuthority: import("superstruct").Struct<{
1524
+ mint: String;
1525
+ newAuthority: String;
1526
+ }, {
1527
+ mint: import("superstruct").Struct<String, null>;
1528
+ newAuthority: import("superstruct").Struct<String, null>;
1529
+ }>;
1530
+ initializeMultisig: import("superstruct").Struct<{
1531
+ rentSysvar: String;
1532
+ m: number;
1533
+ multisig: String;
1534
+ signers: String[];
1535
+ }, {
1536
+ m: import("superstruct").Struct<number, null>;
1537
+ multisig: import("superstruct").Struct<String, null>;
1538
+ rentSysvar: import("superstruct").Struct<String, null>;
1539
+ signers: import("superstruct").Struct<String[], import("superstruct").Struct<String, null>>;
1540
+ }>;
1541
+ initializeNonTransferableMint: import("superstruct").Struct<{
1542
+ mint: String;
1543
+ }, {
1544
+ mint: import("superstruct").Struct<String, null>;
1545
+ }>;
1546
+ initializePermanentDelegate: import("superstruct").Struct<{
1547
+ mint: String;
1548
+ delegate: String;
1549
+ }, {
1550
+ delegate: import("superstruct").Struct<String, null>;
1551
+ mint: import("superstruct").Struct<String, null>;
1552
+ }>;
1553
+ initializeTokenGroup: import("superstruct").Struct<{
1554
+ mint: String;
1555
+ maxSize: number;
1556
+ mintAuthority: String;
1557
+ updateAuthority: String;
1558
+ group: String;
1559
+ }, {
1560
+ group: import("superstruct").Struct<String, null>;
1561
+ maxSize: import("superstruct").Struct<number, null>;
1562
+ mint: import("superstruct").Struct<String, null>;
1563
+ mintAuthority: import("superstruct").Struct<String, null>;
1564
+ updateAuthority: import("superstruct").Struct<String, null>;
1565
+ }>;
1566
+ initializeTokenGroupMember: import("superstruct").Struct<{
1567
+ group: String;
1568
+ groupUpdateAuthority: String;
1569
+ member: String;
1570
+ memberMint: String;
1571
+ memberMintAuthority: String;
1572
+ }, {
1573
+ group: import("superstruct").Struct<String, null>;
1574
+ groupUpdateAuthority: import("superstruct").Struct<String, null>;
1575
+ member: import("superstruct").Struct<String, null>;
1576
+ memberMint: import("superstruct").Struct<String, null>;
1577
+ memberMintAuthority: import("superstruct").Struct<String, null>;
1578
+ }>;
1579
+ initializeTokenMetadata: import("superstruct").Struct<{
1580
+ symbol: string;
1581
+ name: string;
1582
+ metadata: String;
1583
+ mint: String;
1584
+ uri: string;
1585
+ mintAuthority: String;
1586
+ updateAuthority: String;
1587
+ }, {
1588
+ metadata: import("superstruct").Struct<String, null>;
1589
+ mint: import("superstruct").Struct<String, null>;
1590
+ mintAuthority: import("superstruct").Struct<String, null>;
1591
+ name: import("superstruct").Struct<string, null>;
1592
+ symbol: import("superstruct").Struct<string, null>;
1593
+ updateAuthority: import("superstruct").Struct<String, null>;
1594
+ uri: import("superstruct").Struct<string, null>;
1595
+ }>;
1596
+ memoTransferExtension: import("superstruct").Struct<{
1597
+ account: String;
1598
+ owner?: String | undefined;
1599
+ signers?: String[] | undefined;
1600
+ multisigOwner?: String | undefined;
1601
+ }, {
1602
+ account: import("superstruct").Struct<String, null>;
1603
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
1604
+ owner: import("superstruct").Struct<String | undefined, null>;
1605
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1606
+ }>;
1607
+ mintTo: import("superstruct").Struct<{
1608
+ amount: string | number;
1609
+ account: String;
1610
+ mint: String;
1611
+ mintAuthority?: String | undefined;
1612
+ signers?: String[] | undefined;
1613
+ multisigMintAuthority?: String | undefined;
1614
+ }, {
1615
+ account: import("superstruct").Struct<String, null>;
1616
+ amount: import("superstruct").Struct<string | number, null>;
1617
+ mint: import("superstruct").Struct<String, null>;
1618
+ mintAuthority: import("superstruct").Struct<String | undefined, null>;
1619
+ multisigMintAuthority: import("superstruct").Struct<String | undefined, null>;
1620
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1621
+ }>;
1622
+ mintTo2: import("superstruct").Struct<{
1623
+ account: String;
1624
+ mint: String;
1625
+ tokenAmount: {
1626
+ amount: string;
1627
+ decimals: number;
1628
+ uiAmountString: string;
1629
+ };
1630
+ mintAuthority?: String | undefined;
1631
+ signers?: String[] | undefined;
1632
+ multisigMintAuthority?: String | undefined;
1633
+ }, {
1634
+ account: import("superstruct").Struct<String, null>;
1635
+ mint: import("superstruct").Struct<String, null>;
1636
+ mintAuthority: import("superstruct").Struct<String | undefined, null>;
1637
+ multisigMintAuthority: import("superstruct").Struct<String | undefined, null>;
1638
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1639
+ tokenAmount: import("superstruct").Struct<{
1640
+ amount: string;
1641
+ decimals: number;
1642
+ uiAmountString: string;
1643
+ }, {
1644
+ amount: import("superstruct").Struct<string, null>;
1645
+ decimals: import("superstruct").Struct<number, null>;
1646
+ uiAmountString: import("superstruct").Struct<string, null>;
1647
+ }>;
1648
+ }>;
1649
+ mintToChecked: import("superstruct").Struct<{
1650
+ account: String;
1651
+ mint: String;
1652
+ tokenAmount: {
1653
+ amount: string;
1654
+ decimals: number;
1655
+ uiAmountString: string;
1656
+ };
1657
+ mintAuthority?: String | undefined;
1658
+ signers?: String[] | undefined;
1659
+ multisigMintAuthority?: String | undefined;
1660
+ }, {
1661
+ account: import("superstruct").Struct<String, null>;
1662
+ mint: import("superstruct").Struct<String, null>;
1663
+ mintAuthority: import("superstruct").Struct<String | undefined, null>;
1664
+ multisigMintAuthority: import("superstruct").Struct<String | undefined, null>;
1665
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1666
+ tokenAmount: import("superstruct").Struct<{
1667
+ amount: string;
1668
+ decimals: number;
1669
+ uiAmountString: string;
1670
+ }, {
1671
+ amount: import("superstruct").Struct<string, null>;
1672
+ decimals: import("superstruct").Struct<number, null>;
1673
+ uiAmountString: import("superstruct").Struct<string, null>;
1674
+ }>;
1675
+ }>;
1676
+ reallocate: import("superstruct").Struct<{
1677
+ account: String;
1678
+ extensionTypes: string[];
1679
+ payer: String;
1680
+ systemProgram: String;
1681
+ }, {
1682
+ account: import("superstruct").Struct<String, null>;
1683
+ extensionTypes: import("superstruct").Struct<string[], import("superstruct").Struct<string, null>>;
1684
+ payer: import("superstruct").Struct<String, null>;
1685
+ systemProgram: import("superstruct").Struct<String, null>;
1686
+ }>;
1687
+ removeTokenMetadataKey: import("superstruct").Struct<{
1688
+ key: string;
1689
+ metadata: String;
1690
+ updateAuthority: String;
1691
+ idempotent?: boolean | undefined;
1692
+ }, {
1693
+ idempotent: import("superstruct").Struct<boolean | undefined, null>;
1694
+ key: import("superstruct").Struct<string, null>;
1695
+ metadata: import("superstruct").Struct<String, null>;
1696
+ updateAuthority: import("superstruct").Struct<String, null>;
1697
+ }>;
1698
+ revoke: import("superstruct").Struct<{
1699
+ source: String;
1700
+ owner?: String | undefined;
1701
+ signers?: String[] | undefined;
1702
+ multisigOwner?: String | undefined;
1703
+ }, {
1704
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
1705
+ owner: import("superstruct").Struct<String | undefined, null>;
1706
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1707
+ source: import("superstruct").Struct<String, null>;
1708
+ }>;
1709
+ setAuthority: import("superstruct").Struct<{
1710
+ authorityType: "mintTokens" | "freezeAccount" | "accountOwner" | "closeAccount";
1711
+ newAuthority: String | null;
1712
+ account?: String | undefined;
1713
+ mint?: String | undefined;
1714
+ signers?: String[] | undefined;
1715
+ authority?: String | undefined;
1716
+ multisigAuthority?: String | undefined;
1717
+ }, {
1718
+ account: import("superstruct").Struct<String | undefined, null>;
1719
+ authority: import("superstruct").Struct<String | undefined, null>;
1720
+ authorityType: import("superstruct").Struct<"mintTokens" | "freezeAccount" | "accountOwner" | "closeAccount", {
1721
+ mintTokens: "mintTokens";
1722
+ freezeAccount: "freezeAccount";
1723
+ accountOwner: "accountOwner";
1724
+ closeAccount: "closeAccount";
1725
+ }>;
1726
+ mint: import("superstruct").Struct<String | undefined, null>;
1727
+ multisigAuthority: import("superstruct").Struct<String | undefined, null>;
1728
+ newAuthority: import("superstruct").Struct<String | null, null>;
1729
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1730
+ }>;
1731
+ syncNative: import("superstruct").Struct<{
1732
+ account: String;
1733
+ }, {
1734
+ account: import("superstruct").Struct<String, null>;
1735
+ }>;
1736
+ thawAccount: import("superstruct").Struct<{
1737
+ account: String;
1738
+ mint: String;
1739
+ freezeAuthority?: String | undefined;
1740
+ signers?: String[] | undefined;
1741
+ multisigFreezeAuthority?: String | undefined;
1742
+ }, {
1743
+ account: import("superstruct").Struct<String, null>;
1744
+ freezeAuthority: import("superstruct").Struct<String | undefined, null>;
1745
+ mint: import("superstruct").Struct<String, null>;
1746
+ multisigFreezeAuthority: import("superstruct").Struct<String | undefined, null>;
1747
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1748
+ }>;
1749
+ transfer: import("superstruct").Struct<{
1750
+ amount: string | number;
1751
+ destination: String;
1752
+ source: String;
1753
+ signers?: String[] | undefined;
1754
+ authority?: String | undefined;
1755
+ multisigAuthority?: String | undefined;
1756
+ }, {
1757
+ amount: import("superstruct").Struct<string | number, null>;
1758
+ authority: import("superstruct").Struct<String | undefined, null>;
1759
+ destination: import("superstruct").Struct<String, null>;
1760
+ multisigAuthority: import("superstruct").Struct<String | undefined, null>;
1761
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1762
+ source: import("superstruct").Struct<String, null>;
1763
+ }>;
1764
+ transfer2: import("superstruct").Struct<{
1765
+ mint: String;
1766
+ destination: String;
1767
+ source: String;
1768
+ tokenAmount: {
1769
+ amount: string;
1770
+ decimals: number;
1771
+ uiAmountString: string;
1772
+ };
1773
+ signers?: String[] | undefined;
1774
+ authority?: String | undefined;
1775
+ multisigAuthority?: String | undefined;
1776
+ }, {
1777
+ authority: import("superstruct").Struct<String | undefined, null>;
1778
+ destination: import("superstruct").Struct<String, null>;
1779
+ mint: import("superstruct").Struct<String, null>;
1780
+ multisigAuthority: import("superstruct").Struct<String | undefined, null>;
1781
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1782
+ source: import("superstruct").Struct<String, null>;
1783
+ tokenAmount: import("superstruct").Struct<{
1784
+ amount: string;
1785
+ decimals: number;
1786
+ uiAmountString: string;
1787
+ }, {
1788
+ amount: import("superstruct").Struct<string, null>;
1789
+ decimals: import("superstruct").Struct<number, null>;
1790
+ uiAmountString: import("superstruct").Struct<string, null>;
1791
+ }>;
1792
+ }>;
1793
+ transferChecked: import("superstruct").Struct<{
1794
+ mint: String;
1795
+ destination: String;
1796
+ source: String;
1797
+ tokenAmount: {
1798
+ amount: string;
1799
+ decimals: number;
1800
+ uiAmountString: string;
1801
+ };
1802
+ signers?: String[] | undefined;
1803
+ authority?: String | undefined;
1804
+ multisigAuthority?: String | undefined;
1805
+ }, {
1806
+ authority: import("superstruct").Struct<String | undefined, null>;
1807
+ destination: import("superstruct").Struct<String, null>;
1808
+ mint: import("superstruct").Struct<String, null>;
1809
+ multisigAuthority: import("superstruct").Struct<String | undefined, null>;
1810
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1811
+ source: import("superstruct").Struct<String, null>;
1812
+ tokenAmount: import("superstruct").Struct<{
1813
+ amount: string;
1814
+ decimals: number;
1815
+ uiAmountString: string;
1816
+ }, {
1817
+ amount: import("superstruct").Struct<string, null>;
1818
+ decimals: import("superstruct").Struct<number, null>;
1819
+ uiAmountString: import("superstruct").Struct<string, null>;
1820
+ }>;
1821
+ }>;
1822
+ transferFeeExtension: import("superstruct").Struct<{
1823
+ mint: String;
1824
+ maximumFee: number;
1825
+ transferFeeBasisPoints: number;
1826
+ transferFeeConfigAuthority: String;
1827
+ withdrawWitheldAuthority: String;
1828
+ }, {
1829
+ maximumFee: import("superstruct").Struct<number, null>;
1830
+ mint: import("superstruct").Struct<String, null>;
1831
+ transferFeeBasisPoints: import("superstruct").Struct<number, null>;
1832
+ transferFeeConfigAuthority: import("superstruct").Struct<String, null>;
1833
+ withdrawWitheldAuthority: import("superstruct").Struct<String, null>;
1834
+ }>;
1835
+ uiAmountToAmount: import("superstruct").Struct<{
1836
+ mint: String;
1837
+ uiAmount: string;
1838
+ }, {
1839
+ mint: import("superstruct").Struct<String, null>;
1840
+ uiAmount: import("superstruct").Struct<string, null>;
1841
+ }>;
1842
+ updateConfidentialTransferMint: import("superstruct").Struct<{
1843
+ mint: String;
1844
+ auditorElGamalPubkey: string | null;
1845
+ autoApproveNewAccounts: boolean;
1846
+ confidentialTransferMintAuthority: String;
1847
+ }, {
1848
+ auditorElGamalPubkey: import("superstruct").Struct<string | null, null>;
1849
+ autoApproveNewAccounts: import("superstruct").Struct<boolean, null>;
1850
+ confidentialTransferMintAuthority: import("superstruct").Struct<String, null>;
1851
+ mint: import("superstruct").Struct<String, null>;
1852
+ }>;
1853
+ updateGroupMemberPointer: import("superstruct").Struct<{
1854
+ mint: String;
1855
+ authority: String;
1856
+ memberAddress?: String | null | undefined;
1857
+ }, {
1858
+ authority: import("superstruct").Struct<String, null>;
1859
+ memberAddress: import("superstruct").Struct<String | null | undefined, null>;
1860
+ mint: import("superstruct").Struct<String, null>;
1861
+ }>;
1862
+ updateGroupPointer: import("superstruct").Struct<{
1863
+ mint: String;
1864
+ authority: String;
1865
+ groupAddress?: String | null | undefined;
1866
+ }, {
1867
+ authority: import("superstruct").Struct<String, null>;
1868
+ groupAddress: import("superstruct").Struct<String | null | undefined, null>;
1869
+ mint: import("superstruct").Struct<String, null>;
1870
+ }>;
1871
+ updateMetadataPointer: import("superstruct").Struct<{
1872
+ mint: String;
1873
+ authority: String;
1874
+ metadataAddress?: String | null | undefined;
1875
+ }, {
1876
+ authority: import("superstruct").Struct<String, null>;
1877
+ metadataAddress: import("superstruct").Struct<String | null | undefined, null>;
1878
+ mint: import("superstruct").Struct<String, null>;
1879
+ }>;
1880
+ updateTokenGroupMaxSize: import("superstruct").Struct<{
1881
+ maxSize: number;
1882
+ updateAuthority: String;
1883
+ group: String;
1884
+ }, {
1885
+ group: import("superstruct").Struct<String, null>;
1886
+ maxSize: import("superstruct").Struct<number, null>;
1887
+ updateAuthority: import("superstruct").Struct<String, null>;
1888
+ }>;
1889
+ updateTokenGroupUpdateAuthority: import("superstruct").Struct<{
1890
+ updateAuthority: String;
1891
+ newUpdateAuthority: String;
1892
+ group: String;
1893
+ }, {
1894
+ group: import("superstruct").Struct<String, null>;
1895
+ newUpdateAuthority: import("superstruct").Struct<String, null>;
1896
+ updateAuthority: import("superstruct").Struct<String, null>;
1897
+ }>;
1898
+ updateTokenMetadataAuthority: import("superstruct").Struct<{
1899
+ metadata: String;
1900
+ newAuthority: String;
1901
+ updateAuthority: String;
1902
+ }, {
1903
+ metadata: import("superstruct").Struct<String, null>;
1904
+ newAuthority: import("superstruct").Struct<String, null>;
1905
+ updateAuthority: import("superstruct").Struct<String, null>;
1906
+ }>;
1907
+ updateTokenMetadataField: import("superstruct").Struct<{
1908
+ value: string;
1909
+ field: string;
1910
+ metadata: String;
1911
+ updateAuthority: String;
1912
+ }, {
1913
+ field: import("superstruct").Struct<string, null>;
1914
+ metadata: import("superstruct").Struct<String, null>;
1915
+ updateAuthority: import("superstruct").Struct<String, null>;
1916
+ value: import("superstruct").Struct<string, null>;
1917
+ }>;
1918
+ updateTokenMetadataUpdateAuthority: import("superstruct").Struct<{
1919
+ metadata: String;
1920
+ updateAuthority: String;
1921
+ newUpdateAuthority: String;
1922
+ }, {
1923
+ metadata: import("superstruct").Struct<String, null>;
1924
+ newUpdateAuthority: import("superstruct").Struct<String, null>;
1925
+ updateAuthority: import("superstruct").Struct<String, null>;
1926
+ }>;
1927
+ withdrawConfidentialTransfer: import("superstruct").Struct<{
1928
+ amount: string | number;
1929
+ decimals: number;
1930
+ mint: String;
1931
+ destination: String;
1932
+ source: String;
1933
+ equalityProofInstructionOffset: number;
1934
+ newDecryptableAvailableBalance: string;
1935
+ rangeProofInstructionOffset: number;
1936
+ owner?: String | undefined;
1937
+ signers?: String[] | undefined;
1938
+ multisigOwner?: String | undefined;
1939
+ instructionsSysvar?: String | undefined;
1940
+ equalityProofContextStateAccount?: String | undefined;
1941
+ equalityProofRecordAccount?: String | undefined;
1942
+ rangeProofContextStateAccount?: String | undefined;
1943
+ rangeProofRecordAccount?: String | undefined;
1944
+ }, {
1945
+ amount: import("superstruct").Struct<string | number, null>;
1946
+ decimals: import("superstruct").Struct<number, null>;
1947
+ destination: import("superstruct").Struct<String, null>;
1948
+ equalityProofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
1949
+ equalityProofInstructionOffset: import("superstruct").Struct<number, null>;
1950
+ equalityProofRecordAccount: import("superstruct").Struct<String | undefined, null>;
1951
+ instructionsSysvar: import("superstruct").Struct<String | undefined, null>;
1952
+ mint: import("superstruct").Struct<String, null>;
1953
+ multisigOwner: import("superstruct").Struct<String | undefined, null>;
1954
+ newDecryptableAvailableBalance: import("superstruct").Struct<string, null>;
1955
+ owner: import("superstruct").Struct<String | undefined, null>;
1956
+ rangeProofContextStateAccount: import("superstruct").Struct<String | undefined, null>;
1957
+ rangeProofInstructionOffset: import("superstruct").Struct<number, null>;
1958
+ rangeProofRecordAccount: import("superstruct").Struct<String | undefined, null>;
1959
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1960
+ source: import("superstruct").Struct<String, null>;
1961
+ }>;
1962
+ withdrawExcessLamports: import("superstruct").Struct<{
1963
+ destination: String;
1964
+ source: String;
1965
+ signers?: String[] | undefined;
1966
+ authority?: String | undefined;
1967
+ multisigAuthority?: String | undefined;
1968
+ }, {
1969
+ authority: import("superstruct").Struct<String | undefined, null>;
1970
+ destination: import("superstruct").Struct<String, null>;
1971
+ multisigAuthority: import("superstruct").Struct<String | undefined, null>;
1972
+ signers: import("superstruct").Struct<String[] | undefined, import("superstruct").Struct<String, null>>;
1973
+ source: import("superstruct").Struct<String, null>;
1974
+ }>;
1975
+ };
1976
+ export declare const IX_TITLES: {
1977
+ amountToUiAmount: string;
1978
+ applyPendingConfidentialTransferBalance: string;
1979
+ approve: string;
1980
+ approve2: string;
1981
+ approveChecked: string;
1982
+ approveConfidentialTransferAccount: string;
1983
+ burn: string;
1984
+ burn2: string;
1985
+ burnChecked: string;
1986
+ closeAccount: string;
1987
+ confidentialTransfer: string;
1988
+ confidentialTransferWithFee: string;
1989
+ configureConfidentialAccountWithRegistry: string;
1990
+ configureConfidentialTransferAccount: string;
1991
+ createNativeMint: string;
1992
+ defaultAccountStateExtension: string;
1993
+ depositConfidentialTransfer: string;
1994
+ disableConfidentialTransferConfidentialCredits: string;
1995
+ disableConfidentialTransferNonConfidentialCredits: string;
1996
+ emitTokenMetadata: string;
1997
+ emptyConfidentialTransferAccount: string;
1998
+ enableConfidentialTransferConfidentialCredits: string;
1999
+ enableConfidentialTransferNonConfidentialCredits: string;
2000
+ freezeAccount: string;
2001
+ getAccountDataSize: string;
2002
+ initializeAccount: string;
2003
+ initializeAccount2: string;
2004
+ initializeAccount3: string;
2005
+ initializeConfidentialTransferMint: string;
2006
+ initializeGroupMemberPointer: string;
2007
+ initializeGroupPointer: string;
2008
+ initializeImmutableOwner: string;
2009
+ initializeMetadataPointer: string;
2010
+ initializeMint: string;
2011
+ initializeMint2: string;
2012
+ initializeMintCloseAuthority: string;
2013
+ initializeMultisig: string;
2014
+ initializeNonTransferableMint: string;
2015
+ initializePermanentDelegate: string;
2016
+ initializeTokenGroup: string;
2017
+ initializeTokenGroupMember: string;
2018
+ initializeTokenMetadata: string;
2019
+ memoTransferExtension: string;
2020
+ mintTo: string;
2021
+ mintTo2: string;
2022
+ mintToChecked: string;
2023
+ reallocate: string;
2024
+ removeTokenMetadataKey: string;
2025
+ revoke: string;
2026
+ setAuthority: string;
2027
+ syncNative: string;
2028
+ thawAccount: string;
2029
+ transfer: string;
2030
+ transfer2: string;
2031
+ transferChecked: string;
2032
+ transferFeeExtension: string;
2033
+ uiAmountToAmount: string;
2034
+ updateConfidentialTransferMint: string;
2035
+ updateGroupMemberPointer: string;
2036
+ updateGroupPointer: string;
2037
+ updateMetadataPointer: string;
2038
+ updateTokenGroupMaxSize: string;
2039
+ updateTokenGroupUpdateAuthority: string;
2040
+ updateTokenMetadataAuthority: string;
2041
+ updateTokenMetadataField: string;
2042
+ updateTokenMetadataUpdateAuthority: string;
2043
+ withdrawConfidentialTransfer: string;
2044
+ withdrawExcessLamports: string;
2045
+ };
428
2046
  //# sourceMappingURL=types.d.ts.map