@revibase/core 0.0.49 → 0.0.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +539 -434
- package/dist/index.d.ts +539 -434
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as gill from 'gill';
|
|
2
|
-
import { ReadonlyUint8Array, Address, FixedSizeEncoder, FixedSizeDecoder, FixedSizeCodec, EncodedAccount, Account, MaybeEncodedAccount, MaybeAccount, fetchEncodedAccount, FetchAccountConfig, fetchEncodedAccounts, FetchAccountsConfig, Encoder, Decoder, Codec, Option, OptionOrNullable, GetDiscriminatedUnionVariantContent, GetDiscriminatedUnionVariant, SolanaError, SOLANA_ERROR__INSTRUCTION_ERROR__CUSTOM, AccountMeta, Instruction, InstructionWithData, InstructionWithAccounts, WritableAccount, WritableSignerAccount, AccountSignerMeta, ReadonlyAccount, TransactionSigner, ReadonlySignerAccount, Slot, AccountInfoBase, Base64EncodedDataResponse, AddressesByLookupTableAddress, CompiledTransactionMessage, CompiledTransactionMessageWithLifetime, AccountRole, Rpc as Rpc$1, SendAndConfirmTransactionWithSignersFunction
|
|
2
|
+
import { ReadonlyUint8Array, Address, FixedSizeEncoder, FixedSizeDecoder, FixedSizeCodec, EncodedAccount, Account, MaybeEncodedAccount, MaybeAccount, fetchEncodedAccount, FetchAccountConfig, fetchEncodedAccounts, FetchAccountsConfig, Encoder, Decoder, Codec, Option, OptionOrNullable, GetDiscriminatedUnionVariantContent, GetDiscriminatedUnionVariant, SolanaError, SOLANA_ERROR__INSTRUCTION_ERROR__CUSTOM, AccountMeta, Instruction, InstructionWithData, InstructionWithAccounts, WritableAccount, WritableSignerAccount, AccountSignerMeta, ReadonlyAccount, TransactionSigner, ReadonlySignerAccount, Slot, AccountInfoBase, Base64EncodedDataResponse, AddressesByLookupTableAddress, CompiledTransactionMessage, CompiledTransactionMessageWithLifetime, AccountRole, Rpc as Rpc$1, SendAndConfirmTransactionWithSignersFunction } from 'gill';
|
|
3
3
|
import { AuthenticationResponseJSON } from '@simplewebauthn/browser';
|
|
4
4
|
import { CompressedAccount, WithCursor, ParsedTokenAccount, TreeInfo, AccountProofInput, NewAddressProofInput, PackedTreeInfos, ValidityProofWithContext, Rpc } from '@lightprotocol/stateless.js';
|
|
5
5
|
import z from 'zod';
|
|
@@ -244,39 +244,39 @@ declare function getCompressionInfoDecoder(): FixedSizeDecoder<CompressionInfo>;
|
|
|
244
244
|
declare function getCompressionInfoCodec(): FixedSizeCodec<CompressionInfoArgs, CompressionInfo>;
|
|
245
245
|
|
|
246
246
|
type ConfigAction = {
|
|
247
|
-
__kind:
|
|
247
|
+
__kind: "EditPermissions";
|
|
248
248
|
fields: readonly [Array<EditMemberArgs$1>];
|
|
249
249
|
} | {
|
|
250
|
-
__kind:
|
|
250
|
+
__kind: "AddMembers";
|
|
251
251
|
fields: readonly [Array<AddMemberArgs$1>];
|
|
252
252
|
} | {
|
|
253
|
-
__kind:
|
|
253
|
+
__kind: "RemoveMembers";
|
|
254
254
|
fields: readonly [Array<RemoveMemberArgs$1>];
|
|
255
255
|
} | {
|
|
256
|
-
__kind:
|
|
256
|
+
__kind: "SetThreshold";
|
|
257
257
|
fields: readonly [number];
|
|
258
258
|
};
|
|
259
259
|
type ConfigActionArgs = {
|
|
260
|
-
__kind:
|
|
260
|
+
__kind: "EditPermissions";
|
|
261
261
|
fields: readonly [Array<EditMemberArgsArgs>];
|
|
262
262
|
} | {
|
|
263
|
-
__kind:
|
|
263
|
+
__kind: "AddMembers";
|
|
264
264
|
fields: readonly [Array<AddMemberArgsArgs>];
|
|
265
265
|
} | {
|
|
266
|
-
__kind:
|
|
266
|
+
__kind: "RemoveMembers";
|
|
267
267
|
fields: readonly [Array<RemoveMemberArgsArgs>];
|
|
268
268
|
} | {
|
|
269
|
-
__kind:
|
|
269
|
+
__kind: "SetThreshold";
|
|
270
270
|
fields: readonly [number];
|
|
271
271
|
};
|
|
272
272
|
declare function getConfigActionEncoder(): Encoder<ConfigActionArgs>;
|
|
273
273
|
declare function getConfigActionDecoder(): Decoder<ConfigAction>;
|
|
274
274
|
declare function getConfigActionCodec(): Codec<ConfigActionArgs, ConfigAction>;
|
|
275
|
-
declare function configAction(kind:
|
|
276
|
-
declare function configAction(kind:
|
|
277
|
-
declare function configAction(kind:
|
|
278
|
-
declare function configAction(kind:
|
|
279
|
-
declare function isConfigAction<K extends ConfigAction[
|
|
275
|
+
declare function configAction(kind: "EditPermissions", data: GetDiscriminatedUnionVariantContent<ConfigActionArgs, "__kind", "EditPermissions">["fields"]): GetDiscriminatedUnionVariant<ConfigActionArgs, "__kind", "EditPermissions">;
|
|
276
|
+
declare function configAction(kind: "AddMembers", data: GetDiscriminatedUnionVariantContent<ConfigActionArgs, "__kind", "AddMembers">["fields"]): GetDiscriminatedUnionVariant<ConfigActionArgs, "__kind", "AddMembers">;
|
|
277
|
+
declare function configAction(kind: "RemoveMembers", data: GetDiscriminatedUnionVariantContent<ConfigActionArgs, "__kind", "RemoveMembers">["fields"]): GetDiscriminatedUnionVariant<ConfigActionArgs, "__kind", "RemoveMembers">;
|
|
278
|
+
declare function configAction(kind: "SetThreshold", data: GetDiscriminatedUnionVariantContent<ConfigActionArgs, "__kind", "SetThreshold">["fields"]): GetDiscriminatedUnionVariant<ConfigActionArgs, "__kind", "SetThreshold">;
|
|
279
|
+
declare function isConfigAction<K extends ConfigAction["__kind"]>(kind: K, value: ConfigAction): value is ConfigAction & {
|
|
280
280
|
__kind: K;
|
|
281
281
|
};
|
|
282
282
|
|
|
@@ -321,190 +321,190 @@ declare function getExpectedSecp256r1SignersDecoder(): FixedSizeDecoder<Expected
|
|
|
321
321
|
declare function getExpectedSecp256r1SignersCodec(): FixedSizeCodec<ExpectedSecp256r1SignersArgs, ExpectedSecp256r1Signers>;
|
|
322
322
|
|
|
323
323
|
type ExtensionStruct = {
|
|
324
|
-
__kind:
|
|
324
|
+
__kind: "Placeholder0";
|
|
325
325
|
} | {
|
|
326
|
-
__kind:
|
|
326
|
+
__kind: "Placeholder1";
|
|
327
327
|
} | {
|
|
328
|
-
__kind:
|
|
328
|
+
__kind: "Placeholder2";
|
|
329
329
|
} | {
|
|
330
|
-
__kind:
|
|
330
|
+
__kind: "Placeholder3";
|
|
331
331
|
} | {
|
|
332
|
-
__kind:
|
|
332
|
+
__kind: "Placeholder4";
|
|
333
333
|
} | {
|
|
334
|
-
__kind:
|
|
334
|
+
__kind: "Placeholder5";
|
|
335
335
|
} | {
|
|
336
|
-
__kind:
|
|
336
|
+
__kind: "Placeholder6";
|
|
337
337
|
} | {
|
|
338
|
-
__kind:
|
|
338
|
+
__kind: "Placeholder7";
|
|
339
339
|
} | {
|
|
340
|
-
__kind:
|
|
340
|
+
__kind: "Placeholder8";
|
|
341
341
|
} | {
|
|
342
|
-
__kind:
|
|
342
|
+
__kind: "Placeholder9";
|
|
343
343
|
} | {
|
|
344
|
-
__kind:
|
|
344
|
+
__kind: "Placeholder10";
|
|
345
345
|
} | {
|
|
346
|
-
__kind:
|
|
346
|
+
__kind: "Placeholder11";
|
|
347
347
|
} | {
|
|
348
|
-
__kind:
|
|
348
|
+
__kind: "Placeholder12";
|
|
349
349
|
} | {
|
|
350
|
-
__kind:
|
|
350
|
+
__kind: "Placeholder13";
|
|
351
351
|
} | {
|
|
352
|
-
__kind:
|
|
352
|
+
__kind: "Placeholder14";
|
|
353
353
|
} | {
|
|
354
|
-
__kind:
|
|
354
|
+
__kind: "Placeholder15";
|
|
355
355
|
} | {
|
|
356
|
-
__kind:
|
|
356
|
+
__kind: "Placeholder16";
|
|
357
357
|
} | {
|
|
358
|
-
__kind:
|
|
358
|
+
__kind: "Placeholder17";
|
|
359
359
|
} | {
|
|
360
|
-
__kind:
|
|
360
|
+
__kind: "Placeholder18";
|
|
361
361
|
} | {
|
|
362
|
-
__kind:
|
|
362
|
+
__kind: "TokenMetadata";
|
|
363
363
|
fields: readonly [TokenMetadata];
|
|
364
364
|
} | {
|
|
365
|
-
__kind:
|
|
365
|
+
__kind: "Placeholder20";
|
|
366
366
|
} | {
|
|
367
|
-
__kind:
|
|
367
|
+
__kind: "Placeholder21";
|
|
368
368
|
} | {
|
|
369
|
-
__kind:
|
|
369
|
+
__kind: "Placeholder22";
|
|
370
370
|
} | {
|
|
371
|
-
__kind:
|
|
371
|
+
__kind: "Placeholder23";
|
|
372
372
|
} | {
|
|
373
|
-
__kind:
|
|
373
|
+
__kind: "Placeholder24";
|
|
374
374
|
} | {
|
|
375
|
-
__kind:
|
|
375
|
+
__kind: "Placeholder25";
|
|
376
376
|
} | {
|
|
377
|
-
__kind:
|
|
377
|
+
__kind: "Placeholder26";
|
|
378
378
|
} | {
|
|
379
|
-
__kind:
|
|
379
|
+
__kind: "PausableAccount";
|
|
380
380
|
fields: readonly [PausableAccountExtension];
|
|
381
381
|
} | {
|
|
382
|
-
__kind:
|
|
382
|
+
__kind: "PermanentDelegateAccount";
|
|
383
383
|
fields: readonly [PermanentDelegateAccountExtension];
|
|
384
384
|
} | {
|
|
385
|
-
__kind:
|
|
385
|
+
__kind: "TransferFeeAccount";
|
|
386
386
|
fields: readonly [TransferFeeAccountExtension];
|
|
387
387
|
} | {
|
|
388
|
-
__kind:
|
|
388
|
+
__kind: "TransferHookAccount";
|
|
389
389
|
fields: readonly [TransferHookAccountExtension];
|
|
390
390
|
} | {
|
|
391
|
-
__kind:
|
|
391
|
+
__kind: "CompressedOnly";
|
|
392
392
|
fields: readonly [CompressedOnlyExtension];
|
|
393
393
|
} | {
|
|
394
|
-
__kind:
|
|
394
|
+
__kind: "Compressible";
|
|
395
395
|
fields: readonly [CompressibleExtension];
|
|
396
396
|
};
|
|
397
397
|
type ExtensionStructArgs = {
|
|
398
|
-
__kind:
|
|
398
|
+
__kind: "Placeholder0";
|
|
399
399
|
} | {
|
|
400
|
-
__kind:
|
|
400
|
+
__kind: "Placeholder1";
|
|
401
401
|
} | {
|
|
402
|
-
__kind:
|
|
402
|
+
__kind: "Placeholder2";
|
|
403
403
|
} | {
|
|
404
|
-
__kind:
|
|
404
|
+
__kind: "Placeholder3";
|
|
405
405
|
} | {
|
|
406
|
-
__kind:
|
|
406
|
+
__kind: "Placeholder4";
|
|
407
407
|
} | {
|
|
408
|
-
__kind:
|
|
408
|
+
__kind: "Placeholder5";
|
|
409
409
|
} | {
|
|
410
|
-
__kind:
|
|
410
|
+
__kind: "Placeholder6";
|
|
411
411
|
} | {
|
|
412
|
-
__kind:
|
|
412
|
+
__kind: "Placeholder7";
|
|
413
413
|
} | {
|
|
414
|
-
__kind:
|
|
414
|
+
__kind: "Placeholder8";
|
|
415
415
|
} | {
|
|
416
|
-
__kind:
|
|
416
|
+
__kind: "Placeholder9";
|
|
417
417
|
} | {
|
|
418
|
-
__kind:
|
|
418
|
+
__kind: "Placeholder10";
|
|
419
419
|
} | {
|
|
420
|
-
__kind:
|
|
420
|
+
__kind: "Placeholder11";
|
|
421
421
|
} | {
|
|
422
|
-
__kind:
|
|
422
|
+
__kind: "Placeholder12";
|
|
423
423
|
} | {
|
|
424
|
-
__kind:
|
|
424
|
+
__kind: "Placeholder13";
|
|
425
425
|
} | {
|
|
426
|
-
__kind:
|
|
426
|
+
__kind: "Placeholder14";
|
|
427
427
|
} | {
|
|
428
|
-
__kind:
|
|
428
|
+
__kind: "Placeholder15";
|
|
429
429
|
} | {
|
|
430
|
-
__kind:
|
|
430
|
+
__kind: "Placeholder16";
|
|
431
431
|
} | {
|
|
432
|
-
__kind:
|
|
432
|
+
__kind: "Placeholder17";
|
|
433
433
|
} | {
|
|
434
|
-
__kind:
|
|
434
|
+
__kind: "Placeholder18";
|
|
435
435
|
} | {
|
|
436
|
-
__kind:
|
|
436
|
+
__kind: "TokenMetadata";
|
|
437
437
|
fields: readonly [TokenMetadataArgs];
|
|
438
438
|
} | {
|
|
439
|
-
__kind:
|
|
439
|
+
__kind: "Placeholder20";
|
|
440
440
|
} | {
|
|
441
|
-
__kind:
|
|
441
|
+
__kind: "Placeholder21";
|
|
442
442
|
} | {
|
|
443
|
-
__kind:
|
|
443
|
+
__kind: "Placeholder22";
|
|
444
444
|
} | {
|
|
445
|
-
__kind:
|
|
445
|
+
__kind: "Placeholder23";
|
|
446
446
|
} | {
|
|
447
|
-
__kind:
|
|
447
|
+
__kind: "Placeholder24";
|
|
448
448
|
} | {
|
|
449
|
-
__kind:
|
|
449
|
+
__kind: "Placeholder25";
|
|
450
450
|
} | {
|
|
451
|
-
__kind:
|
|
451
|
+
__kind: "Placeholder26";
|
|
452
452
|
} | {
|
|
453
|
-
__kind:
|
|
453
|
+
__kind: "PausableAccount";
|
|
454
454
|
fields: readonly [PausableAccountExtensionArgs];
|
|
455
455
|
} | {
|
|
456
|
-
__kind:
|
|
456
|
+
__kind: "PermanentDelegateAccount";
|
|
457
457
|
fields: readonly [PermanentDelegateAccountExtensionArgs];
|
|
458
458
|
} | {
|
|
459
|
-
__kind:
|
|
459
|
+
__kind: "TransferFeeAccount";
|
|
460
460
|
fields: readonly [TransferFeeAccountExtensionArgs];
|
|
461
461
|
} | {
|
|
462
|
-
__kind:
|
|
462
|
+
__kind: "TransferHookAccount";
|
|
463
463
|
fields: readonly [TransferHookAccountExtensionArgs];
|
|
464
464
|
} | {
|
|
465
|
-
__kind:
|
|
465
|
+
__kind: "CompressedOnly";
|
|
466
466
|
fields: readonly [CompressedOnlyExtensionArgs];
|
|
467
467
|
} | {
|
|
468
|
-
__kind:
|
|
468
|
+
__kind: "Compressible";
|
|
469
469
|
fields: readonly [CompressibleExtensionArgs];
|
|
470
470
|
};
|
|
471
471
|
declare function getExtensionStructEncoder(): Encoder<ExtensionStructArgs>;
|
|
472
472
|
declare function getExtensionStructDecoder(): Decoder<ExtensionStruct>;
|
|
473
473
|
declare function getExtensionStructCodec(): Codec<ExtensionStructArgs, ExtensionStruct>;
|
|
474
|
-
declare function extensionStruct(kind:
|
|
475
|
-
declare function extensionStruct(kind:
|
|
476
|
-
declare function extensionStruct(kind:
|
|
477
|
-
declare function extensionStruct(kind:
|
|
478
|
-
declare function extensionStruct(kind:
|
|
479
|
-
declare function extensionStruct(kind:
|
|
480
|
-
declare function extensionStruct(kind:
|
|
481
|
-
declare function extensionStruct(kind:
|
|
482
|
-
declare function extensionStruct(kind:
|
|
483
|
-
declare function extensionStruct(kind:
|
|
484
|
-
declare function extensionStruct(kind:
|
|
485
|
-
declare function extensionStruct(kind:
|
|
486
|
-
declare function extensionStruct(kind:
|
|
487
|
-
declare function extensionStruct(kind:
|
|
488
|
-
declare function extensionStruct(kind:
|
|
489
|
-
declare function extensionStruct(kind:
|
|
490
|
-
declare function extensionStruct(kind:
|
|
491
|
-
declare function extensionStruct(kind:
|
|
492
|
-
declare function extensionStruct(kind:
|
|
493
|
-
declare function extensionStruct(kind:
|
|
494
|
-
declare function extensionStruct(kind:
|
|
495
|
-
declare function extensionStruct(kind:
|
|
496
|
-
declare function extensionStruct(kind:
|
|
497
|
-
declare function extensionStruct(kind:
|
|
498
|
-
declare function extensionStruct(kind:
|
|
499
|
-
declare function extensionStruct(kind:
|
|
500
|
-
declare function extensionStruct(kind:
|
|
501
|
-
declare function extensionStruct(kind:
|
|
502
|
-
declare function extensionStruct(kind:
|
|
503
|
-
declare function extensionStruct(kind:
|
|
504
|
-
declare function extensionStruct(kind:
|
|
505
|
-
declare function extensionStruct(kind:
|
|
506
|
-
declare function extensionStruct(kind:
|
|
507
|
-
declare function isExtensionStruct<K extends ExtensionStruct[
|
|
474
|
+
declare function extensionStruct(kind: "Placeholder0"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder0">;
|
|
475
|
+
declare function extensionStruct(kind: "Placeholder1"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder1">;
|
|
476
|
+
declare function extensionStruct(kind: "Placeholder2"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder2">;
|
|
477
|
+
declare function extensionStruct(kind: "Placeholder3"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder3">;
|
|
478
|
+
declare function extensionStruct(kind: "Placeholder4"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder4">;
|
|
479
|
+
declare function extensionStruct(kind: "Placeholder5"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder5">;
|
|
480
|
+
declare function extensionStruct(kind: "Placeholder6"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder6">;
|
|
481
|
+
declare function extensionStruct(kind: "Placeholder7"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder7">;
|
|
482
|
+
declare function extensionStruct(kind: "Placeholder8"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder8">;
|
|
483
|
+
declare function extensionStruct(kind: "Placeholder9"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder9">;
|
|
484
|
+
declare function extensionStruct(kind: "Placeholder10"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder10">;
|
|
485
|
+
declare function extensionStruct(kind: "Placeholder11"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder11">;
|
|
486
|
+
declare function extensionStruct(kind: "Placeholder12"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder12">;
|
|
487
|
+
declare function extensionStruct(kind: "Placeholder13"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder13">;
|
|
488
|
+
declare function extensionStruct(kind: "Placeholder14"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder14">;
|
|
489
|
+
declare function extensionStruct(kind: "Placeholder15"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder15">;
|
|
490
|
+
declare function extensionStruct(kind: "Placeholder16"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder16">;
|
|
491
|
+
declare function extensionStruct(kind: "Placeholder17"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder17">;
|
|
492
|
+
declare function extensionStruct(kind: "Placeholder18"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder18">;
|
|
493
|
+
declare function extensionStruct(kind: "TokenMetadata", data: GetDiscriminatedUnionVariantContent<ExtensionStructArgs, "__kind", "TokenMetadata">["fields"]): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "TokenMetadata">;
|
|
494
|
+
declare function extensionStruct(kind: "Placeholder20"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder20">;
|
|
495
|
+
declare function extensionStruct(kind: "Placeholder21"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder21">;
|
|
496
|
+
declare function extensionStruct(kind: "Placeholder22"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder22">;
|
|
497
|
+
declare function extensionStruct(kind: "Placeholder23"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder23">;
|
|
498
|
+
declare function extensionStruct(kind: "Placeholder24"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder24">;
|
|
499
|
+
declare function extensionStruct(kind: "Placeholder25"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder25">;
|
|
500
|
+
declare function extensionStruct(kind: "Placeholder26"): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Placeholder26">;
|
|
501
|
+
declare function extensionStruct(kind: "PausableAccount", data: GetDiscriminatedUnionVariantContent<ExtensionStructArgs, "__kind", "PausableAccount">["fields"]): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "PausableAccount">;
|
|
502
|
+
declare function extensionStruct(kind: "PermanentDelegateAccount", data: GetDiscriminatedUnionVariantContent<ExtensionStructArgs, "__kind", "PermanentDelegateAccount">["fields"]): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "PermanentDelegateAccount">;
|
|
503
|
+
declare function extensionStruct(kind: "TransferFeeAccount", data: GetDiscriminatedUnionVariantContent<ExtensionStructArgs, "__kind", "TransferFeeAccount">["fields"]): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "TransferFeeAccount">;
|
|
504
|
+
declare function extensionStruct(kind: "TransferHookAccount", data: GetDiscriminatedUnionVariantContent<ExtensionStructArgs, "__kind", "TransferHookAccount">["fields"]): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "TransferHookAccount">;
|
|
505
|
+
declare function extensionStruct(kind: "CompressedOnly", data: GetDiscriminatedUnionVariantContent<ExtensionStructArgs, "__kind", "CompressedOnly">["fields"]): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "CompressedOnly">;
|
|
506
|
+
declare function extensionStruct(kind: "Compressible", data: GetDiscriminatedUnionVariantContent<ExtensionStructArgs, "__kind", "Compressible">["fields"]): GetDiscriminatedUnionVariant<ExtensionStructArgs, "__kind", "Compressible">;
|
|
507
|
+
declare function isExtensionStruct<K extends ExtensionStruct["__kind"]>(kind: K, value: ExtensionStruct): value is ExtensionStruct & {
|
|
508
508
|
__kind: K;
|
|
509
509
|
};
|
|
510
510
|
|
|
@@ -920,25 +920,25 @@ declare function getUserReadOnlyArgsDecoder(): Decoder<UserReadOnlyArgs>;
|
|
|
920
920
|
declare function getUserReadOnlyArgsCodec(): Codec<UserReadOnlyArgsArgs, UserReadOnlyArgs>;
|
|
921
921
|
|
|
922
922
|
type UserReadOnlyOrMutateArgs = {
|
|
923
|
-
__kind:
|
|
923
|
+
__kind: "Read";
|
|
924
924
|
fields: readonly [UserReadOnlyArgs];
|
|
925
925
|
} | {
|
|
926
|
-
__kind:
|
|
926
|
+
__kind: "Mutate";
|
|
927
927
|
fields: readonly [UserMutArgs];
|
|
928
928
|
};
|
|
929
929
|
type UserReadOnlyOrMutateArgsArgs = {
|
|
930
|
-
__kind:
|
|
930
|
+
__kind: "Read";
|
|
931
931
|
fields: readonly [UserReadOnlyArgsArgs];
|
|
932
932
|
} | {
|
|
933
|
-
__kind:
|
|
933
|
+
__kind: "Mutate";
|
|
934
934
|
fields: readonly [UserMutArgsArgs];
|
|
935
935
|
};
|
|
936
936
|
declare function getUserReadOnlyOrMutateArgsEncoder(): Encoder<UserReadOnlyOrMutateArgsArgs>;
|
|
937
937
|
declare function getUserReadOnlyOrMutateArgsDecoder(): Decoder<UserReadOnlyOrMutateArgs>;
|
|
938
938
|
declare function getUserReadOnlyOrMutateArgsCodec(): Codec<UserReadOnlyOrMutateArgsArgs, UserReadOnlyOrMutateArgs>;
|
|
939
|
-
declare function userReadOnlyOrMutateArgs(kind:
|
|
940
|
-
declare function userReadOnlyOrMutateArgs(kind:
|
|
941
|
-
declare function isUserReadOnlyOrMutateArgs<K extends UserReadOnlyOrMutateArgs[
|
|
939
|
+
declare function userReadOnlyOrMutateArgs(kind: "Read", data: GetDiscriminatedUnionVariantContent<UserReadOnlyOrMutateArgsArgs, "__kind", "Read">["fields"]): GetDiscriminatedUnionVariant<UserReadOnlyOrMutateArgsArgs, "__kind", "Read">;
|
|
940
|
+
declare function userReadOnlyOrMutateArgs(kind: "Mutate", data: GetDiscriminatedUnionVariantContent<UserReadOnlyOrMutateArgsArgs, "__kind", "Mutate">["fields"]): GetDiscriminatedUnionVariant<UserReadOnlyOrMutateArgsArgs, "__kind", "Mutate">;
|
|
941
|
+
declare function isUserReadOnlyOrMutateArgs<K extends UserReadOnlyOrMutateArgs["__kind"]>(kind: K, value: UserReadOnlyOrMutateArgs): value is UserReadOnlyOrMutateArgs & {
|
|
942
942
|
__kind: K;
|
|
943
943
|
};
|
|
944
944
|
|
|
@@ -1202,7 +1202,7 @@ declare enum MultiWalletInstruction {
|
|
|
1202
1202
|
declare function identifyMultiWalletInstruction(instruction: {
|
|
1203
1203
|
data: ReadonlyUint8Array;
|
|
1204
1204
|
} | ReadonlyUint8Array): MultiWalletInstruction;
|
|
1205
|
-
type ParsedMultiWalletInstruction<TProgram extends string =
|
|
1205
|
+
type ParsedMultiWalletInstruction<TProgram extends string = "reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT"> = ({
|
|
1206
1206
|
instructionType: MultiWalletInstruction.AddWhitelistedAddressTrees;
|
|
1207
1207
|
} & ParsedAddWhitelistedAddressTreesInstruction<TProgram>) | ({
|
|
1208
1208
|
instructionType: MultiWalletInstruction.ChangeConfig;
|
|
@@ -1272,7 +1272,7 @@ type ParsedMultiWalletInstruction<TProgram extends string = 'reviR1xysEChySVSWGa
|
|
|
1272
1272
|
|
|
1273
1273
|
declare const ADD_WHITELISTED_ADDRESS_TREES_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
1274
1274
|
declare function getAddWhitelistedAddressTreesDiscriminatorBytes(): ReadonlyUint8Array;
|
|
1275
|
-
type AddWhitelistedAddressTreesInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> =
|
|
1275
|
+
type AddWhitelistedAddressTreesInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
1276
1276
|
TAccountWhitelistedAddressTrees extends string ? WritableAccount<TAccountWhitelistedAddressTrees> : TAccountWhitelistedAddressTrees,
|
|
1277
1277
|
TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
|
|
1278
1278
|
TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
|
|
@@ -1298,8 +1298,8 @@ type AddWhitelistedAddressTreesAsyncInput<TAccountWhitelistedAddressTrees extend
|
|
|
1298
1298
|
whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
|
|
1299
1299
|
payer: TransactionSigner<TAccountPayer>;
|
|
1300
1300
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
1301
|
-
addressTree: AddWhitelistedAddressTreesInstructionDataArgs[
|
|
1302
|
-
remainingAccounts: AddWhitelistedAddressTreesInstructionExtraArgs[
|
|
1301
|
+
addressTree: AddWhitelistedAddressTreesInstructionDataArgs["addressTree"];
|
|
1302
|
+
remainingAccounts: AddWhitelistedAddressTreesInstructionExtraArgs["remainingAccounts"];
|
|
1303
1303
|
};
|
|
1304
1304
|
declare function getAddWhitelistedAddressTreesInstructionAsync<TAccountWhitelistedAddressTrees extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: AddWhitelistedAddressTreesAsyncInput<TAccountWhitelistedAddressTrees, TAccountPayer, TAccountSystemProgram>, config?: {
|
|
1305
1305
|
programAddress?: TProgramAddress;
|
|
@@ -1308,8 +1308,8 @@ type AddWhitelistedAddressTreesInput<TAccountWhitelistedAddressTrees extends str
|
|
|
1308
1308
|
whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
|
|
1309
1309
|
payer: TransactionSigner<TAccountPayer>;
|
|
1310
1310
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
1311
|
-
addressTree: AddWhitelistedAddressTreesInstructionDataArgs[
|
|
1312
|
-
remainingAccounts: AddWhitelistedAddressTreesInstructionExtraArgs[
|
|
1311
|
+
addressTree: AddWhitelistedAddressTreesInstructionDataArgs["addressTree"];
|
|
1312
|
+
remainingAccounts: AddWhitelistedAddressTreesInstructionExtraArgs["remainingAccounts"];
|
|
1313
1313
|
};
|
|
1314
1314
|
declare function getAddWhitelistedAddressTreesInstruction<TAccountWhitelistedAddressTrees extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: AddWhitelistedAddressTreesInput<TAccountWhitelistedAddressTrees, TAccountPayer, TAccountSystemProgram>, config?: {
|
|
1315
1315
|
programAddress?: TProgramAddress;
|
|
@@ -1327,7 +1327,7 @@ declare function parseAddWhitelistedAddressTreesInstruction<TProgram extends str
|
|
|
1327
1327
|
|
|
1328
1328
|
declare const CHANGE_CONFIG_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
1329
1329
|
declare function getChangeConfigDiscriminatorBytes(): ReadonlyUint8Array;
|
|
1330
|
-
type ChangeConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> =
|
|
1330
|
+
type ChangeConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
1331
1331
|
TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
|
|
1332
1332
|
TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
|
|
1333
1333
|
TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
|
|
@@ -1337,13 +1337,11 @@ type ChangeConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGR
|
|
|
1337
1337
|
]>;
|
|
1338
1338
|
type ChangeConfigInstructionData = {
|
|
1339
1339
|
discriminator: ReadonlyUint8Array;
|
|
1340
|
-
settingsIndex: bigint;
|
|
1341
1340
|
configActions: Array<ConfigAction>;
|
|
1342
1341
|
secp256r1VerifyArgs: Array<Secp256r1VerifyArgsWithDomainAddress>;
|
|
1343
1342
|
compressedProofArgs: Option<ProofArgs>;
|
|
1344
1343
|
};
|
|
1345
1344
|
type ChangeConfigInstructionDataArgs = {
|
|
1346
|
-
settingsIndex: number | bigint;
|
|
1347
1345
|
configActions: Array<ConfigActionArgs>;
|
|
1348
1346
|
secp256r1VerifyArgs: Array<Secp256r1VerifyArgsWithDomainAddressArgs>;
|
|
1349
1347
|
compressedProofArgs: OptionOrNullable<ProofArgsArgs>;
|
|
@@ -1357,32 +1355,16 @@ type ChangeConfigInstructionExtraArgs = {
|
|
|
1357
1355
|
role: number;
|
|
1358
1356
|
}>;
|
|
1359
1357
|
};
|
|
1360
|
-
type ChangeConfigAsyncInput<TAccountSettings extends string = string, TAccountPayer extends string = string, TAccountSystemProgram extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string> = {
|
|
1361
|
-
settings?: Address<TAccountSettings>;
|
|
1362
|
-
payer: TransactionSigner<TAccountPayer>;
|
|
1363
|
-
systemProgram?: Address<TAccountSystemProgram>;
|
|
1364
|
-
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
1365
|
-
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
1366
|
-
settingsIndex: ChangeConfigInstructionDataArgs['settingsIndex'];
|
|
1367
|
-
configActions: ChangeConfigInstructionDataArgs['configActions'];
|
|
1368
|
-
secp256r1VerifyArgs: ChangeConfigInstructionDataArgs['secp256r1VerifyArgs'];
|
|
1369
|
-
compressedProofArgs: ChangeConfigInstructionDataArgs['compressedProofArgs'];
|
|
1370
|
-
remainingAccounts: ChangeConfigInstructionExtraArgs['remainingAccounts'];
|
|
1371
|
-
};
|
|
1372
|
-
declare function getChangeConfigInstructionAsync<TAccountSettings extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: ChangeConfigAsyncInput<TAccountSettings, TAccountPayer, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
|
|
1373
|
-
programAddress?: TProgramAddress;
|
|
1374
|
-
}): Promise<ChangeConfigInstruction<TProgramAddress, TAccountSettings, TAccountPayer, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar>>;
|
|
1375
1358
|
type ChangeConfigInput<TAccountSettings extends string = string, TAccountPayer extends string = string, TAccountSystemProgram extends string = string, TAccountSlotHashSysvar extends string = string, TAccountInstructionsSysvar extends string = string> = {
|
|
1376
1359
|
settings: Address<TAccountSettings>;
|
|
1377
1360
|
payer: TransactionSigner<TAccountPayer>;
|
|
1378
1361
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
1379
1362
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
1380
1363
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
remainingAccounts: ChangeConfigInstructionExtraArgs['remainingAccounts'];
|
|
1364
|
+
configActions: ChangeConfigInstructionDataArgs["configActions"];
|
|
1365
|
+
secp256r1VerifyArgs: ChangeConfigInstructionDataArgs["secp256r1VerifyArgs"];
|
|
1366
|
+
compressedProofArgs: ChangeConfigInstructionDataArgs["compressedProofArgs"];
|
|
1367
|
+
remainingAccounts: ChangeConfigInstructionExtraArgs["remainingAccounts"];
|
|
1386
1368
|
};
|
|
1387
1369
|
declare function getChangeConfigInstruction<TAccountSettings extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: ChangeConfigInput<TAccountSettings, TAccountPayer, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
|
|
1388
1370
|
programAddress?: TProgramAddress;
|
|
@@ -1402,7 +1384,7 @@ declare function parseChangeConfigInstruction<TProgram extends string, TAccountM
|
|
|
1402
1384
|
|
|
1403
1385
|
declare const CHANGE_CONFIG_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
1404
1386
|
declare function getChangeConfigCompressedDiscriminatorBytes(): ReadonlyUint8Array;
|
|
1405
|
-
type ChangeConfigCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> =
|
|
1387
|
+
type ChangeConfigCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
1406
1388
|
TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
|
|
1407
1389
|
TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
|
|
1408
1390
|
TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
|
|
@@ -1434,11 +1416,11 @@ type ChangeConfigCompressedInput<TAccountPayer extends string = string, TAccount
|
|
|
1434
1416
|
payer: TransactionSigner<TAccountPayer>;
|
|
1435
1417
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
1436
1418
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
1437
|
-
configActions: ChangeConfigCompressedInstructionDataArgs[
|
|
1438
|
-
secp256r1VerifyArgs: ChangeConfigCompressedInstructionDataArgs[
|
|
1439
|
-
settingsMutArgs: ChangeConfigCompressedInstructionDataArgs[
|
|
1440
|
-
compressedProofArgs: ChangeConfigCompressedInstructionDataArgs[
|
|
1441
|
-
remainingAccounts: ChangeConfigCompressedInstructionExtraArgs[
|
|
1419
|
+
configActions: ChangeConfigCompressedInstructionDataArgs["configActions"];
|
|
1420
|
+
secp256r1VerifyArgs: ChangeConfigCompressedInstructionDataArgs["secp256r1VerifyArgs"];
|
|
1421
|
+
settingsMutArgs: ChangeConfigCompressedInstructionDataArgs["settingsMutArgs"];
|
|
1422
|
+
compressedProofArgs: ChangeConfigCompressedInstructionDataArgs["compressedProofArgs"];
|
|
1423
|
+
remainingAccounts: ChangeConfigCompressedInstructionExtraArgs["remainingAccounts"];
|
|
1442
1424
|
};
|
|
1443
1425
|
declare function getChangeConfigCompressedInstruction<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: ChangeConfigCompressedInput<TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
|
|
1444
1426
|
programAddress?: TProgramAddress;
|
|
@@ -1456,7 +1438,7 @@ declare function parseChangeConfigCompressedInstruction<TProgram extends string,
|
|
|
1456
1438
|
|
|
1457
1439
|
declare const CREATE_COMPRESSED_WALLET_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
1458
1440
|
declare function getCreateCompressedWalletDiscriminatorBytes(): ReadonlyUint8Array;
|
|
1459
|
-
type CreateCompressedWalletInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountInitialMember extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> =
|
|
1441
|
+
type CreateCompressedWalletInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountInitialMember extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountGlobalCounter extends string | AccountMeta<string> = string, TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
1460
1442
|
TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
|
|
1461
1443
|
TAccountInitialMember extends string ? ReadonlySignerAccount<TAccountInitialMember> & AccountSignerMeta<TAccountInitialMember> : TAccountInitialMember,
|
|
1462
1444
|
TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
|
|
@@ -1492,11 +1474,11 @@ type CreateCompressedWalletAsyncInput<TAccountPayer extends string = string, TAc
|
|
|
1492
1474
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
1493
1475
|
globalCounter?: Address<TAccountGlobalCounter>;
|
|
1494
1476
|
whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
|
|
1495
|
-
compressedProofArgs: CreateCompressedWalletInstructionDataArgs[
|
|
1496
|
-
settingsCreation: CreateCompressedWalletInstructionDataArgs[
|
|
1497
|
-
userArgs: CreateCompressedWalletInstructionDataArgs[
|
|
1498
|
-
settingsIndex: CreateCompressedWalletInstructionDataArgs[
|
|
1499
|
-
remainingAccounts: CreateCompressedWalletInstructionExtraArgs[
|
|
1477
|
+
compressedProofArgs: CreateCompressedWalletInstructionDataArgs["compressedProofArgs"];
|
|
1478
|
+
settingsCreation: CreateCompressedWalletInstructionDataArgs["settingsCreation"];
|
|
1479
|
+
userArgs: CreateCompressedWalletInstructionDataArgs["userArgs"];
|
|
1480
|
+
settingsIndex: CreateCompressedWalletInstructionDataArgs["settingsIndex"];
|
|
1481
|
+
remainingAccounts: CreateCompressedWalletInstructionExtraArgs["remainingAccounts"];
|
|
1500
1482
|
};
|
|
1501
1483
|
declare function getCreateCompressedWalletInstructionAsync<TAccountPayer extends string, TAccountInitialMember extends string, TAccountSystemProgram extends string, TAccountGlobalCounter extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateCompressedWalletAsyncInput<TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountGlobalCounter, TAccountWhitelistedAddressTrees>, config?: {
|
|
1502
1484
|
programAddress?: TProgramAddress;
|
|
@@ -1507,11 +1489,11 @@ type CreateCompressedWalletInput<TAccountPayer extends string = string, TAccount
|
|
|
1507
1489
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
1508
1490
|
globalCounter: Address<TAccountGlobalCounter>;
|
|
1509
1491
|
whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
|
|
1510
|
-
compressedProofArgs: CreateCompressedWalletInstructionDataArgs[
|
|
1511
|
-
settingsCreation: CreateCompressedWalletInstructionDataArgs[
|
|
1512
|
-
userArgs: CreateCompressedWalletInstructionDataArgs[
|
|
1513
|
-
settingsIndex: CreateCompressedWalletInstructionDataArgs[
|
|
1514
|
-
remainingAccounts: CreateCompressedWalletInstructionExtraArgs[
|
|
1492
|
+
compressedProofArgs: CreateCompressedWalletInstructionDataArgs["compressedProofArgs"];
|
|
1493
|
+
settingsCreation: CreateCompressedWalletInstructionDataArgs["settingsCreation"];
|
|
1494
|
+
userArgs: CreateCompressedWalletInstructionDataArgs["userArgs"];
|
|
1495
|
+
settingsIndex: CreateCompressedWalletInstructionDataArgs["settingsIndex"];
|
|
1496
|
+
remainingAccounts: CreateCompressedWalletInstructionExtraArgs["remainingAccounts"];
|
|
1515
1497
|
};
|
|
1516
1498
|
declare function getCreateCompressedWalletInstruction<TAccountPayer extends string, TAccountInitialMember extends string, TAccountSystemProgram extends string, TAccountGlobalCounter extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateCompressedWalletInput<TAccountPayer, TAccountInitialMember, TAccountSystemProgram, TAccountGlobalCounter, TAccountWhitelistedAddressTrees>, config?: {
|
|
1517
1499
|
programAddress?: TProgramAddress;
|
|
@@ -1531,7 +1513,7 @@ declare function parseCreateCompressedWalletInstruction<TProgram extends string,
|
|
|
1531
1513
|
|
|
1532
1514
|
declare const CREATE_DOMAIN_CONFIG_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
1533
1515
|
declare function getCreateDomainConfigDiscriminatorBytes(): ReadonlyUint8Array;
|
|
1534
|
-
type CreateDomainConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountAuthority extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> =
|
|
1516
|
+
type CreateDomainConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountAuthority extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
1535
1517
|
TAccountDomainConfig extends string ? WritableAccount<TAccountDomainConfig> : TAccountDomainConfig,
|
|
1536
1518
|
TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
|
|
1537
1519
|
TAccountAuthority extends string ? ReadonlySignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
|
|
@@ -1567,11 +1549,11 @@ type CreateDomainConfigAsyncInput<TAccountDomainConfig extends string = string,
|
|
|
1567
1549
|
authority: TransactionSigner<TAccountAuthority>;
|
|
1568
1550
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
1569
1551
|
whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
|
|
1570
|
-
rpId: CreateDomainConfigInstructionDataArgs[
|
|
1571
|
-
origins: CreateDomainConfigInstructionDataArgs[
|
|
1572
|
-
authorityCreationArgs: CreateDomainConfigInstructionDataArgs[
|
|
1573
|
-
compressedProofArgs: CreateDomainConfigInstructionDataArgs[
|
|
1574
|
-
remainingAccounts: CreateDomainConfigInstructionExtraArgs[
|
|
1552
|
+
rpId: CreateDomainConfigInstructionDataArgs["rpId"];
|
|
1553
|
+
origins: CreateDomainConfigInstructionDataArgs["origins"];
|
|
1554
|
+
authorityCreationArgs: CreateDomainConfigInstructionDataArgs["authorityCreationArgs"];
|
|
1555
|
+
compressedProofArgs: CreateDomainConfigInstructionDataArgs["compressedProofArgs"];
|
|
1556
|
+
remainingAccounts: CreateDomainConfigInstructionExtraArgs["remainingAccounts"];
|
|
1575
1557
|
};
|
|
1576
1558
|
declare function getCreateDomainConfigInstructionAsync<TAccountDomainConfig extends string, TAccountPayer extends string, TAccountAuthority extends string, TAccountSystemProgram extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateDomainConfigAsyncInput<TAccountDomainConfig, TAccountPayer, TAccountAuthority, TAccountSystemProgram, TAccountWhitelistedAddressTrees>, config?: {
|
|
1577
1559
|
programAddress?: TProgramAddress;
|
|
@@ -1582,11 +1564,11 @@ type CreateDomainConfigInput<TAccountDomainConfig extends string = string, TAcco
|
|
|
1582
1564
|
authority: TransactionSigner<TAccountAuthority>;
|
|
1583
1565
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
1584
1566
|
whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
|
|
1585
|
-
rpId: CreateDomainConfigInstructionDataArgs[
|
|
1586
|
-
origins: CreateDomainConfigInstructionDataArgs[
|
|
1587
|
-
authorityCreationArgs: CreateDomainConfigInstructionDataArgs[
|
|
1588
|
-
compressedProofArgs: CreateDomainConfigInstructionDataArgs[
|
|
1589
|
-
remainingAccounts: CreateDomainConfigInstructionExtraArgs[
|
|
1567
|
+
rpId: CreateDomainConfigInstructionDataArgs["rpId"];
|
|
1568
|
+
origins: CreateDomainConfigInstructionDataArgs["origins"];
|
|
1569
|
+
authorityCreationArgs: CreateDomainConfigInstructionDataArgs["authorityCreationArgs"];
|
|
1570
|
+
compressedProofArgs: CreateDomainConfigInstructionDataArgs["compressedProofArgs"];
|
|
1571
|
+
remainingAccounts: CreateDomainConfigInstructionExtraArgs["remainingAccounts"];
|
|
1590
1572
|
};
|
|
1591
1573
|
declare function getCreateDomainConfigInstruction<TAccountDomainConfig extends string, TAccountPayer extends string, TAccountAuthority extends string, TAccountSystemProgram extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateDomainConfigInput<TAccountDomainConfig, TAccountPayer, TAccountAuthority, TAccountSystemProgram, TAccountWhitelistedAddressTrees>, config?: {
|
|
1592
1574
|
programAddress?: TProgramAddress;
|
|
@@ -1646,14 +1628,14 @@ type CreateDomainUserAccountAsyncInput<TAccountPayer extends string = string, TA
|
|
|
1646
1628
|
domainConfig: Address<TAccountDomainConfig>;
|
|
1647
1629
|
authority: TransactionSigner<TAccountAuthority>;
|
|
1648
1630
|
whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
|
|
1649
|
-
compressedProofArgs: CreateDomainUserAccountInstructionDataArgs[
|
|
1650
|
-
member: CreateDomainUserAccountInstructionDataArgs[
|
|
1651
|
-
role: CreateDomainUserAccountInstructionDataArgs[
|
|
1652
|
-
credentialId: CreateDomainUserAccountInstructionDataArgs[
|
|
1653
|
-
transports: CreateDomainUserAccountInstructionDataArgs[
|
|
1654
|
-
userAccountCreationArgs: CreateDomainUserAccountInstructionDataArgs[
|
|
1655
|
-
linkWalletArgs: CreateDomainUserAccountInstructionDataArgs[
|
|
1656
|
-
remainingAccounts: CreateDomainUserAccountInstructionExtraArgs[
|
|
1631
|
+
compressedProofArgs: CreateDomainUserAccountInstructionDataArgs["compressedProofArgs"];
|
|
1632
|
+
member: CreateDomainUserAccountInstructionDataArgs["member"];
|
|
1633
|
+
role: CreateDomainUserAccountInstructionDataArgs["role"];
|
|
1634
|
+
credentialId: CreateDomainUserAccountInstructionDataArgs["credentialId"];
|
|
1635
|
+
transports: CreateDomainUserAccountInstructionDataArgs["transports"];
|
|
1636
|
+
userAccountCreationArgs: CreateDomainUserAccountInstructionDataArgs["userAccountCreationArgs"];
|
|
1637
|
+
linkWalletArgs: CreateDomainUserAccountInstructionDataArgs["linkWalletArgs"];
|
|
1638
|
+
remainingAccounts: CreateDomainUserAccountInstructionExtraArgs["remainingAccounts"];
|
|
1657
1639
|
};
|
|
1658
1640
|
declare function getCreateDomainUserAccountInstructionAsync<TAccountPayer extends string, TAccountDomainConfig extends string, TAccountAuthority extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateDomainUserAccountAsyncInput<TAccountPayer, TAccountDomainConfig, TAccountAuthority, TAccountWhitelistedAddressTrees>, config?: {
|
|
1659
1641
|
programAddress?: TProgramAddress;
|
|
@@ -1663,14 +1645,14 @@ type CreateDomainUserAccountInput<TAccountPayer extends string = string, TAccoun
|
|
|
1663
1645
|
domainConfig: Address<TAccountDomainConfig>;
|
|
1664
1646
|
authority: TransactionSigner<TAccountAuthority>;
|
|
1665
1647
|
whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
|
|
1666
|
-
compressedProofArgs: CreateDomainUserAccountInstructionDataArgs[
|
|
1667
|
-
member: CreateDomainUserAccountInstructionDataArgs[
|
|
1668
|
-
role: CreateDomainUserAccountInstructionDataArgs[
|
|
1669
|
-
credentialId: CreateDomainUserAccountInstructionDataArgs[
|
|
1670
|
-
transports: CreateDomainUserAccountInstructionDataArgs[
|
|
1671
|
-
userAccountCreationArgs: CreateDomainUserAccountInstructionDataArgs[
|
|
1672
|
-
linkWalletArgs: CreateDomainUserAccountInstructionDataArgs[
|
|
1673
|
-
remainingAccounts: CreateDomainUserAccountInstructionExtraArgs[
|
|
1648
|
+
compressedProofArgs: CreateDomainUserAccountInstructionDataArgs["compressedProofArgs"];
|
|
1649
|
+
member: CreateDomainUserAccountInstructionDataArgs["member"];
|
|
1650
|
+
role: CreateDomainUserAccountInstructionDataArgs["role"];
|
|
1651
|
+
credentialId: CreateDomainUserAccountInstructionDataArgs["credentialId"];
|
|
1652
|
+
transports: CreateDomainUserAccountInstructionDataArgs["transports"];
|
|
1653
|
+
userAccountCreationArgs: CreateDomainUserAccountInstructionDataArgs["userAccountCreationArgs"];
|
|
1654
|
+
linkWalletArgs: CreateDomainUserAccountInstructionDataArgs["linkWalletArgs"];
|
|
1655
|
+
remainingAccounts: CreateDomainUserAccountInstructionExtraArgs["remainingAccounts"];
|
|
1674
1656
|
};
|
|
1675
1657
|
declare function getCreateDomainUserAccountInstruction<TAccountPayer extends string, TAccountDomainConfig extends string, TAccountAuthority extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateDomainUserAccountInput<TAccountPayer, TAccountDomainConfig, TAccountAuthority, TAccountWhitelistedAddressTrees>, config?: {
|
|
1676
1658
|
programAddress?: TProgramAddress;
|
|
@@ -1689,7 +1671,7 @@ declare function parseCreateDomainUserAccountInstruction<TProgram extends string
|
|
|
1689
1671
|
|
|
1690
1672
|
declare const CREATE_GLOBAL_COUNTER_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
1691
1673
|
declare function getCreateGlobalCounterDiscriminatorBytes(): ReadonlyUint8Array;
|
|
1692
|
-
type CreateGlobalCounterInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountGlobalCounter extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> =
|
|
1674
|
+
type CreateGlobalCounterInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountGlobalCounter extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
1693
1675
|
TAccountGlobalCounter extends string ? WritableAccount<TAccountGlobalCounter> : TAccountGlobalCounter,
|
|
1694
1676
|
TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
|
|
1695
1677
|
TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
|
|
@@ -1712,7 +1694,7 @@ type CreateGlobalCounterAsyncInput<TAccountGlobalCounter extends string = string
|
|
|
1712
1694
|
globalCounter?: Address<TAccountGlobalCounter>;
|
|
1713
1695
|
payer: TransactionSigner<TAccountPayer>;
|
|
1714
1696
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
1715
|
-
remainingAccounts: CreateGlobalCounterInstructionExtraArgs[
|
|
1697
|
+
remainingAccounts: CreateGlobalCounterInstructionExtraArgs["remainingAccounts"];
|
|
1716
1698
|
};
|
|
1717
1699
|
declare function getCreateGlobalCounterInstructionAsync<TAccountGlobalCounter extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateGlobalCounterAsyncInput<TAccountGlobalCounter, TAccountPayer, TAccountSystemProgram>, config?: {
|
|
1718
1700
|
programAddress?: TProgramAddress;
|
|
@@ -1721,7 +1703,7 @@ type CreateGlobalCounterInput<TAccountGlobalCounter extends string = string, TAc
|
|
|
1721
1703
|
globalCounter: Address<TAccountGlobalCounter>;
|
|
1722
1704
|
payer: TransactionSigner<TAccountPayer>;
|
|
1723
1705
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
1724
|
-
remainingAccounts: CreateGlobalCounterInstructionExtraArgs[
|
|
1706
|
+
remainingAccounts: CreateGlobalCounterInstructionExtraArgs["remainingAccounts"];
|
|
1725
1707
|
};
|
|
1726
1708
|
declare function getCreateGlobalCounterInstruction<TAccountGlobalCounter extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateGlobalCounterInput<TAccountGlobalCounter, TAccountPayer, TAccountSystemProgram>, config?: {
|
|
1727
1709
|
programAddress?: TProgramAddress;
|
|
@@ -1739,7 +1721,7 @@ declare function parseCreateGlobalCounterInstruction<TProgram extends string, TA
|
|
|
1739
1721
|
|
|
1740
1722
|
declare const CREATE_USER_ACCOUNTS_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
1741
1723
|
declare function getCreateUserAccountsDiscriminatorBytes(): ReadonlyUint8Array;
|
|
1742
|
-
type CreateUserAccountsInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> =
|
|
1724
|
+
type CreateUserAccountsInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
1743
1725
|
TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
|
|
1744
1726
|
TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
|
|
1745
1727
|
TAccountWhitelistedAddressTrees extends string ? ReadonlyAccount<TAccountWhitelistedAddressTrees> : TAccountWhitelistedAddressTrees,
|
|
@@ -1767,9 +1749,9 @@ type CreateUserAccountsAsyncInput<TAccountPayer extends string = string, TAccoun
|
|
|
1767
1749
|
payer: TransactionSigner<TAccountPayer>;
|
|
1768
1750
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
1769
1751
|
whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
|
|
1770
|
-
compressedProofArgs: CreateUserAccountsInstructionDataArgs[
|
|
1771
|
-
createUserArgs: CreateUserAccountsInstructionDataArgs[
|
|
1772
|
-
remainingAccounts: CreateUserAccountsInstructionExtraArgs[
|
|
1752
|
+
compressedProofArgs: CreateUserAccountsInstructionDataArgs["compressedProofArgs"];
|
|
1753
|
+
createUserArgs: CreateUserAccountsInstructionDataArgs["createUserArgs"];
|
|
1754
|
+
remainingAccounts: CreateUserAccountsInstructionExtraArgs["remainingAccounts"];
|
|
1773
1755
|
};
|
|
1774
1756
|
declare function getCreateUserAccountsInstructionAsync<TAccountPayer extends string, TAccountSystemProgram extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateUserAccountsAsyncInput<TAccountPayer, TAccountSystemProgram, TAccountWhitelistedAddressTrees>, config?: {
|
|
1775
1757
|
programAddress?: TProgramAddress;
|
|
@@ -1778,9 +1760,9 @@ type CreateUserAccountsInput<TAccountPayer extends string = string, TAccountSyst
|
|
|
1778
1760
|
payer: TransactionSigner<TAccountPayer>;
|
|
1779
1761
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
1780
1762
|
whitelistedAddressTrees: Address<TAccountWhitelistedAddressTrees>;
|
|
1781
|
-
compressedProofArgs: CreateUserAccountsInstructionDataArgs[
|
|
1782
|
-
createUserArgs: CreateUserAccountsInstructionDataArgs[
|
|
1783
|
-
remainingAccounts: CreateUserAccountsInstructionExtraArgs[
|
|
1763
|
+
compressedProofArgs: CreateUserAccountsInstructionDataArgs["compressedProofArgs"];
|
|
1764
|
+
createUserArgs: CreateUserAccountsInstructionDataArgs["createUserArgs"];
|
|
1765
|
+
remainingAccounts: CreateUserAccountsInstructionExtraArgs["remainingAccounts"];
|
|
1784
1766
|
};
|
|
1785
1767
|
declare function getCreateUserAccountsInstruction<TAccountPayer extends string, TAccountSystemProgram extends string, TAccountWhitelistedAddressTrees extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: CreateUserAccountsInput<TAccountPayer, TAccountSystemProgram, TAccountWhitelistedAddressTrees>, config?: {
|
|
1786
1768
|
programAddress?: TProgramAddress;
|
|
@@ -1798,7 +1780,7 @@ declare function parseCreateUserAccountsInstruction<TProgram extends string, TAc
|
|
|
1798
1780
|
|
|
1799
1781
|
declare const DECOMPRESS_SETTINGS_ACCOUNT_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
1800
1782
|
declare function getDecompressSettingsAccountDiscriminatorBytes(): ReadonlyUint8Array;
|
|
1801
|
-
type DecompressSettingsAccountInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> =
|
|
1783
|
+
type DecompressSettingsAccountInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
1802
1784
|
TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
|
|
1803
1785
|
TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
|
|
1804
1786
|
TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
|
|
@@ -1832,10 +1814,10 @@ type DecompressSettingsAccountInput<TAccountSettings extends string = string, TA
|
|
|
1832
1814
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
1833
1815
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
1834
1816
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
1835
|
-
settingsMutArgs: DecompressSettingsAccountInstructionDataArgs[
|
|
1836
|
-
compressedProofArgs: DecompressSettingsAccountInstructionDataArgs[
|
|
1837
|
-
secp256r1VerifyArgs: DecompressSettingsAccountInstructionDataArgs[
|
|
1838
|
-
remainingAccounts: DecompressSettingsAccountInstructionExtraArgs[
|
|
1817
|
+
settingsMutArgs: DecompressSettingsAccountInstructionDataArgs["settingsMutArgs"];
|
|
1818
|
+
compressedProofArgs: DecompressSettingsAccountInstructionDataArgs["compressedProofArgs"];
|
|
1819
|
+
secp256r1VerifyArgs: DecompressSettingsAccountInstructionDataArgs["secp256r1VerifyArgs"];
|
|
1820
|
+
remainingAccounts: DecompressSettingsAccountInstructionExtraArgs["remainingAccounts"];
|
|
1839
1821
|
};
|
|
1840
1822
|
declare function getDecompressSettingsAccountInstruction<TAccountSettings extends string, TAccountPayer extends string, TAccountSystemProgram extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: DecompressSettingsAccountInput<TAccountSettings, TAccountPayer, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
|
|
1841
1823
|
programAddress?: TProgramAddress;
|
|
@@ -1879,8 +1861,8 @@ type DisableDomainConfigInstructionExtraArgs = {
|
|
|
1879
1861
|
type DisableDomainConfigInput<TAccountDomainConfig extends string = string, TAccountAdmin extends string = string> = {
|
|
1880
1862
|
domainConfig: Address<TAccountDomainConfig>;
|
|
1881
1863
|
admin: TransactionSigner<TAccountAdmin>;
|
|
1882
|
-
disable: DisableDomainConfigInstructionDataArgs[
|
|
1883
|
-
remainingAccounts: DisableDomainConfigInstructionExtraArgs[
|
|
1864
|
+
disable: DisableDomainConfigInstructionDataArgs["disable"];
|
|
1865
|
+
remainingAccounts: DisableDomainConfigInstructionExtraArgs["remainingAccounts"];
|
|
1884
1866
|
};
|
|
1885
1867
|
declare function getDisableDomainConfigInstruction<TAccountDomainConfig extends string, TAccountAdmin extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: DisableDomainConfigInput<TAccountDomainConfig, TAccountAdmin>, config?: {
|
|
1886
1868
|
programAddress?: TProgramAddress;
|
|
@@ -1897,7 +1879,7 @@ declare function parseDisableDomainConfigInstruction<TProgram extends string, TA
|
|
|
1897
1879
|
|
|
1898
1880
|
declare const EDIT_DOMAIN_CONFIG_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
1899
1881
|
declare function getEditDomainConfigDiscriminatorBytes(): ReadonlyUint8Array;
|
|
1900
|
-
type EditDomainConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountAuthority extends string | AccountMeta<string> = string, TAccountNewAuthority extends string | AccountMeta<string> = string, TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> =
|
|
1882
|
+
type EditDomainConfigInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountAuthority extends string | AccountMeta<string> = string, TAccountNewAuthority extends string | AccountMeta<string> = string, TAccountWhitelistedAddressTrees extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
1901
1883
|
TAccountDomainConfig extends string ? WritableAccount<TAccountDomainConfig> : TAccountDomainConfig,
|
|
1902
1884
|
TAccountAuthority extends string ? WritableSignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
|
|
1903
1885
|
TAccountNewAuthority extends string ? ReadonlySignerAccount<TAccountNewAuthority> & AccountSignerMeta<TAccountNewAuthority> : TAccountNewAuthority,
|
|
@@ -1929,9 +1911,9 @@ type EditDomainConfigAsyncInput<TAccountDomainConfig extends string = string, TA
|
|
|
1929
1911
|
newAuthority?: TransactionSigner<TAccountNewAuthority>;
|
|
1930
1912
|
whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
|
|
1931
1913
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
1932
|
-
newOrigins: EditDomainConfigInstructionDataArgs[
|
|
1933
|
-
newAuthorityArgs: EditDomainConfigInstructionDataArgs[
|
|
1934
|
-
remainingAccounts: EditDomainConfigInstructionExtraArgs[
|
|
1914
|
+
newOrigins: EditDomainConfigInstructionDataArgs["newOrigins"];
|
|
1915
|
+
newAuthorityArgs: EditDomainConfigInstructionDataArgs["newAuthorityArgs"];
|
|
1916
|
+
remainingAccounts: EditDomainConfigInstructionExtraArgs["remainingAccounts"];
|
|
1935
1917
|
};
|
|
1936
1918
|
declare function getEditDomainConfigInstructionAsync<TAccountDomainConfig extends string, TAccountAuthority extends string, TAccountNewAuthority extends string, TAccountWhitelistedAddressTrees extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: EditDomainConfigAsyncInput<TAccountDomainConfig, TAccountAuthority, TAccountNewAuthority, TAccountWhitelistedAddressTrees, TAccountSystemProgram>, config?: {
|
|
1937
1919
|
programAddress?: TProgramAddress;
|
|
@@ -1942,9 +1924,9 @@ type EditDomainConfigInput<TAccountDomainConfig extends string = string, TAccoun
|
|
|
1942
1924
|
newAuthority?: TransactionSigner<TAccountNewAuthority>;
|
|
1943
1925
|
whitelistedAddressTrees?: Address<TAccountWhitelistedAddressTrees>;
|
|
1944
1926
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
1945
|
-
newOrigins: EditDomainConfigInstructionDataArgs[
|
|
1946
|
-
newAuthorityArgs: EditDomainConfigInstructionDataArgs[
|
|
1947
|
-
remainingAccounts: EditDomainConfigInstructionExtraArgs[
|
|
1927
|
+
newOrigins: EditDomainConfigInstructionDataArgs["newOrigins"];
|
|
1928
|
+
newAuthorityArgs: EditDomainConfigInstructionDataArgs["newAuthorityArgs"];
|
|
1929
|
+
remainingAccounts: EditDomainConfigInstructionExtraArgs["remainingAccounts"];
|
|
1948
1930
|
};
|
|
1949
1931
|
declare function getEditDomainConfigInstruction<TAccountDomainConfig extends string, TAccountAuthority extends string, TAccountNewAuthority extends string, TAccountWhitelistedAddressTrees extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: EditDomainConfigInput<TAccountDomainConfig, TAccountAuthority, TAccountNewAuthority, TAccountWhitelistedAddressTrees, TAccountSystemProgram>, config?: {
|
|
1950
1932
|
programAddress?: TProgramAddress;
|
|
@@ -1990,10 +1972,10 @@ type EditTransactionManagerUrlInstructionExtraArgs = {
|
|
|
1990
1972
|
};
|
|
1991
1973
|
type EditTransactionManagerUrlInput<TAccountAuthority extends string = string> = {
|
|
1992
1974
|
authority: TransactionSigner<TAccountAuthority>;
|
|
1993
|
-
userMutArgs: EditTransactionManagerUrlInstructionDataArgs[
|
|
1994
|
-
transactionManagerUrl: EditTransactionManagerUrlInstructionDataArgs[
|
|
1995
|
-
compressedProofArgs: EditTransactionManagerUrlInstructionDataArgs[
|
|
1996
|
-
remainingAccounts: EditTransactionManagerUrlInstructionExtraArgs[
|
|
1975
|
+
userMutArgs: EditTransactionManagerUrlInstructionDataArgs["userMutArgs"];
|
|
1976
|
+
transactionManagerUrl: EditTransactionManagerUrlInstructionDataArgs["transactionManagerUrl"];
|
|
1977
|
+
compressedProofArgs: EditTransactionManagerUrlInstructionDataArgs["compressedProofArgs"];
|
|
1978
|
+
remainingAccounts: EditTransactionManagerUrlInstructionExtraArgs["remainingAccounts"];
|
|
1997
1979
|
};
|
|
1998
1980
|
declare function getEditTransactionManagerUrlInstruction<TAccountAuthority extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: EditTransactionManagerUrlInput<TAccountAuthority>, config?: {
|
|
1999
1981
|
programAddress?: TProgramAddress;
|
|
@@ -2009,7 +1991,7 @@ declare function parseEditTransactionManagerUrlInstruction<TProgram extends stri
|
|
|
2009
1991
|
|
|
2010
1992
|
declare const EDIT_USER_DELEGATE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
2011
1993
|
declare function getEditUserDelegateDiscriminatorBytes(): ReadonlyUint8Array;
|
|
2012
|
-
type EditUserDelegateInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountFeePayer extends string | AccountMeta<string> = string, TAccountSigner extends string | AccountMeta<string> = string, TAccountOldSettings extends string | AccountMeta<string> = string, TAccountNewSettings extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> =
|
|
1994
|
+
type EditUserDelegateInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountFeePayer extends string | AccountMeta<string> = string, TAccountSigner extends string | AccountMeta<string> = string, TAccountOldSettings extends string | AccountMeta<string> = string, TAccountNewSettings extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountDomainConfig extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
2013
1995
|
TAccountFeePayer extends string ? WritableSignerAccount<TAccountFeePayer> & AccountSignerMeta<TAccountFeePayer> : TAccountFeePayer,
|
|
2014
1996
|
TAccountSigner extends string ? ReadonlySignerAccount<TAccountSigner> & AccountSignerMeta<TAccountSigner> : TAccountSigner,
|
|
2015
1997
|
TAccountOldSettings extends string ? WritableAccount<TAccountOldSettings> : TAccountOldSettings,
|
|
@@ -2053,13 +2035,13 @@ type EditUserDelegateInput<TAccountFeePayer extends string = string, TAccountSig
|
|
|
2053
2035
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
2054
2036
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
2055
2037
|
domainConfig?: Address<TAccountDomainConfig>;
|
|
2056
|
-
userMutArgs: EditUserDelegateInstructionDataArgs[
|
|
2057
|
-
secp256r1VerifyArgs: EditUserDelegateInstructionDataArgs[
|
|
2058
|
-
delegateTo: EditUserDelegateInstructionDataArgs[
|
|
2059
|
-
oldSettingsMutArgs: EditUserDelegateInstructionDataArgs[
|
|
2060
|
-
newSettingsMutArgs: EditUserDelegateInstructionDataArgs[
|
|
2061
|
-
compressedProofArgs: EditUserDelegateInstructionDataArgs[
|
|
2062
|
-
remainingAccounts: EditUserDelegateInstructionExtraArgs[
|
|
2038
|
+
userMutArgs: EditUserDelegateInstructionDataArgs["userMutArgs"];
|
|
2039
|
+
secp256r1VerifyArgs: EditUserDelegateInstructionDataArgs["secp256r1VerifyArgs"];
|
|
2040
|
+
delegateTo: EditUserDelegateInstructionDataArgs["delegateTo"];
|
|
2041
|
+
oldSettingsMutArgs: EditUserDelegateInstructionDataArgs["oldSettingsMutArgs"];
|
|
2042
|
+
newSettingsMutArgs: EditUserDelegateInstructionDataArgs["newSettingsMutArgs"];
|
|
2043
|
+
compressedProofArgs: EditUserDelegateInstructionDataArgs["compressedProofArgs"];
|
|
2044
|
+
remainingAccounts: EditUserDelegateInstructionExtraArgs["remainingAccounts"];
|
|
2063
2045
|
};
|
|
2064
2046
|
declare function getEditUserDelegateInstruction<TAccountFeePayer extends string, TAccountSigner extends string, TAccountOldSettings extends string, TAccountNewSettings extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountDomainConfig extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: EditUserDelegateInput<TAccountFeePayer, TAccountSigner, TAccountOldSettings, TAccountNewSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountDomainConfig>, config?: {
|
|
2065
2047
|
programAddress?: TProgramAddress;
|
|
@@ -2081,7 +2063,7 @@ declare function parseEditUserDelegateInstruction<TProgram extends string, TAcco
|
|
|
2081
2063
|
|
|
2082
2064
|
declare const MIGRATE_COMPRESSED_SETTINGS_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
2083
2065
|
declare function getMigrateCompressedSettingsDiscriminatorBytes(): ReadonlyUint8Array;
|
|
2084
|
-
type MigrateCompressedSettingsInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountAuthority extends string | AccountMeta<string> =
|
|
2066
|
+
type MigrateCompressedSettingsInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountAuthority extends string | AccountMeta<string> = "AMn21jT5RMZrv5hSvtkrWCMJFp3cUyeAx4AxKvF59xJZ", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
2085
2067
|
TAccountAuthority extends string ? WritableSignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
|
|
2086
2068
|
...TRemainingAccounts
|
|
2087
2069
|
]>;
|
|
@@ -2107,10 +2089,10 @@ type MigrateCompressedSettingsInstructionExtraArgs = {
|
|
|
2107
2089
|
};
|
|
2108
2090
|
type MigrateCompressedSettingsInput<TAccountAuthority extends string = string> = {
|
|
2109
2091
|
authority?: TransactionSigner<TAccountAuthority>;
|
|
2110
|
-
args: MigrateCompressedSettingsInstructionDataArgs[
|
|
2111
|
-
compressedProofArgs: MigrateCompressedSettingsInstructionDataArgs[
|
|
2112
|
-
settingsCreationArgs: MigrateCompressedSettingsInstructionDataArgs[
|
|
2113
|
-
remainingAccounts: MigrateCompressedSettingsInstructionExtraArgs[
|
|
2092
|
+
args: MigrateCompressedSettingsInstructionDataArgs["args"];
|
|
2093
|
+
compressedProofArgs: MigrateCompressedSettingsInstructionDataArgs["compressedProofArgs"];
|
|
2094
|
+
settingsCreationArgs: MigrateCompressedSettingsInstructionDataArgs["settingsCreationArgs"];
|
|
2095
|
+
remainingAccounts: MigrateCompressedSettingsInstructionExtraArgs["remainingAccounts"];
|
|
2114
2096
|
};
|
|
2115
2097
|
declare function getMigrateCompressedSettingsInstruction<TAccountAuthority extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: MigrateCompressedSettingsInput<TAccountAuthority>, config?: {
|
|
2116
2098
|
programAddress?: TProgramAddress;
|
|
@@ -2126,7 +2108,7 @@ declare function parseMigrateCompressedSettingsInstruction<TProgram extends stri
|
|
|
2126
2108
|
|
|
2127
2109
|
declare const MIGRATE_COMPRESSED_USERS_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
2128
2110
|
declare function getMigrateCompressedUsersDiscriminatorBytes(): ReadonlyUint8Array;
|
|
2129
|
-
type MigrateCompressedUsersInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountAuthority extends string | AccountMeta<string> =
|
|
2111
|
+
type MigrateCompressedUsersInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountAuthority extends string | AccountMeta<string> = "AMn21jT5RMZrv5hSvtkrWCMJFp3cUyeAx4AxKvF59xJZ", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
2130
2112
|
TAccountAuthority extends string ? WritableSignerAccount<TAccountAuthority> & AccountSignerMeta<TAccountAuthority> : TAccountAuthority,
|
|
2131
2113
|
...TRemainingAccounts
|
|
2132
2114
|
]>;
|
|
@@ -2152,10 +2134,10 @@ type MigrateCompressedUsersInstructionExtraArgs = {
|
|
|
2152
2134
|
};
|
|
2153
2135
|
type MigrateCompressedUsersInput<TAccountAuthority extends string = string> = {
|
|
2154
2136
|
authority?: TransactionSigner<TAccountAuthority>;
|
|
2155
|
-
args: MigrateCompressedUsersInstructionDataArgs[
|
|
2156
|
-
compressedProofArgs: MigrateCompressedUsersInstructionDataArgs[
|
|
2157
|
-
userCreationArgs: MigrateCompressedUsersInstructionDataArgs[
|
|
2158
|
-
remainingAccounts: MigrateCompressedUsersInstructionExtraArgs[
|
|
2137
|
+
args: MigrateCompressedUsersInstructionDataArgs["args"];
|
|
2138
|
+
compressedProofArgs: MigrateCompressedUsersInstructionDataArgs["compressedProofArgs"];
|
|
2139
|
+
userCreationArgs: MigrateCompressedUsersInstructionDataArgs["userCreationArgs"];
|
|
2140
|
+
remainingAccounts: MigrateCompressedUsersInstructionExtraArgs["remainingAccounts"];
|
|
2159
2141
|
};
|
|
2160
2142
|
declare function getMigrateCompressedUsersInstruction<TAccountAuthority extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: MigrateCompressedUsersInput<TAccountAuthority>, config?: {
|
|
2161
2143
|
programAddress?: TProgramAddress;
|
|
@@ -2171,7 +2153,7 @@ declare function parseMigrateCompressedUsersInstruction<TProgram extends string,
|
|
|
2171
2153
|
|
|
2172
2154
|
declare const NATIVE_TRANSFER_INTENT_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
2173
2155
|
declare function getNativeTransferIntentDiscriminatorBytes(): ReadonlyUint8Array;
|
|
2174
|
-
type NativeTransferIntentInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> =
|
|
2156
|
+
type NativeTransferIntentInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSource extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
2175
2157
|
TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
|
|
2176
2158
|
TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
|
|
2177
2159
|
TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
|
|
@@ -2205,9 +2187,9 @@ type NativeTransferIntentAsyncInput<TAccountSettings extends string = string, TA
|
|
|
2205
2187
|
source?: Address<TAccountSource>;
|
|
2206
2188
|
destination: Address<TAccountDestination>;
|
|
2207
2189
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
2208
|
-
amount: NativeTransferIntentInstructionDataArgs[
|
|
2209
|
-
secp256r1VerifyArgs: NativeTransferIntentInstructionDataArgs[
|
|
2210
|
-
remainingAccounts: NativeTransferIntentInstructionExtraArgs[
|
|
2190
|
+
amount: NativeTransferIntentInstructionDataArgs["amount"];
|
|
2191
|
+
secp256r1VerifyArgs: NativeTransferIntentInstructionDataArgs["secp256r1VerifyArgs"];
|
|
2192
|
+
remainingAccounts: NativeTransferIntentInstructionExtraArgs["remainingAccounts"];
|
|
2211
2193
|
};
|
|
2212
2194
|
declare function getNativeTransferIntentInstructionAsync<TAccountSettings extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountDestination extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: NativeTransferIntentAsyncInput<TAccountSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountDestination, TAccountSystemProgram>, config?: {
|
|
2213
2195
|
programAddress?: TProgramAddress;
|
|
@@ -2219,9 +2201,9 @@ type NativeTransferIntentInput<TAccountSettings extends string = string, TAccoun
|
|
|
2219
2201
|
source: Address<TAccountSource>;
|
|
2220
2202
|
destination: Address<TAccountDestination>;
|
|
2221
2203
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
2222
|
-
amount: NativeTransferIntentInstructionDataArgs[
|
|
2223
|
-
secp256r1VerifyArgs: NativeTransferIntentInstructionDataArgs[
|
|
2224
|
-
remainingAccounts: NativeTransferIntentInstructionExtraArgs[
|
|
2204
|
+
amount: NativeTransferIntentInstructionDataArgs["amount"];
|
|
2205
|
+
secp256r1VerifyArgs: NativeTransferIntentInstructionDataArgs["secp256r1VerifyArgs"];
|
|
2206
|
+
remainingAccounts: NativeTransferIntentInstructionExtraArgs["remainingAccounts"];
|
|
2225
2207
|
};
|
|
2226
2208
|
declare function getNativeTransferIntentInstruction<TAccountSettings extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountDestination extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: NativeTransferIntentInput<TAccountSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountDestination, TAccountSystemProgram>, config?: {
|
|
2227
2209
|
programAddress?: TProgramAddress;
|
|
@@ -2242,7 +2224,7 @@ declare function parseNativeTransferIntentInstruction<TProgram extends string, T
|
|
|
2242
2224
|
|
|
2243
2225
|
declare const NATIVE_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
2244
2226
|
declare function getNativeTransferIntentCompressedDiscriminatorBytes(): ReadonlyUint8Array;
|
|
2245
|
-
type NativeTransferIntentCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> =
|
|
2227
|
+
type NativeTransferIntentCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSource extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
2246
2228
|
TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
|
|
2247
2229
|
TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
|
|
2248
2230
|
TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
|
|
@@ -2280,11 +2262,11 @@ type NativeTransferIntentCompressedInput<TAccountPayer extends string = string,
|
|
|
2280
2262
|
source: Address<TAccountSource>;
|
|
2281
2263
|
destination: Address<TAccountDestination>;
|
|
2282
2264
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
2283
|
-
amount: NativeTransferIntentCompressedInstructionDataArgs[
|
|
2284
|
-
secp256r1VerifyArgs: NativeTransferIntentCompressedInstructionDataArgs[
|
|
2285
|
-
settingsMutArgs: NativeTransferIntentCompressedInstructionDataArgs[
|
|
2286
|
-
compressedProofArgs: NativeTransferIntentCompressedInstructionDataArgs[
|
|
2287
|
-
remainingAccounts: NativeTransferIntentCompressedInstructionExtraArgs[
|
|
2265
|
+
amount: NativeTransferIntentCompressedInstructionDataArgs["amount"];
|
|
2266
|
+
secp256r1VerifyArgs: NativeTransferIntentCompressedInstructionDataArgs["secp256r1VerifyArgs"];
|
|
2267
|
+
settingsMutArgs: NativeTransferIntentCompressedInstructionDataArgs["settingsMutArgs"];
|
|
2268
|
+
compressedProofArgs: NativeTransferIntentCompressedInstructionDataArgs["compressedProofArgs"];
|
|
2269
|
+
remainingAccounts: NativeTransferIntentCompressedInstructionExtraArgs["remainingAccounts"];
|
|
2288
2270
|
};
|
|
2289
2271
|
declare function getNativeTransferIntentCompressedInstruction<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountDestination extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: NativeTransferIntentCompressedInput<TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountDestination, TAccountSystemProgram>, config?: {
|
|
2290
2272
|
programAddress?: TProgramAddress;
|
|
@@ -2305,7 +2287,7 @@ declare function parseNativeTransferIntentCompressedInstruction<TProgram extends
|
|
|
2305
2287
|
|
|
2306
2288
|
declare const TOKEN_TRANSFER_INTENT_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
2307
2289
|
declare function getTokenTransferIntentDiscriminatorBytes(): ReadonlyUint8Array;
|
|
2308
|
-
type TokenTransferIntentInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> =
|
|
2290
|
+
type TokenTransferIntentInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSource extends string | AccountMeta<string> = string, TAccountSourceSplTokenAccount extends string | AccountMeta<string> = string, TAccountSourceCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountDestinationSplTokenAccount extends string | AccountMeta<string> = string, TAccountDestinationCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountTokenProgram extends string | AccountMeta<string> = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA", TAccountMint extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountCompressedTokenProgramAuthority extends string | AccountMeta<string> = "GXtd2izAiMJPwMEjfgTRH3d7k9mjn4Jq3JrWFv9gySYy", TAccountSplInterfacePda extends string | AccountMeta<string> = string, TAccountCompressibleConfig extends string | AccountMeta<string> = string, TAccountRentSponsor extends string | AccountMeta<string> = string, TAccountCompressedTokenProgram extends string | AccountMeta<string> = "cTokenmWW8bLPjZEBAUgYy3zKxQZW6VKi7bqNFEVv3m", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
2309
2291
|
TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
|
|
2310
2292
|
TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
|
|
2311
2293
|
TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
|
|
@@ -2369,12 +2351,12 @@ type TokenTransferIntentAsyncInput<TAccountSettings extends string = string, TAc
|
|
|
2369
2351
|
compressibleConfig: Address<TAccountCompressibleConfig>;
|
|
2370
2352
|
rentSponsor?: Address<TAccountRentSponsor>;
|
|
2371
2353
|
compressedTokenProgram?: Address<TAccountCompressedTokenProgram>;
|
|
2372
|
-
splInterfacePdaArgs: TokenTransferIntentInstructionDataArgs[
|
|
2373
|
-
amount: TokenTransferIntentInstructionDataArgs[
|
|
2374
|
-
sourceCompressedTokenAccounts: TokenTransferIntentInstructionDataArgs[
|
|
2375
|
-
compressedProofArgs: TokenTransferIntentInstructionDataArgs[
|
|
2376
|
-
secp256r1VerifyArgs: TokenTransferIntentInstructionDataArgs[
|
|
2377
|
-
remainingAccounts: TokenTransferIntentInstructionExtraArgs[
|
|
2354
|
+
splInterfacePdaArgs: TokenTransferIntentInstructionDataArgs["splInterfacePdaArgs"];
|
|
2355
|
+
amount: TokenTransferIntentInstructionDataArgs["amount"];
|
|
2356
|
+
sourceCompressedTokenAccounts: TokenTransferIntentInstructionDataArgs["sourceCompressedTokenAccounts"];
|
|
2357
|
+
compressedProofArgs: TokenTransferIntentInstructionDataArgs["compressedProofArgs"];
|
|
2358
|
+
secp256r1VerifyArgs: TokenTransferIntentInstructionDataArgs["secp256r1VerifyArgs"];
|
|
2359
|
+
remainingAccounts: TokenTransferIntentInstructionExtraArgs["remainingAccounts"];
|
|
2378
2360
|
};
|
|
2379
2361
|
declare function getTokenTransferIntentInstructionAsync<TAccountSettings extends string, TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string, TAccountSourceCtokenTokenAccount extends string, TAccountDestination extends string, TAccountDestinationSplTokenAccount extends string, TAccountDestinationCtokenTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string, TAccountSystemProgram extends string, TAccountCompressedTokenProgramAuthority extends string, TAccountSplInterfacePda extends string, TAccountCompressibleConfig extends string, TAccountRentSponsor extends string, TAccountCompressedTokenProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentAsyncInput<TAccountSettings, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>, config?: {
|
|
2380
2362
|
programAddress?: TProgramAddress;
|
|
@@ -2398,12 +2380,12 @@ type TokenTransferIntentInput<TAccountSettings extends string = string, TAccount
|
|
|
2398
2380
|
compressibleConfig: Address<TAccountCompressibleConfig>;
|
|
2399
2381
|
rentSponsor?: Address<TAccountRentSponsor>;
|
|
2400
2382
|
compressedTokenProgram?: Address<TAccountCompressedTokenProgram>;
|
|
2401
|
-
splInterfacePdaArgs: TokenTransferIntentInstructionDataArgs[
|
|
2402
|
-
amount: TokenTransferIntentInstructionDataArgs[
|
|
2403
|
-
sourceCompressedTokenAccounts: TokenTransferIntentInstructionDataArgs[
|
|
2404
|
-
compressedProofArgs: TokenTransferIntentInstructionDataArgs[
|
|
2405
|
-
secp256r1VerifyArgs: TokenTransferIntentInstructionDataArgs[
|
|
2406
|
-
remainingAccounts: TokenTransferIntentInstructionExtraArgs[
|
|
2383
|
+
splInterfacePdaArgs: TokenTransferIntentInstructionDataArgs["splInterfacePdaArgs"];
|
|
2384
|
+
amount: TokenTransferIntentInstructionDataArgs["amount"];
|
|
2385
|
+
sourceCompressedTokenAccounts: TokenTransferIntentInstructionDataArgs["sourceCompressedTokenAccounts"];
|
|
2386
|
+
compressedProofArgs: TokenTransferIntentInstructionDataArgs["compressedProofArgs"];
|
|
2387
|
+
secp256r1VerifyArgs: TokenTransferIntentInstructionDataArgs["secp256r1VerifyArgs"];
|
|
2388
|
+
remainingAccounts: TokenTransferIntentInstructionExtraArgs["remainingAccounts"];
|
|
2407
2389
|
};
|
|
2408
2390
|
declare function getTokenTransferIntentInstruction<TAccountSettings extends string, TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string, TAccountSourceCtokenTokenAccount extends string, TAccountDestination extends string, TAccountDestinationSplTokenAccount extends string, TAccountDestinationCtokenTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string, TAccountSystemProgram extends string, TAccountCompressedTokenProgramAuthority extends string, TAccountSplInterfacePda extends string, TAccountCompressibleConfig extends string, TAccountRentSponsor extends string, TAccountCompressedTokenProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentInput<TAccountSettings, TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>, config?: {
|
|
2409
2391
|
programAddress?: TProgramAddress;
|
|
@@ -2436,7 +2418,7 @@ declare function parseTokenTransferIntentInstruction<TProgram extends string, TA
|
|
|
2436
2418
|
|
|
2437
2419
|
declare const TOKEN_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
2438
2420
|
declare function getTokenTransferIntentCompressedDiscriminatorBytes(): ReadonlyUint8Array;
|
|
2439
|
-
type TokenTransferIntentCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> =
|
|
2421
|
+
type TokenTransferIntentCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSource extends string | AccountMeta<string> = string, TAccountSourceSplTokenAccount extends string | AccountMeta<string> = string, TAccountSourceCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountDestination extends string | AccountMeta<string> = string, TAccountDestinationSplTokenAccount extends string | AccountMeta<string> = string, TAccountDestinationCtokenTokenAccount extends string | AccountMeta<string> = string, TAccountTokenProgram extends string | AccountMeta<string> = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA", TAccountMint extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountCompressedTokenProgramAuthority extends string | AccountMeta<string> = "GXtd2izAiMJPwMEjfgTRH3d7k9mjn4Jq3JrWFv9gySYy", TAccountSplInterfacePda extends string | AccountMeta<string> = string, TAccountCompressibleConfig extends string | AccountMeta<string> = string, TAccountRentSponsor extends string | AccountMeta<string> = string, TAccountCompressedTokenProgram extends string | AccountMeta<string> = "cTokenmWW8bLPjZEBAUgYy3zKxQZW6VKi7bqNFEVv3m", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
2440
2422
|
TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
|
|
2441
2423
|
TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
|
|
2442
2424
|
TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
|
|
@@ -2500,13 +2482,13 @@ type TokenTransferIntentCompressedAsyncInput<TAccountPayer extends string = stri
|
|
|
2500
2482
|
compressibleConfig: Address<TAccountCompressibleConfig>;
|
|
2501
2483
|
rentSponsor?: Address<TAccountRentSponsor>;
|
|
2502
2484
|
compressedTokenProgram?: Address<TAccountCompressedTokenProgram>;
|
|
2503
|
-
splInterfacePdaArgs: TokenTransferIntentCompressedInstructionDataArgs[
|
|
2504
|
-
amount: TokenTransferIntentCompressedInstructionDataArgs[
|
|
2505
|
-
sourceCompressedTokenAccounts: TokenTransferIntentCompressedInstructionDataArgs[
|
|
2506
|
-
secp256r1VerifyArgs: TokenTransferIntentCompressedInstructionDataArgs[
|
|
2507
|
-
settingsMutArgs: TokenTransferIntentCompressedInstructionDataArgs[
|
|
2508
|
-
compressedProofArgs: TokenTransferIntentCompressedInstructionDataArgs[
|
|
2509
|
-
remainingAccounts: TokenTransferIntentCompressedInstructionExtraArgs[
|
|
2485
|
+
splInterfacePdaArgs: TokenTransferIntentCompressedInstructionDataArgs["splInterfacePdaArgs"];
|
|
2486
|
+
amount: TokenTransferIntentCompressedInstructionDataArgs["amount"];
|
|
2487
|
+
sourceCompressedTokenAccounts: TokenTransferIntentCompressedInstructionDataArgs["sourceCompressedTokenAccounts"];
|
|
2488
|
+
secp256r1VerifyArgs: TokenTransferIntentCompressedInstructionDataArgs["secp256r1VerifyArgs"];
|
|
2489
|
+
settingsMutArgs: TokenTransferIntentCompressedInstructionDataArgs["settingsMutArgs"];
|
|
2490
|
+
compressedProofArgs: TokenTransferIntentCompressedInstructionDataArgs["compressedProofArgs"];
|
|
2491
|
+
remainingAccounts: TokenTransferIntentCompressedInstructionExtraArgs["remainingAccounts"];
|
|
2510
2492
|
};
|
|
2511
2493
|
declare function getTokenTransferIntentCompressedInstructionAsync<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string, TAccountSourceCtokenTokenAccount extends string, TAccountDestination extends string, TAccountDestinationSplTokenAccount extends string, TAccountDestinationCtokenTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string, TAccountSystemProgram extends string, TAccountCompressedTokenProgramAuthority extends string, TAccountSplInterfacePda extends string, TAccountCompressibleConfig extends string, TAccountRentSponsor extends string, TAccountCompressedTokenProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentCompressedAsyncInput<TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>, config?: {
|
|
2512
2494
|
programAddress?: TProgramAddress;
|
|
@@ -2529,13 +2511,13 @@ type TokenTransferIntentCompressedInput<TAccountPayer extends string = string, T
|
|
|
2529
2511
|
compressibleConfig: Address<TAccountCompressibleConfig>;
|
|
2530
2512
|
rentSponsor?: Address<TAccountRentSponsor>;
|
|
2531
2513
|
compressedTokenProgram?: Address<TAccountCompressedTokenProgram>;
|
|
2532
|
-
splInterfacePdaArgs: TokenTransferIntentCompressedInstructionDataArgs[
|
|
2533
|
-
amount: TokenTransferIntentCompressedInstructionDataArgs[
|
|
2534
|
-
sourceCompressedTokenAccounts: TokenTransferIntentCompressedInstructionDataArgs[
|
|
2535
|
-
secp256r1VerifyArgs: TokenTransferIntentCompressedInstructionDataArgs[
|
|
2536
|
-
settingsMutArgs: TokenTransferIntentCompressedInstructionDataArgs[
|
|
2537
|
-
compressedProofArgs: TokenTransferIntentCompressedInstructionDataArgs[
|
|
2538
|
-
remainingAccounts: TokenTransferIntentCompressedInstructionExtraArgs[
|
|
2514
|
+
splInterfacePdaArgs: TokenTransferIntentCompressedInstructionDataArgs["splInterfacePdaArgs"];
|
|
2515
|
+
amount: TokenTransferIntentCompressedInstructionDataArgs["amount"];
|
|
2516
|
+
sourceCompressedTokenAccounts: TokenTransferIntentCompressedInstructionDataArgs["sourceCompressedTokenAccounts"];
|
|
2517
|
+
secp256r1VerifyArgs: TokenTransferIntentCompressedInstructionDataArgs["secp256r1VerifyArgs"];
|
|
2518
|
+
settingsMutArgs: TokenTransferIntentCompressedInstructionDataArgs["settingsMutArgs"];
|
|
2519
|
+
compressedProofArgs: TokenTransferIntentCompressedInstructionDataArgs["compressedProofArgs"];
|
|
2520
|
+
remainingAccounts: TokenTransferIntentCompressedInstructionExtraArgs["remainingAccounts"];
|
|
2539
2521
|
};
|
|
2540
2522
|
declare function getTokenTransferIntentCompressedInstruction<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TAccountSource extends string, TAccountSourceSplTokenAccount extends string, TAccountSourceCtokenTokenAccount extends string, TAccountDestination extends string, TAccountDestinationSplTokenAccount extends string, TAccountDestinationCtokenTokenAccount extends string, TAccountTokenProgram extends string, TAccountMint extends string, TAccountSystemProgram extends string, TAccountCompressedTokenProgramAuthority extends string, TAccountSplInterfacePda extends string, TAccountCompressibleConfig extends string, TAccountRentSponsor extends string, TAccountCompressedTokenProgram extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TokenTransferIntentCompressedInput<TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar, TAccountSource, TAccountSourceSplTokenAccount, TAccountSourceCtokenTokenAccount, TAccountDestination, TAccountDestinationSplTokenAccount, TAccountDestinationCtokenTokenAccount, TAccountTokenProgram, TAccountMint, TAccountSystemProgram, TAccountCompressedTokenProgramAuthority, TAccountSplInterfacePda, TAccountCompressibleConfig, TAccountRentSponsor, TAccountCompressedTokenProgram>, config?: {
|
|
2541
2523
|
programAddress?: TProgramAddress;
|
|
@@ -2567,7 +2549,7 @@ declare function parseTokenTransferIntentCompressedInstruction<TProgram extends
|
|
|
2567
2549
|
|
|
2568
2550
|
declare const TRANSACTION_BUFFER_CLOSE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
2569
2551
|
declare function getTransactionBufferCloseDiscriminatorBytes(): ReadonlyUint8Array;
|
|
2570
|
-
type TransactionBufferCloseInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCloser extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> =
|
|
2552
|
+
type TransactionBufferCloseInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCloser extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
2571
2553
|
TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
|
|
2572
2554
|
TAccountPayer extends string ? WritableAccount<TAccountPayer> : TAccountPayer,
|
|
2573
2555
|
TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
|
|
@@ -2601,8 +2583,8 @@ type TransactionBufferCloseInput<TAccountSettings extends string = string, TAcco
|
|
|
2601
2583
|
closer?: TransactionSigner<TAccountCloser>;
|
|
2602
2584
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
2603
2585
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
2604
|
-
secp256r1VerifyArgs: TransactionBufferCloseInstructionDataArgs[
|
|
2605
|
-
remainingAccounts: TransactionBufferCloseInstructionExtraArgs[
|
|
2586
|
+
secp256r1VerifyArgs: TransactionBufferCloseInstructionDataArgs["secp256r1VerifyArgs"];
|
|
2587
|
+
remainingAccounts: TransactionBufferCloseInstructionExtraArgs["remainingAccounts"];
|
|
2606
2588
|
};
|
|
2607
2589
|
declare function getTransactionBufferCloseInstruction<TAccountSettings extends string, TAccountPayer extends string, TAccountDomainConfig extends string, TAccountTransactionBuffer extends string, TAccountCloser extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferCloseInput<TAccountSettings, TAccountPayer, TAccountDomainConfig, TAccountTransactionBuffer, TAccountCloser, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
|
|
2608
2590
|
programAddress?: TProgramAddress;
|
|
@@ -2624,7 +2606,7 @@ declare function parseTransactionBufferCloseInstruction<TProgram extends string,
|
|
|
2624
2606
|
|
|
2625
2607
|
declare const TRANSACTION_BUFFER_CLOSE_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
2626
2608
|
declare function getTransactionBufferCloseCompressedDiscriminatorBytes(): ReadonlyUint8Array;
|
|
2627
|
-
type TransactionBufferCloseCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountRentCollector extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCloser extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> =
|
|
2609
|
+
type TransactionBufferCloseCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountRentCollector extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCloser extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
2628
2610
|
TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
|
|
2629
2611
|
TAccountRentCollector extends string ? WritableAccount<TAccountRentCollector> : TAccountRentCollector,
|
|
2630
2612
|
TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
|
|
@@ -2662,10 +2644,10 @@ type TransactionBufferCloseCompressedInput<TAccountPayer extends string = string
|
|
|
2662
2644
|
closer?: TransactionSigner<TAccountCloser>;
|
|
2663
2645
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
2664
2646
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
2665
|
-
secp256r1VerifyArgs: TransactionBufferCloseCompressedInstructionDataArgs[
|
|
2666
|
-
settingsMutArgs: TransactionBufferCloseCompressedInstructionDataArgs[
|
|
2667
|
-
compressedProofArgs: TransactionBufferCloseCompressedInstructionDataArgs[
|
|
2668
|
-
remainingAccounts: TransactionBufferCloseCompressedInstructionExtraArgs[
|
|
2647
|
+
secp256r1VerifyArgs: TransactionBufferCloseCompressedInstructionDataArgs["secp256r1VerifyArgs"];
|
|
2648
|
+
settingsMutArgs: TransactionBufferCloseCompressedInstructionDataArgs["settingsMutArgs"];
|
|
2649
|
+
compressedProofArgs: TransactionBufferCloseCompressedInstructionDataArgs["compressedProofArgs"];
|
|
2650
|
+
remainingAccounts: TransactionBufferCloseCompressedInstructionExtraArgs["remainingAccounts"];
|
|
2669
2651
|
};
|
|
2670
2652
|
declare function getTransactionBufferCloseCompressedInstruction<TAccountPayer extends string, TAccountRentCollector extends string, TAccountDomainConfig extends string, TAccountTransactionBuffer extends string, TAccountCloser extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferCloseCompressedInput<TAccountPayer, TAccountRentCollector, TAccountDomainConfig, TAccountTransactionBuffer, TAccountCloser, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
|
|
2671
2653
|
programAddress?: TProgramAddress;
|
|
@@ -2687,7 +2669,7 @@ declare function parseTransactionBufferCloseCompressedInstruction<TProgram exten
|
|
|
2687
2669
|
|
|
2688
2670
|
declare const TRANSACTION_BUFFER_CREATE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
2689
2671
|
declare function getTransactionBufferCreateDiscriminatorBytes(): ReadonlyUint8Array;
|
|
2690
|
-
type TransactionBufferCreateInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCreator extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> =
|
|
2672
|
+
type TransactionBufferCreateInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCreator extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
2691
2673
|
TAccountSettings extends string ? ReadonlyAccount<TAccountSettings> : TAccountSettings,
|
|
2692
2674
|
TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
|
|
2693
2675
|
TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
|
|
@@ -2725,9 +2707,9 @@ type TransactionBufferCreateInput<TAccountSettings extends string = string, TAcc
|
|
|
2725
2707
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
2726
2708
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
2727
2709
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
2728
|
-
args: TransactionBufferCreateInstructionDataArgs[
|
|
2729
|
-
secp256r1VerifyArgs: TransactionBufferCreateInstructionDataArgs[
|
|
2730
|
-
remainingAccounts: TransactionBufferCreateInstructionExtraArgs[
|
|
2710
|
+
args: TransactionBufferCreateInstructionDataArgs["args"];
|
|
2711
|
+
secp256r1VerifyArgs: TransactionBufferCreateInstructionDataArgs["secp256r1VerifyArgs"];
|
|
2712
|
+
remainingAccounts: TransactionBufferCreateInstructionExtraArgs["remainingAccounts"];
|
|
2731
2713
|
};
|
|
2732
2714
|
declare function getTransactionBufferCreateInstruction<TAccountSettings extends string, TAccountPayer extends string, TAccountDomainConfig extends string, TAccountTransactionBuffer extends string, TAccountCreator extends string, TAccountSystemProgram extends string, TAccountInstructionsSysvar extends string, TAccountSlotHashSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferCreateInput<TAccountSettings, TAccountPayer, TAccountDomainConfig, TAccountTransactionBuffer, TAccountCreator, TAccountSystemProgram, TAccountInstructionsSysvar, TAccountSlotHashSysvar>, config?: {
|
|
2733
2715
|
programAddress?: TProgramAddress;
|
|
@@ -2750,7 +2732,7 @@ declare function parseTransactionBufferCreateInstruction<TProgram extends string
|
|
|
2750
2732
|
|
|
2751
2733
|
declare const TRANSACTION_BUFFER_CREATE_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
2752
2734
|
declare function getTransactionBufferCreateCompressedDiscriminatorBytes(): ReadonlyUint8Array;
|
|
2753
|
-
type TransactionBufferCreateCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCreator extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> =
|
|
2735
|
+
type TransactionBufferCreateCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountCreator extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
2754
2736
|
TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
|
|
2755
2737
|
TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
|
|
2756
2738
|
TAccountTransactionBuffer extends string ? WritableAccount<TAccountTransactionBuffer> : TAccountTransactionBuffer,
|
|
@@ -2790,11 +2772,11 @@ type TransactionBufferCreateCompressedInput<TAccountPayer extends string = strin
|
|
|
2790
2772
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
2791
2773
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
2792
2774
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
2793
|
-
args: TransactionBufferCreateCompressedInstructionDataArgs[
|
|
2794
|
-
secp256r1VerifyArgs: TransactionBufferCreateCompressedInstructionDataArgs[
|
|
2795
|
-
settingsReadonlyArgs: TransactionBufferCreateCompressedInstructionDataArgs[
|
|
2796
|
-
compressedProofArgs: TransactionBufferCreateCompressedInstructionDataArgs[
|
|
2797
|
-
remainingAccounts: TransactionBufferCreateCompressedInstructionExtraArgs[
|
|
2775
|
+
args: TransactionBufferCreateCompressedInstructionDataArgs["args"];
|
|
2776
|
+
secp256r1VerifyArgs: TransactionBufferCreateCompressedInstructionDataArgs["secp256r1VerifyArgs"];
|
|
2777
|
+
settingsReadonlyArgs: TransactionBufferCreateCompressedInstructionDataArgs["settingsReadonlyArgs"];
|
|
2778
|
+
compressedProofArgs: TransactionBufferCreateCompressedInstructionDataArgs["compressedProofArgs"];
|
|
2779
|
+
remainingAccounts: TransactionBufferCreateCompressedInstructionExtraArgs["remainingAccounts"];
|
|
2798
2780
|
};
|
|
2799
2781
|
declare function getTransactionBufferCreateCompressedInstruction<TAccountPayer extends string, TAccountDomainConfig extends string, TAccountTransactionBuffer extends string, TAccountCreator extends string, TAccountSystemProgram extends string, TAccountInstructionsSysvar extends string, TAccountSlotHashSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferCreateCompressedInput<TAccountPayer, TAccountDomainConfig, TAccountTransactionBuffer, TAccountCreator, TAccountSystemProgram, TAccountInstructionsSysvar, TAccountSlotHashSysvar>, config?: {
|
|
2800
2782
|
programAddress?: TProgramAddress;
|
|
@@ -2816,7 +2798,7 @@ declare function parseTransactionBufferCreateCompressedInstruction<TProgram exte
|
|
|
2816
2798
|
|
|
2817
2799
|
declare const TRANSACTION_BUFFER_EXECUTE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
2818
2800
|
declare function getTransactionBufferExecuteDiscriminatorBytes(): ReadonlyUint8Array;
|
|
2819
|
-
type TransactionBufferExecuteInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountExecutor extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> =
|
|
2801
|
+
type TransactionBufferExecuteInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountExecutor extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
2820
2802
|
TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
|
|
2821
2803
|
TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
|
|
2822
2804
|
TAccountExecutor extends string ? ReadonlySignerAccount<TAccountExecutor> & AccountSignerMeta<TAccountExecutor> : TAccountExecutor,
|
|
@@ -2848,8 +2830,8 @@ type TransactionBufferExecuteInput<TAccountSettings extends string = string, TAc
|
|
|
2848
2830
|
transactionBuffer: Address<TAccountTransactionBuffer>;
|
|
2849
2831
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
2850
2832
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
2851
|
-
secp256r1VerifyArgs: TransactionBufferExecuteInstructionDataArgs[
|
|
2852
|
-
remainingAccounts: TransactionBufferExecuteInstructionExtraArgs[
|
|
2833
|
+
secp256r1VerifyArgs: TransactionBufferExecuteInstructionDataArgs["secp256r1VerifyArgs"];
|
|
2834
|
+
remainingAccounts: TransactionBufferExecuteInstructionExtraArgs["remainingAccounts"];
|
|
2853
2835
|
};
|
|
2854
2836
|
declare function getTransactionBufferExecuteInstruction<TAccountSettings extends string, TAccountDomainConfig extends string, TAccountExecutor extends string, TAccountTransactionBuffer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferExecuteInput<TAccountSettings, TAccountDomainConfig, TAccountExecutor, TAccountTransactionBuffer, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
|
|
2855
2837
|
programAddress?: TProgramAddress;
|
|
@@ -2870,7 +2852,7 @@ declare function parseTransactionBufferExecuteInstruction<TProgram extends strin
|
|
|
2870
2852
|
|
|
2871
2853
|
declare const TRANSACTION_BUFFER_EXECUTE_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
2872
2854
|
declare function getTransactionBufferExecuteCompressedDiscriminatorBytes(): ReadonlyUint8Array;
|
|
2873
|
-
type TransactionBufferExecuteCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountExecutor extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> =
|
|
2855
|
+
type TransactionBufferExecuteCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountExecutor extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
2874
2856
|
TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
|
|
2875
2857
|
TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
|
|
2876
2858
|
TAccountExecutor extends string ? ReadonlySignerAccount<TAccountExecutor> & AccountSignerMeta<TAccountExecutor> : TAccountExecutor,
|
|
@@ -2906,10 +2888,10 @@ type TransactionBufferExecuteCompressedInput<TAccountPayer extends string = stri
|
|
|
2906
2888
|
transactionBuffer: Address<TAccountTransactionBuffer>;
|
|
2907
2889
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
2908
2890
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
2909
|
-
secp256r1VerifyArgs: TransactionBufferExecuteCompressedInstructionDataArgs[
|
|
2910
|
-
settingsMutArgs: TransactionBufferExecuteCompressedInstructionDataArgs[
|
|
2911
|
-
compressedProofArgs: TransactionBufferExecuteCompressedInstructionDataArgs[
|
|
2912
|
-
remainingAccounts: TransactionBufferExecuteCompressedInstructionExtraArgs[
|
|
2891
|
+
secp256r1VerifyArgs: TransactionBufferExecuteCompressedInstructionDataArgs["secp256r1VerifyArgs"];
|
|
2892
|
+
settingsMutArgs: TransactionBufferExecuteCompressedInstructionDataArgs["settingsMutArgs"];
|
|
2893
|
+
compressedProofArgs: TransactionBufferExecuteCompressedInstructionDataArgs["compressedProofArgs"];
|
|
2894
|
+
remainingAccounts: TransactionBufferExecuteCompressedInstructionExtraArgs["remainingAccounts"];
|
|
2913
2895
|
};
|
|
2914
2896
|
declare function getTransactionBufferExecuteCompressedInstruction<TAccountPayer extends string, TAccountDomainConfig extends string, TAccountExecutor extends string, TAccountTransactionBuffer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferExecuteCompressedInput<TAccountPayer, TAccountDomainConfig, TAccountExecutor, TAccountTransactionBuffer, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
|
|
2915
2897
|
programAddress?: TProgramAddress;
|
|
@@ -2954,8 +2936,8 @@ type TransactionBufferExtendInstructionExtraArgs = {
|
|
|
2954
2936
|
type TransactionBufferExtendInput<TAccountSettings extends string = string, TAccountTransactionBuffer extends string = string> = {
|
|
2955
2937
|
settings: Address<TAccountSettings>;
|
|
2956
2938
|
transactionBuffer: Address<TAccountTransactionBuffer>;
|
|
2957
|
-
buffer: TransactionBufferExtendInstructionDataArgs[
|
|
2958
|
-
remainingAccounts: TransactionBufferExtendInstructionExtraArgs[
|
|
2939
|
+
buffer: TransactionBufferExtendInstructionDataArgs["buffer"];
|
|
2940
|
+
remainingAccounts: TransactionBufferExtendInstructionExtraArgs["remainingAccounts"];
|
|
2959
2941
|
};
|
|
2960
2942
|
declare function getTransactionBufferExtendInstruction<TAccountSettings extends string, TAccountTransactionBuffer extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferExtendInput<TAccountSettings, TAccountTransactionBuffer>, config?: {
|
|
2961
2943
|
programAddress?: TProgramAddress;
|
|
@@ -2996,9 +2978,9 @@ type TransactionBufferExtendCompressedInstructionExtraArgs = {
|
|
|
2996
2978
|
};
|
|
2997
2979
|
type TransactionBufferExtendCompressedInput<TAccountTransactionBuffer extends string = string> = {
|
|
2998
2980
|
transactionBuffer: Address<TAccountTransactionBuffer>;
|
|
2999
|
-
buffer: TransactionBufferExtendCompressedInstructionDataArgs[
|
|
3000
|
-
settingsKey: TransactionBufferExtendCompressedInstructionDataArgs[
|
|
3001
|
-
remainingAccounts: TransactionBufferExtendCompressedInstructionExtraArgs[
|
|
2981
|
+
buffer: TransactionBufferExtendCompressedInstructionDataArgs["buffer"];
|
|
2982
|
+
settingsKey: TransactionBufferExtendCompressedInstructionDataArgs["settingsKey"];
|
|
2983
|
+
remainingAccounts: TransactionBufferExtendCompressedInstructionExtraArgs["remainingAccounts"];
|
|
3002
2984
|
};
|
|
3003
2985
|
declare function getTransactionBufferExtendCompressedInstruction<TAccountTransactionBuffer extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferExtendCompressedInput<TAccountTransactionBuffer>, config?: {
|
|
3004
2986
|
programAddress?: TProgramAddress;
|
|
@@ -3014,7 +2996,7 @@ declare function parseTransactionBufferExtendCompressedInstruction<TProgram exte
|
|
|
3014
2996
|
|
|
3015
2997
|
declare const TRANSACTION_BUFFER_VOTE_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
3016
2998
|
declare function getTransactionBufferVoteDiscriminatorBytes(): ReadonlyUint8Array;
|
|
3017
|
-
type TransactionBufferVoteInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountVoter extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> =
|
|
2999
|
+
type TransactionBufferVoteInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountVoter extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
3018
3000
|
TAccountSettings extends string ? ReadonlyAccount<TAccountSettings> : TAccountSettings,
|
|
3019
3001
|
TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
|
|
3020
3002
|
TAccountTransactionBuffer extends string ? WritableAccount<TAccountTransactionBuffer> : TAccountTransactionBuffer,
|
|
@@ -3048,8 +3030,8 @@ type TransactionBufferVoteInput<TAccountSettings extends string = string, TAccou
|
|
|
3048
3030
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
3049
3031
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
3050
3032
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
3051
|
-
secp256r1VerifyArgs: TransactionBufferVoteInstructionDataArgs[
|
|
3052
|
-
remainingAccounts: TransactionBufferVoteInstructionExtraArgs[
|
|
3033
|
+
secp256r1VerifyArgs: TransactionBufferVoteInstructionDataArgs["secp256r1VerifyArgs"];
|
|
3034
|
+
remainingAccounts: TransactionBufferVoteInstructionExtraArgs["remainingAccounts"];
|
|
3053
3035
|
};
|
|
3054
3036
|
declare function getTransactionBufferVoteInstruction<TAccountSettings extends string, TAccountDomainConfig extends string, TAccountTransactionBuffer extends string, TAccountVoter extends string, TAccountSystemProgram extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferVoteInput<TAccountSettings, TAccountDomainConfig, TAccountTransactionBuffer, TAccountVoter, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
|
|
3055
3037
|
programAddress?: TProgramAddress;
|
|
@@ -3071,7 +3053,7 @@ declare function parseTransactionBufferVoteInstruction<TProgram extends string,
|
|
|
3071
3053
|
|
|
3072
3054
|
declare const TRANSACTION_BUFFER_VOTE_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
3073
3055
|
declare function getTransactionBufferVoteCompressedDiscriminatorBytes(): ReadonlyUint8Array;
|
|
3074
|
-
type TransactionBufferVoteCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountVoter extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> =
|
|
3056
|
+
type TransactionBufferVoteCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountDomainConfig extends string | AccountMeta<string> = string, TAccountTransactionBuffer extends string | AccountMeta<string> = string, TAccountVoter extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
3075
3057
|
TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
|
|
3076
3058
|
TAccountDomainConfig extends string ? ReadonlyAccount<TAccountDomainConfig> : TAccountDomainConfig,
|
|
3077
3059
|
TAccountTransactionBuffer extends string ? WritableAccount<TAccountTransactionBuffer> : TAccountTransactionBuffer,
|
|
@@ -3109,10 +3091,10 @@ type TransactionBufferVoteCompressedInput<TAccountPayer extends string = string,
|
|
|
3109
3091
|
systemProgram?: Address<TAccountSystemProgram>;
|
|
3110
3092
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
3111
3093
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
3112
|
-
secp256r1VerifyArgs: TransactionBufferVoteCompressedInstructionDataArgs[
|
|
3113
|
-
settingsReadonlyArgs: TransactionBufferVoteCompressedInstructionDataArgs[
|
|
3114
|
-
compressedProofArgs: TransactionBufferVoteCompressedInstructionDataArgs[
|
|
3115
|
-
remainingAccounts: TransactionBufferVoteCompressedInstructionExtraArgs[
|
|
3094
|
+
secp256r1VerifyArgs: TransactionBufferVoteCompressedInstructionDataArgs["secp256r1VerifyArgs"];
|
|
3095
|
+
settingsReadonlyArgs: TransactionBufferVoteCompressedInstructionDataArgs["settingsReadonlyArgs"];
|
|
3096
|
+
compressedProofArgs: TransactionBufferVoteCompressedInstructionDataArgs["compressedProofArgs"];
|
|
3097
|
+
remainingAccounts: TransactionBufferVoteCompressedInstructionExtraArgs["remainingAccounts"];
|
|
3116
3098
|
};
|
|
3117
3099
|
declare function getTransactionBufferVoteCompressedInstruction<TAccountPayer extends string, TAccountDomainConfig extends string, TAccountTransactionBuffer extends string, TAccountVoter extends string, TAccountSystemProgram extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionBufferVoteCompressedInput<TAccountPayer, TAccountDomainConfig, TAccountTransactionBuffer, TAccountVoter, TAccountSystemProgram, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
|
|
3118
3100
|
programAddress?: TProgramAddress;
|
|
@@ -3157,7 +3139,7 @@ type TransactionExecuteInput<TAccountSettings extends string = string, TAccountP
|
|
|
3157
3139
|
settings: Address<TAccountSettings>;
|
|
3158
3140
|
payer: Address<TAccountPayer>;
|
|
3159
3141
|
transactionBuffer: Address<TAccountTransactionBuffer>;
|
|
3160
|
-
remainingAccounts: TransactionExecuteInstructionExtraArgs[
|
|
3142
|
+
remainingAccounts: TransactionExecuteInstructionExtraArgs["remainingAccounts"];
|
|
3161
3143
|
};
|
|
3162
3144
|
declare function getTransactionExecuteInstruction<TAccountSettings extends string, TAccountPayer extends string, TAccountTransactionBuffer extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionExecuteInput<TAccountSettings, TAccountPayer, TAccountTransactionBuffer>, config?: {
|
|
3163
3145
|
programAddress?: TProgramAddress;
|
|
@@ -3199,8 +3181,8 @@ type TransactionExecuteCompressedInstructionExtraArgs = {
|
|
|
3199
3181
|
type TransactionExecuteCompressedInput<TAccountPayer extends string = string, TAccountTransactionBuffer extends string = string> = {
|
|
3200
3182
|
payer: Address<TAccountPayer>;
|
|
3201
3183
|
transactionBuffer: Address<TAccountTransactionBuffer>;
|
|
3202
|
-
settingsKey: TransactionExecuteCompressedInstructionDataArgs[
|
|
3203
|
-
remainingAccounts: TransactionExecuteCompressedInstructionExtraArgs[
|
|
3184
|
+
settingsKey: TransactionExecuteCompressedInstructionDataArgs["settingsKey"];
|
|
3185
|
+
remainingAccounts: TransactionExecuteCompressedInstructionExtraArgs["remainingAccounts"];
|
|
3204
3186
|
};
|
|
3205
3187
|
declare function getTransactionExecuteCompressedInstruction<TAccountPayer extends string, TAccountTransactionBuffer extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionExecuteCompressedInput<TAccountPayer, TAccountTransactionBuffer>, config?: {
|
|
3206
3188
|
programAddress?: TProgramAddress;
|
|
@@ -3217,7 +3199,7 @@ declare function parseTransactionExecuteCompressedInstruction<TProgram extends s
|
|
|
3217
3199
|
|
|
3218
3200
|
declare const TRANSACTION_EXECUTE_SYNC_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
3219
3201
|
declare function getTransactionExecuteSyncDiscriminatorBytes(): ReadonlyUint8Array;
|
|
3220
|
-
type TransactionExecuteSyncInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> =
|
|
3202
|
+
type TransactionExecuteSyncInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountSettings extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
3221
3203
|
TAccountSettings extends string ? WritableAccount<TAccountSettings> : TAccountSettings,
|
|
3222
3204
|
TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
|
|
3223
3205
|
TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
|
|
@@ -3245,9 +3227,9 @@ type TransactionExecuteSyncInput<TAccountSettings extends string = string, TAcco
|
|
|
3245
3227
|
settings: Address<TAccountSettings>;
|
|
3246
3228
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
3247
3229
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
3248
|
-
transactionMessage: TransactionExecuteSyncInstructionDataArgs[
|
|
3249
|
-
secp256r1VerifyArgs: TransactionExecuteSyncInstructionDataArgs[
|
|
3250
|
-
remainingAccounts: TransactionExecuteSyncInstructionExtraArgs[
|
|
3230
|
+
transactionMessage: TransactionExecuteSyncInstructionDataArgs["transactionMessage"];
|
|
3231
|
+
secp256r1VerifyArgs: TransactionExecuteSyncInstructionDataArgs["secp256r1VerifyArgs"];
|
|
3232
|
+
remainingAccounts: TransactionExecuteSyncInstructionExtraArgs["remainingAccounts"];
|
|
3251
3233
|
};
|
|
3252
3234
|
declare function getTransactionExecuteSyncInstruction<TAccountSettings extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionExecuteSyncInput<TAccountSettings, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
|
|
3253
3235
|
programAddress?: TProgramAddress;
|
|
@@ -3265,7 +3247,7 @@ declare function parseTransactionExecuteSyncInstruction<TProgram extends string,
|
|
|
3265
3247
|
|
|
3266
3248
|
declare const TRANSACTION_EXECUTE_SYNC_COMPRESSED_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
|
|
3267
3249
|
declare function getTransactionExecuteSyncCompressedDiscriminatorBytes(): ReadonlyUint8Array;
|
|
3268
|
-
type TransactionExecuteSyncCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> =
|
|
3250
|
+
type TransactionExecuteSyncCompressedInstruction<TProgram extends string = typeof MULTI_WALLET_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountSlotHashSysvar extends string | AccountMeta<string> = "SysvarS1otHashes111111111111111111111111111", TAccountInstructionsSysvar extends string | AccountMeta<string> = "Sysvar1nstructions1111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
|
|
3269
3251
|
TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
|
|
3270
3252
|
TAccountSlotHashSysvar extends string ? ReadonlyAccount<TAccountSlotHashSysvar> : TAccountSlotHashSysvar,
|
|
3271
3253
|
TAccountInstructionsSysvar extends string ? ReadonlyAccount<TAccountInstructionsSysvar> : TAccountInstructionsSysvar,
|
|
@@ -3297,11 +3279,11 @@ type TransactionExecuteSyncCompressedInput<TAccountPayer extends string = string
|
|
|
3297
3279
|
payer: TransactionSigner<TAccountPayer>;
|
|
3298
3280
|
slotHashSysvar?: Address<TAccountSlotHashSysvar>;
|
|
3299
3281
|
instructionsSysvar?: Address<TAccountInstructionsSysvar>;
|
|
3300
|
-
transactionMessage: TransactionExecuteSyncCompressedInstructionDataArgs[
|
|
3301
|
-
secp256r1VerifyArgs: TransactionExecuteSyncCompressedInstructionDataArgs[
|
|
3302
|
-
settingsMutArgs: TransactionExecuteSyncCompressedInstructionDataArgs[
|
|
3303
|
-
compressedProofArgs: TransactionExecuteSyncCompressedInstructionDataArgs[
|
|
3304
|
-
remainingAccounts: TransactionExecuteSyncCompressedInstructionExtraArgs[
|
|
3282
|
+
transactionMessage: TransactionExecuteSyncCompressedInstructionDataArgs["transactionMessage"];
|
|
3283
|
+
secp256r1VerifyArgs: TransactionExecuteSyncCompressedInstructionDataArgs["secp256r1VerifyArgs"];
|
|
3284
|
+
settingsMutArgs: TransactionExecuteSyncCompressedInstructionDataArgs["settingsMutArgs"];
|
|
3285
|
+
compressedProofArgs: TransactionExecuteSyncCompressedInstructionDataArgs["compressedProofArgs"];
|
|
3286
|
+
remainingAccounts: TransactionExecuteSyncCompressedInstructionExtraArgs["remainingAccounts"];
|
|
3305
3287
|
};
|
|
3306
3288
|
declare function getTransactionExecuteSyncCompressedInstruction<TAccountPayer extends string, TAccountSlotHashSysvar extends string, TAccountInstructionsSysvar extends string, TProgramAddress extends Address = typeof MULTI_WALLET_PROGRAM_ADDRESS>(input: TransactionExecuteSyncCompressedInput<TAccountPayer, TAccountSlotHashSysvar, TAccountInstructionsSysvar>, config?: {
|
|
3307
3289
|
programAddress?: TProgramAddress;
|
|
@@ -3431,62 +3413,23 @@ declare const TransactionPayloadWithBase64MessageBytesSchema: z.ZodObject<{
|
|
|
3431
3413
|
transactionAddress: z.ZodString;
|
|
3432
3414
|
transactionMessageBytes: z.ZodBase64;
|
|
3433
3415
|
}, z.core.$strict>;
|
|
3434
|
-
declare const AuthenticationContextSchema: z.ZodObject<{
|
|
3435
|
-
authResponse: z.ZodCustom<AuthenticationResponseJSON, AuthenticationResponseJSON>;
|
|
3436
|
-
nonce: z.ZodBase64;
|
|
3437
|
-
client: z.ZodObject<{
|
|
3438
|
-
clientOrigin: z.ZodURL;
|
|
3439
|
-
jws: z.ZodBase64URL;
|
|
3440
|
-
}, z.core.$strict>;
|
|
3441
|
-
device: z.ZodObject<{
|
|
3442
|
-
jwk: z.ZodBase64;
|
|
3443
|
-
jws: z.ZodBase64URL;
|
|
3444
|
-
}, z.core.$strict>;
|
|
3445
|
-
authProvider: z.ZodOptional<z.ZodObject<{
|
|
3446
|
-
jwk: z.ZodBase64;
|
|
3447
|
-
jws: z.ZodBase64URL;
|
|
3448
|
-
}, z.core.$strict>>;
|
|
3449
|
-
}, z.core.$strict>;
|
|
3450
|
-
declare const BaseResponseSchema: z.ZodObject<{
|
|
3451
|
-
signer: z.ZodString;
|
|
3452
|
-
userAddressTreeIndex: z.ZodOptional<z.ZodNumber>;
|
|
3453
|
-
additionalInfo: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
3454
|
-
}, z.core.$strict>;
|
|
3455
|
-
declare const TransactionDetailsSchema: z.ZodObject<{
|
|
3456
|
-
transactionPayload: z.ZodObject<{
|
|
3457
|
-
transactionActionType: z.ZodEnum<{
|
|
3458
|
-
create: "create";
|
|
3459
|
-
create_with_preauthorized_execution: "create_with_preauthorized_execution";
|
|
3460
|
-
execute: "execute";
|
|
3461
|
-
vote: "vote";
|
|
3462
|
-
sync: "sync";
|
|
3463
|
-
close: "close";
|
|
3464
|
-
decompress: "decompress";
|
|
3465
|
-
transfer_intent: "transfer_intent";
|
|
3466
|
-
change_delegate: "change_delegate";
|
|
3467
|
-
change_config: "change_config";
|
|
3468
|
-
}>;
|
|
3469
|
-
transactionAddress: z.ZodString;
|
|
3470
|
-
transactionMessageBytes: z.ZodBase64;
|
|
3471
|
-
}, z.core.$strict>;
|
|
3472
|
-
slotHash: z.ZodString;
|
|
3473
|
-
slotNumber: z.ZodString;
|
|
3474
|
-
originIndex: z.ZodNumber;
|
|
3475
|
-
crossOrigin: z.ZodBoolean;
|
|
3476
|
-
}, z.core.$strict>;
|
|
3477
3416
|
declare const StartMessageRequestSchema: z.ZodObject<{
|
|
3478
3417
|
phase: z.ZodLiteral<"start">;
|
|
3479
3418
|
redirectOrigin: z.ZodURL;
|
|
3480
3419
|
signer: z.ZodOptional<z.ZodString>;
|
|
3420
|
+
rid: z.ZodString;
|
|
3421
|
+
validTill: z.ZodNumber;
|
|
3481
3422
|
data: z.ZodObject<{
|
|
3482
3423
|
type: z.ZodLiteral<"message">;
|
|
3483
|
-
payload: z.
|
|
3424
|
+
payload: z.ZodString;
|
|
3484
3425
|
}, z.core.$strict>;
|
|
3485
3426
|
}, z.core.$strict>;
|
|
3486
3427
|
declare const StartTransactionRequestSchema: z.ZodObject<{
|
|
3487
3428
|
phase: z.ZodLiteral<"start">;
|
|
3488
3429
|
redirectOrigin: z.ZodURL;
|
|
3489
3430
|
signer: z.ZodOptional<z.ZodString>;
|
|
3431
|
+
rid: z.ZodString;
|
|
3432
|
+
validTill: z.ZodNumber;
|
|
3490
3433
|
data: z.ZodObject<{
|
|
3491
3434
|
type: z.ZodLiteral<"transaction">;
|
|
3492
3435
|
payload: z.ZodObject<{
|
|
@@ -3505,7 +3448,71 @@ declare const StartTransactionRequestSchema: z.ZodObject<{
|
|
|
3505
3448
|
transactionAddress: z.ZodString;
|
|
3506
3449
|
transactionMessageBytes: z.ZodBase64;
|
|
3507
3450
|
}, z.core.$strict>;
|
|
3451
|
+
sendTx: z.ZodBoolean;
|
|
3452
|
+
}, z.core.$strict>;
|
|
3453
|
+
}, z.core.$strict>;
|
|
3454
|
+
declare const AuthenticationContextSchema: z.ZodObject<{
|
|
3455
|
+
startRequest: z.ZodUnion<readonly [z.ZodObject<{
|
|
3456
|
+
phase: z.ZodLiteral<"start">;
|
|
3457
|
+
redirectOrigin: z.ZodURL;
|
|
3458
|
+
signer: z.ZodOptional<z.ZodString>;
|
|
3459
|
+
rid: z.ZodString;
|
|
3460
|
+
validTill: z.ZodNumber;
|
|
3461
|
+
data: z.ZodObject<{
|
|
3462
|
+
type: z.ZodLiteral<"message">;
|
|
3463
|
+
payload: z.ZodString;
|
|
3464
|
+
}, z.core.$strict>;
|
|
3465
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3466
|
+
phase: z.ZodLiteral<"start">;
|
|
3467
|
+
redirectOrigin: z.ZodURL;
|
|
3468
|
+
signer: z.ZodOptional<z.ZodString>;
|
|
3469
|
+
rid: z.ZodString;
|
|
3470
|
+
validTill: z.ZodNumber;
|
|
3471
|
+
data: z.ZodObject<{
|
|
3472
|
+
type: z.ZodLiteral<"transaction">;
|
|
3473
|
+
payload: z.ZodObject<{
|
|
3474
|
+
transactionActionType: z.ZodEnum<{
|
|
3475
|
+
create: "create";
|
|
3476
|
+
create_with_preauthorized_execution: "create_with_preauthorized_execution";
|
|
3477
|
+
execute: "execute";
|
|
3478
|
+
vote: "vote";
|
|
3479
|
+
sync: "sync";
|
|
3480
|
+
close: "close";
|
|
3481
|
+
decompress: "decompress";
|
|
3482
|
+
transfer_intent: "transfer_intent";
|
|
3483
|
+
change_delegate: "change_delegate";
|
|
3484
|
+
change_config: "change_config";
|
|
3485
|
+
}>;
|
|
3486
|
+
transactionAddress: z.ZodString;
|
|
3487
|
+
transactionMessageBytes: z.ZodBase64;
|
|
3488
|
+
}, z.core.$strict>;
|
|
3489
|
+
sendTx: z.ZodBoolean;
|
|
3490
|
+
}, z.core.$strict>;
|
|
3491
|
+
}, z.core.$strict>]>;
|
|
3492
|
+
authResponse: z.ZodCustom<AuthenticationResponseJSON, AuthenticationResponseJSON>;
|
|
3493
|
+
client: z.ZodObject<{
|
|
3494
|
+
clientOrigin: z.ZodURL;
|
|
3495
|
+
jws: z.ZodString;
|
|
3496
|
+
}, z.core.$strict>;
|
|
3497
|
+
device: z.ZodObject<{
|
|
3498
|
+
jwk: z.ZodBase64;
|
|
3499
|
+
jws: z.ZodString;
|
|
3508
3500
|
}, z.core.$strict>;
|
|
3501
|
+
authProvider: z.ZodOptional<z.ZodObject<{
|
|
3502
|
+
jwk: z.ZodBase64;
|
|
3503
|
+
jws: z.ZodString;
|
|
3504
|
+
}, z.core.$strict>>;
|
|
3505
|
+
}, z.core.$strict>;
|
|
3506
|
+
declare const BaseResponseSchema: z.ZodObject<{
|
|
3507
|
+
signer: z.ZodString;
|
|
3508
|
+
userAddressTreeIndex: z.ZodOptional<z.ZodNumber>;
|
|
3509
|
+
additionalInfo: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
3510
|
+
}, z.core.$strict>;
|
|
3511
|
+
declare const TransactionDetailsSchema: z.ZodObject<{
|
|
3512
|
+
slotHash: z.ZodString;
|
|
3513
|
+
slotNumber: z.ZodString;
|
|
3514
|
+
originIndex: z.ZodNumber;
|
|
3515
|
+
crossOrigin: z.ZodBoolean;
|
|
3509
3516
|
}, z.core.$strict>;
|
|
3510
3517
|
declare const CompleteMessageRequestSchema: z.ZodObject<{
|
|
3511
3518
|
phase: z.ZodLiteral<"complete">;
|
|
@@ -3515,18 +3522,53 @@ declare const CompleteMessageRequestSchema: z.ZodObject<{
|
|
|
3515
3522
|
signer: z.ZodString;
|
|
3516
3523
|
userAddressTreeIndex: z.ZodOptional<z.ZodNumber>;
|
|
3517
3524
|
additionalInfo: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
3525
|
+
startRequest: z.ZodUnion<readonly [z.ZodObject<{
|
|
3526
|
+
phase: z.ZodLiteral<"start">;
|
|
3527
|
+
redirectOrigin: z.ZodURL;
|
|
3528
|
+
signer: z.ZodOptional<z.ZodString>;
|
|
3529
|
+
rid: z.ZodString;
|
|
3530
|
+
validTill: z.ZodNumber;
|
|
3531
|
+
data: z.ZodObject<{
|
|
3532
|
+
type: z.ZodLiteral<"message">;
|
|
3533
|
+
payload: z.ZodString;
|
|
3534
|
+
}, z.core.$strict>;
|
|
3535
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3536
|
+
phase: z.ZodLiteral<"start">;
|
|
3537
|
+
redirectOrigin: z.ZodURL;
|
|
3538
|
+
signer: z.ZodOptional<z.ZodString>;
|
|
3539
|
+
rid: z.ZodString;
|
|
3540
|
+
validTill: z.ZodNumber;
|
|
3541
|
+
data: z.ZodObject<{
|
|
3542
|
+
type: z.ZodLiteral<"transaction">;
|
|
3543
|
+
payload: z.ZodObject<{
|
|
3544
|
+
transactionActionType: z.ZodEnum<{
|
|
3545
|
+
create: "create";
|
|
3546
|
+
create_with_preauthorized_execution: "create_with_preauthorized_execution";
|
|
3547
|
+
execute: "execute";
|
|
3548
|
+
vote: "vote";
|
|
3549
|
+
sync: "sync";
|
|
3550
|
+
close: "close";
|
|
3551
|
+
decompress: "decompress";
|
|
3552
|
+
transfer_intent: "transfer_intent";
|
|
3553
|
+
change_delegate: "change_delegate";
|
|
3554
|
+
change_config: "change_config";
|
|
3555
|
+
}>;
|
|
3556
|
+
transactionAddress: z.ZodString;
|
|
3557
|
+
transactionMessageBytes: z.ZodBase64;
|
|
3558
|
+
}, z.core.$strict>;
|
|
3559
|
+
sendTx: z.ZodBoolean;
|
|
3560
|
+
}, z.core.$strict>;
|
|
3561
|
+
}, z.core.$strict>]>;
|
|
3518
3562
|
authResponse: z.ZodCustom<AuthenticationResponseJSON, AuthenticationResponseJSON>;
|
|
3519
|
-
nonce: z.ZodBase64;
|
|
3520
3563
|
device: z.ZodObject<{
|
|
3521
3564
|
jwk: z.ZodBase64;
|
|
3522
|
-
jws: z.
|
|
3565
|
+
jws: z.ZodString;
|
|
3523
3566
|
}, z.core.$strict>;
|
|
3524
3567
|
authProvider: z.ZodOptional<z.ZodObject<{
|
|
3525
3568
|
jwk: z.ZodBase64;
|
|
3526
|
-
jws: z.
|
|
3569
|
+
jws: z.ZodString;
|
|
3527
3570
|
}, z.core.$strict>>;
|
|
3528
3571
|
id: z.ZodOptional<z.ZodString>;
|
|
3529
|
-
message: z.ZodString;
|
|
3530
3572
|
client: z.ZodObject<{
|
|
3531
3573
|
clientOrigin: z.ZodURL;
|
|
3532
3574
|
}, z.core.$strict>;
|
|
@@ -3541,32 +3583,52 @@ declare const CompleteTransactionRequestSchema: z.ZodObject<{
|
|
|
3541
3583
|
signer: z.ZodString;
|
|
3542
3584
|
userAddressTreeIndex: z.ZodOptional<z.ZodNumber>;
|
|
3543
3585
|
additionalInfo: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
|
|
3586
|
+
startRequest: z.ZodUnion<readonly [z.ZodObject<{
|
|
3587
|
+
phase: z.ZodLiteral<"start">;
|
|
3588
|
+
redirectOrigin: z.ZodURL;
|
|
3589
|
+
signer: z.ZodOptional<z.ZodString>;
|
|
3590
|
+
rid: z.ZodString;
|
|
3591
|
+
validTill: z.ZodNumber;
|
|
3592
|
+
data: z.ZodObject<{
|
|
3593
|
+
type: z.ZodLiteral<"message">;
|
|
3594
|
+
payload: z.ZodString;
|
|
3595
|
+
}, z.core.$strict>;
|
|
3596
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3597
|
+
phase: z.ZodLiteral<"start">;
|
|
3598
|
+
redirectOrigin: z.ZodURL;
|
|
3599
|
+
signer: z.ZodOptional<z.ZodString>;
|
|
3600
|
+
rid: z.ZodString;
|
|
3601
|
+
validTill: z.ZodNumber;
|
|
3602
|
+
data: z.ZodObject<{
|
|
3603
|
+
type: z.ZodLiteral<"transaction">;
|
|
3604
|
+
payload: z.ZodObject<{
|
|
3605
|
+
transactionActionType: z.ZodEnum<{
|
|
3606
|
+
create: "create";
|
|
3607
|
+
create_with_preauthorized_execution: "create_with_preauthorized_execution";
|
|
3608
|
+
execute: "execute";
|
|
3609
|
+
vote: "vote";
|
|
3610
|
+
sync: "sync";
|
|
3611
|
+
close: "close";
|
|
3612
|
+
decompress: "decompress";
|
|
3613
|
+
transfer_intent: "transfer_intent";
|
|
3614
|
+
change_delegate: "change_delegate";
|
|
3615
|
+
change_config: "change_config";
|
|
3616
|
+
}>;
|
|
3617
|
+
transactionAddress: z.ZodString;
|
|
3618
|
+
transactionMessageBytes: z.ZodBase64;
|
|
3619
|
+
}, z.core.$strict>;
|
|
3620
|
+
sendTx: z.ZodBoolean;
|
|
3621
|
+
}, z.core.$strict>;
|
|
3622
|
+
}, z.core.$strict>]>;
|
|
3544
3623
|
authResponse: z.ZodCustom<AuthenticationResponseJSON, AuthenticationResponseJSON>;
|
|
3545
|
-
nonce: z.ZodBase64;
|
|
3546
3624
|
device: z.ZodObject<{
|
|
3547
3625
|
jwk: z.ZodBase64;
|
|
3548
|
-
jws: z.
|
|
3626
|
+
jws: z.ZodString;
|
|
3549
3627
|
}, z.core.$strict>;
|
|
3550
3628
|
authProvider: z.ZodOptional<z.ZodObject<{
|
|
3551
3629
|
jwk: z.ZodBase64;
|
|
3552
|
-
jws: z.
|
|
3630
|
+
jws: z.ZodString;
|
|
3553
3631
|
}, z.core.$strict>>;
|
|
3554
|
-
transactionPayload: z.ZodObject<{
|
|
3555
|
-
transactionActionType: z.ZodEnum<{
|
|
3556
|
-
create: "create";
|
|
3557
|
-
create_with_preauthorized_execution: "create_with_preauthorized_execution";
|
|
3558
|
-
execute: "execute";
|
|
3559
|
-
vote: "vote";
|
|
3560
|
-
sync: "sync";
|
|
3561
|
-
close: "close";
|
|
3562
|
-
decompress: "decompress";
|
|
3563
|
-
transfer_intent: "transfer_intent";
|
|
3564
|
-
change_delegate: "change_delegate";
|
|
3565
|
-
change_config: "change_config";
|
|
3566
|
-
}>;
|
|
3567
|
-
transactionAddress: z.ZodString;
|
|
3568
|
-
transactionMessageBytes: z.ZodBase64;
|
|
3569
|
-
}, z.core.$strict>;
|
|
3570
3632
|
slotHash: z.ZodString;
|
|
3571
3633
|
slotNumber: z.ZodString;
|
|
3572
3634
|
originIndex: z.ZodNumber;
|
|
@@ -3577,12 +3639,59 @@ declare const CompleteTransactionRequestSchema: z.ZodObject<{
|
|
|
3577
3639
|
}, z.core.$strict>;
|
|
3578
3640
|
}, z.core.$strict>;
|
|
3579
3641
|
}, z.core.$strict>;
|
|
3642
|
+
declare const CompleteSendTransactionRequestSchema: z.ZodObject<{
|
|
3643
|
+
phase: z.ZodLiteral<"complete">;
|
|
3644
|
+
data: z.ZodObject<{
|
|
3645
|
+
type: z.ZodLiteral<"transaction">;
|
|
3646
|
+
payload: z.ZodObject<{
|
|
3647
|
+
startRequest: z.ZodUnion<readonly [z.ZodObject<{
|
|
3648
|
+
phase: z.ZodLiteral<"start">;
|
|
3649
|
+
redirectOrigin: z.ZodURL;
|
|
3650
|
+
signer: z.ZodOptional<z.ZodString>;
|
|
3651
|
+
rid: z.ZodString;
|
|
3652
|
+
validTill: z.ZodNumber;
|
|
3653
|
+
data: z.ZodObject<{
|
|
3654
|
+
type: z.ZodLiteral<"transaction">;
|
|
3655
|
+
payload: z.ZodObject<{
|
|
3656
|
+
transactionActionType: z.ZodEnum<{
|
|
3657
|
+
create: "create";
|
|
3658
|
+
create_with_preauthorized_execution: "create_with_preauthorized_execution";
|
|
3659
|
+
execute: "execute";
|
|
3660
|
+
vote: "vote";
|
|
3661
|
+
sync: "sync";
|
|
3662
|
+
close: "close";
|
|
3663
|
+
decompress: "decompress";
|
|
3664
|
+
transfer_intent: "transfer_intent";
|
|
3665
|
+
change_delegate: "change_delegate";
|
|
3666
|
+
change_config: "change_config";
|
|
3667
|
+
}>;
|
|
3668
|
+
transactionAddress: z.ZodString;
|
|
3669
|
+
transactionMessageBytes: z.ZodBase64;
|
|
3670
|
+
}, z.core.$strict>;
|
|
3671
|
+
sendTx: z.ZodBoolean;
|
|
3672
|
+
}, z.core.$strict>;
|
|
3673
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3674
|
+
phase: z.ZodLiteral<"start">;
|
|
3675
|
+
redirectOrigin: z.ZodURL;
|
|
3676
|
+
signer: z.ZodOptional<z.ZodString>;
|
|
3677
|
+
rid: z.ZodString;
|
|
3678
|
+
validTill: z.ZodNumber;
|
|
3679
|
+
data: z.ZodObject<{
|
|
3680
|
+
type: z.ZodLiteral<"message">;
|
|
3681
|
+
payload: z.ZodString;
|
|
3682
|
+
}, z.core.$strict>;
|
|
3683
|
+
}, z.core.$strict>]>;
|
|
3684
|
+
txSig: z.ZodString;
|
|
3685
|
+
}, z.core.$strip>;
|
|
3686
|
+
}, z.core.$strict>;
|
|
3687
|
+
}, z.core.$strict>;
|
|
3580
3688
|
type TransactionActionType = z.infer<typeof TransactionActionTypeSchema>;
|
|
3581
3689
|
type TransactionPayload = z.infer<typeof TransactionPayloadSchema>;
|
|
3582
3690
|
type TransactionPayloadWithBase64MessageBytes = z.infer<typeof TransactionPayloadWithBase64MessageBytesSchema>;
|
|
3583
3691
|
type StartMessageRequest = z.infer<typeof StartMessageRequestSchema>;
|
|
3584
3692
|
type StartTransactionRequest = z.infer<typeof StartTransactionRequestSchema>;
|
|
3585
3693
|
type CompleteTransactionRequest = z.infer<typeof CompleteTransactionRequestSchema>;
|
|
3694
|
+
type CompleteSendTransactionRequest = z.infer<typeof CompleteSendTransactionRequestSchema>;
|
|
3586
3695
|
type CompleteMessageRequest = z.infer<typeof CompleteMessageRequestSchema>;
|
|
3587
3696
|
type AuthenticationContext = z.infer<typeof AuthenticationContextSchema>;
|
|
3588
3697
|
type BaseResponse = z.infer<typeof BaseResponseSchema>;
|
|
@@ -3605,7 +3714,7 @@ declare class Permissions implements IPermissions {
|
|
|
3605
3714
|
static has(permissions: IPermissions, permission: IPermission): boolean;
|
|
3606
3715
|
}
|
|
3607
3716
|
|
|
3608
|
-
type Secp256r1KeyInitData = string | Uint8Array | Array<number
|
|
3717
|
+
type Secp256r1KeyInitData = string | Uint8Array | Array<number> | ReadonlyUint8Array;
|
|
3609
3718
|
type SignedMessageDetails = {
|
|
3610
3719
|
verifyArgs: {
|
|
3611
3720
|
clientDataJson: Uint8Array<ArrayBuffer>;
|
|
@@ -3658,7 +3767,7 @@ interface UserCreationArgs$1 {
|
|
|
3658
3767
|
role: UserRole.Member | UserRole.PermanentMember;
|
|
3659
3768
|
credentialId: string;
|
|
3660
3769
|
transports: Transports[];
|
|
3661
|
-
|
|
3770
|
+
settings?: Address;
|
|
3662
3771
|
settingsAddressTreeIndex?: number;
|
|
3663
3772
|
transactionManager?: {
|
|
3664
3773
|
member: Address;
|
|
@@ -3683,12 +3792,12 @@ declare function disableDomainConfig({ admin, rpId, disable, }: {
|
|
|
3683
3792
|
rpId: string;
|
|
3684
3793
|
}): Promise<DisableDomainConfigInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, []>>;
|
|
3685
3794
|
|
|
3686
|
-
declare function migrateSettings({ args, authority,
|
|
3795
|
+
declare function migrateSettings({ args, authority, settings, settingsAddressTreeIndex, }: {
|
|
3687
3796
|
authority: TransactionSigner;
|
|
3688
3797
|
args: CompressedSettingsData;
|
|
3689
|
-
|
|
3798
|
+
settings: Address;
|
|
3690
3799
|
settingsAddressTreeIndex?: number;
|
|
3691
|
-
}): Promise<MigrateCompressedSettingsInstruction<
|
|
3800
|
+
}): Promise<MigrateCompressedSettingsInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, []>>;
|
|
3692
3801
|
|
|
3693
3802
|
declare function migrateUsers({ args, authority, member, userAddressTreeIndex, }: {
|
|
3694
3803
|
authority: TransactionSigner;
|
|
@@ -3755,8 +3864,8 @@ declare function executeTransaction({ settings, transactionBufferAddress, transa
|
|
|
3755
3864
|
addressLookupTableAccounts: AddressesByLookupTableAddress;
|
|
3756
3865
|
}>;
|
|
3757
3866
|
|
|
3758
|
-
declare function executeTransactionSync({
|
|
3759
|
-
|
|
3867
|
+
declare function executeTransactionSync({ settings, settingsAddressTreeIndex, transactionMessageBytes, signers, payer, addressesByLookupTableAddress, secp256r1VerifyInput, compressed, simulateProof, cachedAccounts, }: {
|
|
3868
|
+
settings: Address;
|
|
3760
3869
|
settingsAddressTreeIndex?: number;
|
|
3761
3870
|
signers: (TransactionSigner | SignedSecp256r1Key)[];
|
|
3762
3871
|
transactionMessageBytes: ReadonlyUint8Array;
|
|
@@ -3771,8 +3880,8 @@ declare function executeTransactionSync({ index, settingsAddressTreeIndex, trans
|
|
|
3771
3880
|
addressLookupTableAccounts: AddressesByLookupTableAddress;
|
|
3772
3881
|
}>;
|
|
3773
3882
|
|
|
3774
|
-
declare function nativeTransferIntent({
|
|
3775
|
-
|
|
3883
|
+
declare function nativeTransferIntent({ settings, settingsAddressTreeIndex, destination, signers, cachedAccounts, amount, payer, compressed, }: {
|
|
3884
|
+
settings: Address;
|
|
3776
3885
|
settingsAddressTreeIndex?: number;
|
|
3777
3886
|
destination: Address;
|
|
3778
3887
|
amount: number | bigint;
|
|
@@ -3782,8 +3891,8 @@ declare function nativeTransferIntent({ index, settingsAddressTreeIndex, destina
|
|
|
3782
3891
|
cachedAccounts?: Map<string, any>;
|
|
3783
3892
|
}): Promise<Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[]>;
|
|
3784
3893
|
|
|
3785
|
-
declare function tokenTransferIntent({
|
|
3786
|
-
|
|
3894
|
+
declare function tokenTransferIntent({ settings, settingsAddressTreeIndex, destination, mint, signers, cachedAccounts, amount, payer, tokenProgram, splInterfacePdaArgs, compressed, }: {
|
|
3895
|
+
settings: Address;
|
|
3787
3896
|
settingsAddressTreeIndex?: number;
|
|
3788
3897
|
destination: Address;
|
|
3789
3898
|
mint: Address;
|
|
@@ -3827,7 +3936,7 @@ declare class PackedAccounts {
|
|
|
3827
3936
|
declare function changeConfig({ signers, payer, changeConfigArgs, }: {
|
|
3828
3937
|
changeConfigArgs: {
|
|
3829
3938
|
configActions: ConfigAction[];
|
|
3830
|
-
|
|
3939
|
+
settings: Address;
|
|
3831
3940
|
compressed: boolean;
|
|
3832
3941
|
packedAccounts: PackedAccounts;
|
|
3833
3942
|
proof: ValidityProofWithContext | null;
|
|
@@ -3835,7 +3944,7 @@ declare function changeConfig({ signers, payer, changeConfigArgs, }: {
|
|
|
3835
3944
|
};
|
|
3836
3945
|
signers: (TransactionSigner | SignedSecp256r1Key)[];
|
|
3837
3946
|
payer: TransactionSigner;
|
|
3838
|
-
}): Promise<(Secp256r1VerifyInstruction<
|
|
3947
|
+
}): Promise<(Secp256r1VerifyInstruction<Address<"Secp256r1SigVerify1111111111111111111111111">> | ChangeConfigCompressedInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, []> | ChangeConfigInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, []>)[]>;
|
|
3839
3948
|
|
|
3840
3949
|
type UserCreationArgs = {
|
|
3841
3950
|
member: TransactionSigner;
|
|
@@ -3859,13 +3968,13 @@ type CreateWalletArgs = {
|
|
|
3859
3968
|
};
|
|
3860
3969
|
declare function createWallet({ index, payer, initialMember, userAddressTreeIndex, cachedAccounts, }: CreateWalletArgs): Promise<CreateCompressedWalletInstruction<gill.Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, []>>;
|
|
3861
3970
|
|
|
3862
|
-
declare function decompressSettingsAccount({
|
|
3863
|
-
|
|
3971
|
+
declare function decompressSettingsAccount({ settings, settingsAddressTreeIndex, payer, signers, cachedAccounts, }: {
|
|
3972
|
+
settings: Address;
|
|
3864
3973
|
settingsAddressTreeIndex?: number;
|
|
3865
3974
|
payer: TransactionSigner;
|
|
3866
3975
|
signers: (SignedSecp256r1Key | TransactionSigner)[];
|
|
3867
3976
|
cachedAccounts?: Map<string, any>;
|
|
3868
|
-
}): Promise<(Secp256r1VerifyInstruction<
|
|
3977
|
+
}): Promise<(Secp256r1VerifyInstruction<Address<"Secp256r1SigVerify1111111111111111111111111">> | DecompressSettingsAccountInstruction<Address<"reviR1xysEChySVSWGa43a6oJ2boJYTJhwRjo8KJhhT">, string, string, string, string, string, []>)[]>;
|
|
3869
3978
|
|
|
3870
3979
|
declare function editDomainConfig({ authority, domainConfig, newAuthority, newOrigins, }: {
|
|
3871
3980
|
domainConfig: Address;
|
|
@@ -3888,8 +3997,7 @@ declare function editUserDelegate({ payer, user, userAddressTreeIndex, newDelega
|
|
|
3888
3997
|
newDelegate?: SettingsIndexWithAddress;
|
|
3889
3998
|
}): Promise<Instruction<string, readonly (gill.AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[]>;
|
|
3890
3999
|
|
|
3891
|
-
declare function closeTransactionBuffer({
|
|
3892
|
-
index: number | bigint;
|
|
4000
|
+
declare function closeTransactionBuffer({ settingsAddressTreeIndex, closer, transactionBufferAddress, payer, compressed, cachedAccounts, }: {
|
|
3893
4001
|
settingsAddressTreeIndex?: number;
|
|
3894
4002
|
closer: TransactionSigner | SignedSecp256r1Key;
|
|
3895
4003
|
transactionBufferAddress: Address;
|
|
@@ -3947,15 +4055,15 @@ declare function voteTransactionBuffer({ settings, voter, transactionBufferAddre
|
|
|
3947
4055
|
} | null;
|
|
3948
4056
|
}): Instruction<string, readonly (AccountMeta<string> | gill.AccountLookupMeta<string, string>)[]>[];
|
|
3949
4057
|
|
|
3950
|
-
declare function prepareChangeConfigArgs({
|
|
3951
|
-
|
|
4058
|
+
declare function prepareChangeConfigArgs({ settings, settingsAddressTreeIndex, configActionsArgs, cachedAccounts, compressed, }: {
|
|
4059
|
+
settings: Address;
|
|
3952
4060
|
compressed?: boolean;
|
|
3953
4061
|
settingsAddressTreeIndex?: number;
|
|
3954
4062
|
configActionsArgs: ConfigurationArgs[];
|
|
3955
4063
|
cachedAccounts?: Map<string, any>;
|
|
3956
4064
|
}): Promise<{
|
|
3957
4065
|
configActions: ConfigAction[];
|
|
3958
|
-
|
|
4066
|
+
settings: Address;
|
|
3959
4067
|
compressed: boolean;
|
|
3960
4068
|
packedAccounts: PackedAccounts;
|
|
3961
4069
|
proof: ValidityProofWithContext | null;
|
|
@@ -3964,9 +4072,9 @@ declare function prepareChangeConfigArgs({ index, settingsAddressTreeIndex, conf
|
|
|
3964
4072
|
|
|
3965
4073
|
interface CreateTransactionBundleArgs {
|
|
3966
4074
|
payer: TransactionSigner;
|
|
3967
|
-
|
|
4075
|
+
settings: Address;
|
|
3968
4076
|
settingsAddressTreeIndex?: number;
|
|
3969
|
-
transactionMessageBytes:
|
|
4077
|
+
transactionMessageBytes: Uint8Array<ArrayBuffer>;
|
|
3970
4078
|
creator: TransactionSigner | SignedSecp256r1Key;
|
|
3971
4079
|
additionalVoters?: (TransactionSigner | SignedSecp256r1Key)[];
|
|
3972
4080
|
executor?: TransactionSigner | SignedSecp256r1Key;
|
|
@@ -3978,18 +4086,18 @@ interface CreateTransactionBundleArgs {
|
|
|
3978
4086
|
addressesByLookupTableAddress?: AddressesByLookupTableAddress;
|
|
3979
4087
|
cachedAccounts?: Map<string, any>;
|
|
3980
4088
|
}
|
|
3981
|
-
declare function prepareTransactionBundle({ payer,
|
|
4089
|
+
declare function prepareTransactionBundle({ payer, settings, settingsAddressTreeIndex, transactionMessageBytes, creator, executor, secp256r1VerifyInput, jitoBundlesTipAmount, addressesByLookupTableAddress, compressed, additionalVoters, additionalSigners, chunkSize, cachedAccounts, }: CreateTransactionBundleArgs): Promise<TransactionDetails[]>;
|
|
3982
4090
|
|
|
3983
4091
|
interface PrepareTransactionMessageArgs {
|
|
3984
4092
|
instructions: Instruction[];
|
|
3985
4093
|
payer: Address;
|
|
3986
4094
|
addressesByLookupTableAddress?: AddressesByLookupTableAddress;
|
|
3987
4095
|
}
|
|
3988
|
-
declare function prepareTransactionMessage({ instructions, payer, addressesByLookupTableAddress, }: PrepareTransactionMessageArgs):
|
|
4096
|
+
declare function prepareTransactionMessage({ instructions, payer, addressesByLookupTableAddress, }: PrepareTransactionMessageArgs): Uint8Array<ArrayBuffer>;
|
|
3989
4097
|
|
|
3990
4098
|
interface CreateTransactionSyncArgs {
|
|
3991
4099
|
payer: TransactionSigner;
|
|
3992
|
-
|
|
4100
|
+
settings: Address;
|
|
3993
4101
|
settingsAddressTreeIndex?: number;
|
|
3994
4102
|
transactionMessageBytes: ReadonlyUint8Array;
|
|
3995
4103
|
signers: (TransactionSigner | SignedSecp256r1Key)[];
|
|
@@ -3999,9 +4107,9 @@ interface CreateTransactionSyncArgs {
|
|
|
3999
4107
|
simulateProof?: boolean;
|
|
4000
4108
|
cachedAccounts?: AccountCache;
|
|
4001
4109
|
}
|
|
4002
|
-
declare function prepareTransactionSync({ payer,
|
|
4110
|
+
declare function prepareTransactionSync({ payer, settings, settingsAddressTreeIndex, transactionMessageBytes, signers, secp256r1VerifyInput, addressesByLookupTableAddress, cachedAccounts, compressed, simulateProof, }: CreateTransactionSyncArgs): Promise<TransactionDetails>;
|
|
4003
4111
|
|
|
4004
|
-
declare function
|
|
4112
|
+
declare function getCompressedSettingsAddress(settings: Address, settingsAddressTreeIndex?: number): Promise<{
|
|
4005
4113
|
address: bn_js;
|
|
4006
4114
|
addressTree: PublicKey;
|
|
4007
4115
|
}>;
|
|
@@ -4050,10 +4158,10 @@ declare function fetchUserAccountByFilters(domainConfigAddress: Address, { membe
|
|
|
4050
4158
|
member?: Address | Secp256r1Key | null;
|
|
4051
4159
|
credentialId?: string | null;
|
|
4052
4160
|
}): Promise<User | null>;
|
|
4053
|
-
declare function fetchSettingsAccountData(
|
|
4161
|
+
declare function fetchSettingsAccountData(settings: Address, settingsAddressTreeIndex?: number, cachedAccounts?: AccountCache): Promise<CompressedSettingsData & {
|
|
4054
4162
|
isCompressed: boolean;
|
|
4055
4163
|
}>;
|
|
4056
|
-
declare function fetchMaybeSettingsAccountData(
|
|
4164
|
+
declare function fetchMaybeSettingsAccountData(settings: Address, settingsAddressTreeIndex?: number, cachedAccounts?: AccountCache): Promise<(CompressedSettingsData & {
|
|
4057
4165
|
isCompressed: boolean;
|
|
4058
4166
|
}) | null>;
|
|
4059
4167
|
declare function fetchAllSettingsAccountByMember(member: Address | Secp256r1Key, userAddressTreeIndex?: number, cachedAccounts?: AccountCache): Promise<(CompressedSettingsData & {
|
|
@@ -4066,9 +4174,6 @@ declare function getSolanaRpcEndpoint(): string;
|
|
|
4066
4174
|
declare function getLightProtocolRpc(): Rpc;
|
|
4067
4175
|
declare function getSolanaRpc(): Rpc$1<gill.RequestAirdropApi & gill.GetAccountInfoApi & gill.GetBalanceApi & gill.GetBlockApi & gill.GetBlockCommitmentApi & gill.GetBlockHeightApi & gill.GetBlockProductionApi & gill.GetBlocksApi & gill.GetBlocksWithLimitApi & gill.GetBlockTimeApi & gill.GetClusterNodesApi & gill.GetEpochInfoApi & gill.GetEpochScheduleApi & gill.GetFeeForMessageApi & gill.GetFirstAvailableBlockApi & gill.GetGenesisHashApi & gill.GetHealthApi & gill.GetHighestSnapshotSlotApi & gill.GetIdentityApi & gill.GetInflationGovernorApi & gill.GetInflationRateApi & gill.GetInflationRewardApi & gill.GetLargestAccountsApi & gill.GetLatestBlockhashApi & gill.GetLeaderScheduleApi & gill.GetMaxRetransmitSlotApi & gill.GetMaxShredInsertSlotApi & gill.GetMinimumBalanceForRentExemptionApi & gill.GetMultipleAccountsApi & gill.GetProgramAccountsApi & gill.GetRecentPerformanceSamplesApi & gill.GetRecentPrioritizationFeesApi & gill.GetSignaturesForAddressApi & gill.GetSignatureStatusesApi & gill.GetSlotApi & gill.GetSlotLeaderApi & gill.GetSlotLeadersApi & gill.GetStakeMinimumDelegationApi & gill.GetSupplyApi & gill.GetTokenAccountBalanceApi & gill.GetTokenAccountsByDelegateApi & gill.GetTokenAccountsByOwnerApi & gill.GetTokenLargestAccountsApi & gill.GetTokenSupplyApi & gill.GetTransactionApi & gill.GetTransactionCountApi & gill.GetVersionApi & gill.GetVoteAccountsApi & gill.IsBlockhashValidApi & gill.MinimumLedgerSlotApi & gill.SendTransactionApi & gill.SimulateTransactionApi>;
|
|
4068
4176
|
declare function getSendAndConfirmTransaction(): SendAndConfirmTransactionWithSignersFunction;
|
|
4069
|
-
declare function getComputeBudgetEstimate(): (tx: BaseTransactionMessage & TransactionMessageWithFeePayer, cfg?: {
|
|
4070
|
-
commitment?: "processed" | "confirmed" | "finalized";
|
|
4071
|
-
}) => Promise<number>;
|
|
4072
4177
|
declare function getJitoTipsConfig(): {
|
|
4073
4178
|
blockEngineUrl: string;
|
|
4074
4179
|
getJitoTipsUrl: string;
|
|
@@ -4121,4 +4226,4 @@ declare function convertMemberKeyToString(memberKey: MemberKey): string;
|
|
|
4121
4226
|
declare function serializeConfigActions(configActions: ConfigAction[]): Uint8Array<ArrayBuffer>;
|
|
4122
4227
|
declare function deserializeConfigActions(bytes: Uint8Array<ArrayBuffer>): ConfigAction[];
|
|
4123
4228
|
|
|
4124
|
-
export { ADD_WHITELISTED_ADDRESS_TREES_DISCRIMINATOR, type AccountCache, type AddMemberArgs$1 as AddMemberArgs, type AddMemberArgsArgs, type AddWhitelistedAddressTreesAsyncInput, type AddWhitelistedAddressTreesInput, type AddWhitelistedAddressTreesInstruction, type AddWhitelistedAddressTreesInstructionData, type AddWhitelistedAddressTreesInstructionDataArgs, type AddWhitelistedAddressTreesInstructionExtraArgs, type AdditionalMetadata, type AdditionalMetadataArgs, AuthenticationContextSchema, BaseResponseSchema, CHANGE_CONFIG_COMPRESSED_DISCRIMINATOR, CHANGE_CONFIG_DISCRIMINATOR, CREATE_COMPRESSED_WALLET_DISCRIMINATOR, CREATE_DOMAIN_CONFIG_DISCRIMINATOR, CREATE_DOMAIN_USER_ACCOUNT_DISCRIMINATOR, CREATE_GLOBAL_COUNTER_DISCRIMINATOR, CREATE_USER_ACCOUNTS_DISCRIMINATOR, type CachedAccountData, type ChangeConfigAsyncInput, type ChangeConfigCompressedInput, type ChangeConfigCompressedInstruction, type ChangeConfigCompressedInstructionData, type ChangeConfigCompressedInstructionDataArgs, type ChangeConfigCompressedInstructionExtraArgs, type ChangeConfigInput, type ChangeConfigInstruction, type ChangeConfigInstructionData, type ChangeConfigInstructionDataArgs, type ChangeConfigInstructionExtraArgs, type CompiledInstruction, type CompiledInstructionArgs, type CompleteMessageRequest, CompleteMessageRequestSchema, type CompleteTransactionRequest, CompleteTransactionRequestSchema, type CompressedAccountMeta, type CompressedAccountMetaArgs, type CompressedAccountMetaReadOnly, type CompressedAccountMetaReadOnlyArgs, type CompressedOnlyExtension, type CompressedOnlyExtensionArgs, type CompressedProof, type CompressedProofArgs, type CompressedSettings, type CompressedSettingsArgs, type CompressedSettingsData, type CompressedSettingsDataArgs, type CompressedTokenArgs, type CompressedTokenArgsArgs, type CompressibleExtension, type CompressibleExtensionArgs, type CompressionInfo, type CompressionInfoArgs, type ConfigAction, type ConfigActionArgs, type ConfigurationArgs, type CreateCompressedWalletAsyncInput, type CreateCompressedWalletInput, type CreateCompressedWalletInstruction, type CreateCompressedWalletInstructionData, type CreateCompressedWalletInstructionDataArgs, type CreateCompressedWalletInstructionExtraArgs, type CreateDomainConfigAsyncInput, type CreateDomainConfigInput, type CreateDomainConfigInstruction, type CreateDomainConfigInstructionData, type CreateDomainConfigInstructionDataArgs, type CreateDomainConfigInstructionExtraArgs, type CreateDomainUserAccountAsyncInput, type CreateDomainUserAccountInput, type CreateDomainUserAccountInstruction, type CreateDomainUserAccountInstructionData, type CreateDomainUserAccountInstructionDataArgs, type CreateDomainUserAccountInstructionExtraArgs, type CreateGlobalCounterAsyncInput, type CreateGlobalCounterInput, type CreateGlobalCounterInstruction, type CreateGlobalCounterInstructionData, type CreateGlobalCounterInstructionDataArgs, type CreateGlobalCounterInstructionExtraArgs, type CreateUserAccountArgs, type CreateUserAccountArgsArgs, type CreateUserAccountsAsyncInput, type CreateUserAccountsInput, type CreateUserAccountsInstruction, type CreateUserAccountsInstructionData, type CreateUserAccountsInstructionDataArgs, type CreateUserAccountsInstructionExtraArgs, DECOMPRESS_SETTINGS_ACCOUNT_DISCRIMINATOR, DISABLE_DOMAIN_CONFIG_DISCRIMINATOR, DOMAIN_CONFIG_DISCRIMINATOR, type DecompressSettingsAccountInput, type DecompressSettingsAccountInstruction, type DecompressSettingsAccountInstructionData, type DecompressSettingsAccountInstructionDataArgs, type DecompressSettingsAccountInstructionExtraArgs, type DisableDomainConfigInput, type DisableDomainConfigInstruction, type DisableDomainConfigInstructionData, type DisableDomainConfigInstructionDataArgs, type DisableDomainConfigInstructionExtraArgs, type DomainConfig, type DomainConfigArgs, EDIT_DOMAIN_CONFIG_DISCRIMINATOR, EDIT_TRANSACTION_MANAGER_URL_DISCRIMINATOR, EDIT_USER_DELEGATE_DISCRIMINATOR, type EditDomainConfigAsyncInput, type EditDomainConfigInput, type EditDomainConfigInstruction, type EditDomainConfigInstructionData, type EditDomainConfigInstructionDataArgs, type EditDomainConfigInstructionExtraArgs, type EditMemberArgs$1 as EditMemberArgs, type EditMemberArgsArgs, type EditTransactionManagerUrlInput, type EditTransactionManagerUrlInstruction, type EditTransactionManagerUrlInstructionData, type EditTransactionManagerUrlInstructionDataArgs, type EditTransactionManagerUrlInstructionExtraArgs, type EditUserDelegateInput, type EditUserDelegateInstruction, type EditUserDelegateInstructionData, type EditUserDelegateInstructionDataArgs, type EditUserDelegateInstructionExtraArgs, type ExpectedSecp256r1Signers, type ExpectedSecp256r1SignersArgs, type ExtensionStruct, type ExtensionStructArgs, GLOBAL_COUNTER_DISCRIMINATOR, type GlobalCounter, type GlobalCounterArgs, type IKeyType, type IPermission, type IPermissions, type JitoTipsConfig, KeyType, type LinkWalletArgs, type LinkWalletArgsArgs, MIGRATE_COMPRESSED_SETTINGS_DISCRIMINATOR, MIGRATE_COMPRESSED_USERS_DISCRIMINATOR, MULTI_WALLET_ERROR__ALREADY_DELEGATED, MULTI_WALLET_ERROR__CLIENT_DATA_HASH_MISMATCH, MULTI_WALLET_ERROR__CLOCK_SYSVAR_ACCESS_FAILED, MULTI_WALLET_ERROR__CREDENTIAL_ID_IS_MISSING, MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_DISABLED, MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING, MULTI_WALLET_ERROR__DOMAIN_CONFIG_KEY_MISMATCH, MULTI_WALLET_ERROR__DUPLICATE_ADDRESS_TREE, MULTI_WALLET_ERROR__DUPLICATE_MEMBER, MULTI_WALLET_ERROR__DURABLE_NONCE_DETECTED, MULTI_WALLET_ERROR__EMPTY_MEMBERS, MULTI_WALLET_ERROR__EMPTY_SLOT_NUMBERS, MULTI_WALLET_ERROR__EXPECTED_ADMINISTRATOR_ROLE_MISMATCH, MULTI_WALLET_ERROR__EXPECTED_MESSAGE_HASH_MISMATCH, MULTI_WALLET_ERROR__EXPECTED_TRANSACTION_MANAGER_ROLE_MISMATCH, MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH, MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED, MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH, MULTI_WALLET_ERROR__HASH_COMPUTATION_FAILED, MULTI_WALLET_ERROR__INSUFFICIENT_SIGNERS_WITH_VOTE_PERMISSION, MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_EXECUTE_PERMISSION, MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_INITIATE_PERMISSION, MULTI_WALLET_ERROR__INVALID_ACCOUNT, MULTI_WALLET_ERROR__INVALID_ACCOUNT_INDEX, MULTI_WALLET_ERROR__INVALID_ADDRESS_TREE, MULTI_WALLET_ERROR__INVALID_ADMINISTRATOR_CONFIG, MULTI_WALLET_ERROR__INVALID_ARGUMENTS, MULTI_WALLET_ERROR__INVALID_BUFFER, MULTI_WALLET_ERROR__INVALID_MEMBER_KEY_FORMAT, MULTI_WALLET_ERROR__INVALID_NON_DELEGATED_SIGNERS, MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS, MULTI_WALLET_ERROR__INVALID_PERMANENT_MEMBER_CONFIG, MULTI_WALLET_ERROR__INVALID_SECP256R1_INSTRUCTION, MULTI_WALLET_ERROR__INVALID_SECP256R1_PUBLIC_KEY, MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG, MULTI_WALLET_ERROR__INVALID_SIGNATURE_OFFSETS, MULTI_WALLET_ERROR__INVALID_SLOT_NUMBER, MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT, MULTI_WALLET_ERROR__INVALID_THRESHOLD, MULTI_WALLET_ERROR__INVALID_TOKEN_SOURCE_TYPE, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_CONFIG, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_PERMISSION, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MESSAGE, MULTI_WALLET_ERROR__INVALID_USER_ED25519_CONFIG, MULTI_WALLET_ERROR__INVALID_USER_ROLE, MULTI_WALLET_ERROR__INVALID_USER_TRANSACTION_MANAGER_CONFIG, MULTI_WALLET_ERROR__LIGHT_CPI_ACCOUNT_ERROR, MULTI_WALLET_ERROR__MALFORMED_SIGNED_MESSAGE, MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED, MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG, MULTI_WALLET_ERROR__MEMBER_NOT_FOUND, MULTI_WALLET_ERROR__MEMBER_NOT_FOUND_IN_SETTINGS, MULTI_WALLET_ERROR__MISSING_ACCOUNT, MULTI_WALLET_ERROR__MISSING_COMPRESSED_PROOF_ARGS, MULTI_WALLET_ERROR__MISSING_COMPRESSED_TOKEN_ACCOUNT, MULTI_WALLET_ERROR__MISSING_DESTINATION_TOKEN_ACCOUNT, MULTI_WALLET_ERROR__MISSING_INSTRUCTIONS_SYSVAR, MULTI_WALLET_ERROR__MISSING_LIGHT_CPI_ACCOUNTS, MULTI_WALLET_ERROR__MISSING_MUTATION_USER_ARGS, MULTI_WALLET_ERROR__MISSING_NEW_AUTHORITY, MULTI_WALLET_ERROR__MISSING_SETTINGS_ACCOUNT_FOR_DELEGATE, MULTI_WALLET_ERROR__MISSING_SETTINGS_DATA, MULTI_WALLET_ERROR__MISSING_SOURCE_TOKEN_ACCOUNT, MULTI_WALLET_ERROR__MISSING_SPL_INTERFACE_PDA, MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY, MULTI_WALLET_ERROR__MISSING_USER_ACCOUNT_ADDRESS, MULTI_WALLET_ERROR__MISSING_WHITELISTED_ADDRESS_TREES, MULTI_WALLET_ERROR__NO_SIGNER_FOUND, MULTI_WALLET_ERROR__ONLY_ONE_ADMINISTRATOR_ALLOWED, MULTI_WALLET_ERROR__ONLY_ONE_PERMANENT_MEMBER_ALLOWED, MULTI_WALLET_ERROR__ONLY_ONE_TRANSACTION_MANAGER_ALLOWED, MULTI_WALLET_ERROR__ORIGIN_INDEX_OUT_OF_BOUNDS, MULTI_WALLET_ERROR__PAYER_MISMATCH, MULTI_WALLET_ERROR__PERMANENT_MEMBER, MULTI_WALLET_ERROR__PROTECTED_ACCOUNT, MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH, MULTI_WALLET_ERROR__SETTINGS_KEY_MISMATCH, MULTI_WALLET_ERROR__SIGNATURE_INDEX_OUT_OF_BOUNDS, MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND, MULTI_WALLET_ERROR__SOURCE_ACCOUNT_MISMATCH, MULTI_WALLET_ERROR__TOO_MANY_MEMBERS, MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED, MULTI_WALLET_ERROR__TRANSACTION_NOT_APPROVED, MULTI_WALLET_ERROR__TRANSPORTS_IS_MISSING, MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER, MULTI_WALLET_ERROR__UNAUTHORIZED_ADMIN_ONLY, MULTI_WALLET_ERROR__UNEXPECTED_SIGNER, MULTI_WALLET_PROGRAM_ADDRESS, type Member, type MemberArgs, type MemberKey, type MemberKeyArgs, type MessageAuthenticationResponse, type MigrateCompressedSettingsInput, type MigrateCompressedSettingsInstruction, type MigrateCompressedSettingsInstructionData, type MigrateCompressedSettingsInstructionDataArgs, type MigrateCompressedSettingsInstructionExtraArgs, type MigrateCompressedUsersInput, type MigrateCompressedUsersInstruction, type MigrateCompressedUsersInstructionData, type MigrateCompressedUsersInstructionDataArgs, type MigrateCompressedUsersInstructionExtraArgs, MultiWalletAccount, type MultiWalletError, MultiWalletInstruction, NATIVE_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR, NATIVE_TRANSFER_INTENT_DISCRIMINATOR, type NativeTransferIntentAsyncInput, type NativeTransferIntentCompressedInput, type NativeTransferIntentCompressedInstruction, type NativeTransferIntentCompressedInstructionData, type NativeTransferIntentCompressedInstructionDataArgs, type NativeTransferIntentCompressedInstructionExtraArgs, type NativeTransferIntentInput, type NativeTransferIntentInstruction, type NativeTransferIntentInstructionData, type NativeTransferIntentInstructionDataArgs, type NativeTransferIntentInstructionExtraArgs, type NewAuthorityArgs, type NewAuthorityArgsArgs, type PackedAddressTreeInfo, type PackedAddressTreeInfoArgs, type PackedMerkleContext, type PackedMerkleContextArgs, type PackedStateTreeInfo, type PackedStateTreeInfoArgs, type ParsedAddWhitelistedAddressTreesInstruction, type ParsedChangeConfigCompressedInstruction, type ParsedChangeConfigInstruction, type ParsedCreateCompressedWalletInstruction, type ParsedCreateDomainConfigInstruction, type ParsedCreateDomainUserAccountInstruction, type ParsedCreateGlobalCounterInstruction, type ParsedCreateUserAccountsInstruction, type ParsedDecompressSettingsAccountInstruction, type ParsedDisableDomainConfigInstruction, type ParsedEditDomainConfigInstruction, type ParsedEditTransactionManagerUrlInstruction, type ParsedEditUserDelegateInstruction, type ParsedMigrateCompressedSettingsInstruction, type ParsedMigrateCompressedUsersInstruction, type ParsedMultiWalletInstruction, type ParsedNativeTransferIntentCompressedInstruction, type ParsedNativeTransferIntentInstruction, type ParsedSecp256r1VerifyInstruction, type ParsedTokenTransferIntentCompressedInstruction, type ParsedTokenTransferIntentInstruction, type ParsedTransactionBufferCloseCompressedInstruction, type ParsedTransactionBufferCloseInstruction, type ParsedTransactionBufferCreateCompressedInstruction, type ParsedTransactionBufferCreateInstruction, type ParsedTransactionBufferExecuteCompressedInstruction, type ParsedTransactionBufferExecuteInstruction, type ParsedTransactionBufferExtendCompressedInstruction, type ParsedTransactionBufferExtendInstruction, type ParsedTransactionBufferVoteCompressedInstruction, type ParsedTransactionBufferVoteInstruction, type ParsedTransactionExecuteCompressedInstruction, type ParsedTransactionExecuteInstruction, type ParsedTransactionExecuteSyncCompressedInstruction, type ParsedTransactionExecuteSyncInstruction, type PausableAccountExtension, type PausableAccountExtensionArgs, type PermanentDelegateAccountExtension, type PermanentDelegateAccountExtensionArgs, Permission, type PermissionArgs, Permissions, type PermissionsArgs, type ProofArgs, type ProofArgsArgs, type RemoveMemberArgs$1 as RemoveMemberArgs, type RemoveMemberArgsArgs, type RentConfig, type RentConfigArgs, SETTINGS_DISCRIMINATOR, Secp256r1Key, type Secp256r1Pubkey, type Secp256r1PubkeyArgs, type Secp256r1SignatureOffsetsDataArgs, type Secp256r1VerifyArgs, type Secp256r1VerifyArgsArgs, type Secp256r1VerifyArgsWithDomainAddress, type Secp256r1VerifyArgsWithDomainAddressArgs, type Secp256r1VerifyInput, type Secp256r1VerifyInstruction, type Secp256r1VerifyInstructionData, type Secp256r1VerifyInstructionDataArgs, type Settings, type SettingsArgs, type SettingsCreationArgs, type SettingsCreationArgsArgs, type SettingsIndexWithAddress, type SettingsIndexWithAddressAndDelegateInfo, type SettingsIndexWithAddressAndDelegateInfoArgs, type SettingsIndexWithAddressArgs, type SettingsMutArgs, type SettingsMutArgsArgs, type SettingsReadonlyArgs, type SettingsReadonlyArgsArgs, SignedSecp256r1Key, type SplInterfacePdaArgs, type SplInterfacePdaArgsArgs, type StartMessageRequest, StartMessageRequestSchema, type StartTransactionRequest, StartTransactionRequestSchema, TOKEN_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR, TOKEN_TRANSFER_INTENT_DISCRIMINATOR, TRANSACTION_BUFFER_CLOSE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_CLOSE_DISCRIMINATOR, TRANSACTION_BUFFER_CREATE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_CREATE_DISCRIMINATOR, TRANSACTION_BUFFER_DISCRIMINATOR, TRANSACTION_BUFFER_EXECUTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_EXECUTE_DISCRIMINATOR, TRANSACTION_BUFFER_EXTEND_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_EXTEND_DISCRIMINATOR, TRANSACTION_BUFFER_VOTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_VOTE_DISCRIMINATOR, TRANSACTION_EXECUTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_EXECUTE_DISCRIMINATOR, TRANSACTION_EXECUTE_SYNC_COMPRESSED_DISCRIMINATOR, TRANSACTION_EXECUTE_SYNC_DISCRIMINATOR, type TokenMetadata, type TokenMetadataArgs, type TokenTransferIntentAsyncInput, type TokenTransferIntentCompressedAsyncInput, type TokenTransferIntentCompressedInput, type TokenTransferIntentCompressedInstruction, type TokenTransferIntentCompressedInstructionData, type TokenTransferIntentCompressedInstructionDataArgs, type TokenTransferIntentCompressedInstructionExtraArgs, type TokenTransferIntentInput, type TokenTransferIntentInstruction, type TokenTransferIntentInstructionData, type TokenTransferIntentInstructionDataArgs, type TokenTransferIntentInstructionExtraArgs, type TransactionActionType, TransactionActionTypeSchema, type TransactionAuthDetails, type TransactionAuthenticationResponse, type TransactionBuffer, type TransactionBufferArgs, type TransactionBufferCloseCompressedInput, type TransactionBufferCloseCompressedInstruction, type TransactionBufferCloseCompressedInstructionData, type TransactionBufferCloseCompressedInstructionDataArgs, type TransactionBufferCloseCompressedInstructionExtraArgs, type TransactionBufferCloseInput, type TransactionBufferCloseInstruction, type TransactionBufferCloseInstructionData, type TransactionBufferCloseInstructionDataArgs, type TransactionBufferCloseInstructionExtraArgs, type TransactionBufferCreateArgs, type TransactionBufferCreateArgsArgs, type TransactionBufferCreateCompressedInput, type TransactionBufferCreateCompressedInstruction, type TransactionBufferCreateCompressedInstructionData, type TransactionBufferCreateCompressedInstructionDataArgs, type TransactionBufferCreateCompressedInstructionExtraArgs, type TransactionBufferCreateInput, type TransactionBufferCreateInstruction, type TransactionBufferCreateInstructionData, type TransactionBufferCreateInstructionDataArgs, type TransactionBufferCreateInstructionExtraArgs, type TransactionBufferExecuteCompressedInput, type TransactionBufferExecuteCompressedInstruction, type TransactionBufferExecuteCompressedInstructionData, type TransactionBufferExecuteCompressedInstructionDataArgs, type TransactionBufferExecuteCompressedInstructionExtraArgs, type TransactionBufferExecuteInput, type TransactionBufferExecuteInstruction, type TransactionBufferExecuteInstructionData, type TransactionBufferExecuteInstructionDataArgs, type TransactionBufferExecuteInstructionExtraArgs, type TransactionBufferExtendCompressedInput, type TransactionBufferExtendCompressedInstruction, type TransactionBufferExtendCompressedInstructionData, type TransactionBufferExtendCompressedInstructionDataArgs, type TransactionBufferExtendCompressedInstructionExtraArgs, type TransactionBufferExtendInput, type TransactionBufferExtendInstruction, type TransactionBufferExtendInstructionData, type TransactionBufferExtendInstructionDataArgs, type TransactionBufferExtendInstructionExtraArgs, type TransactionBufferVoteCompressedInput, type TransactionBufferVoteCompressedInstruction, type TransactionBufferVoteCompressedInstructionData, type TransactionBufferVoteCompressedInstructionDataArgs, type TransactionBufferVoteCompressedInstructionExtraArgs, type TransactionBufferVoteInput, type TransactionBufferVoteInstruction, type TransactionBufferVoteInstructionData, type TransactionBufferVoteInstructionDataArgs, type TransactionBufferVoteInstructionExtraArgs, type TransactionDetails, TransactionDetailsSchema, type TransactionExecuteCompressedInput, type TransactionExecuteCompressedInstruction, type TransactionExecuteCompressedInstructionData, type TransactionExecuteCompressedInstructionDataArgs, type TransactionExecuteCompressedInstructionExtraArgs, type TransactionExecuteInput, type TransactionExecuteInstruction, type TransactionExecuteInstructionData, type TransactionExecuteInstructionDataArgs, type TransactionExecuteInstructionExtraArgs, type TransactionExecuteSyncCompressedInput, type TransactionExecuteSyncCompressedInstruction, type TransactionExecuteSyncCompressedInstructionData, type TransactionExecuteSyncCompressedInstructionDataArgs, type TransactionExecuteSyncCompressedInstructionExtraArgs, type TransactionExecuteSyncInput, type TransactionExecuteSyncInstruction, type TransactionExecuteSyncInstructionData, type TransactionExecuteSyncInstructionDataArgs, type TransactionExecuteSyncInstructionExtraArgs, type TransactionMessage, type TransactionMessageAddressTableLookup, type TransactionMessageAddressTableLookupArgs, type TransactionMessageArgs, type TransactionPayload, TransactionPayloadSchema, type TransactionPayloadWithBase64MessageBytes, TransactionPayloadWithBase64MessageBytesSchema, type TransferFeeAccountExtension, type TransferFeeAccountExtensionArgs, type TransferHookAccountExtension, type TransferHookAccountExtensionArgs, Transports, type TransportsArgs, type User, type UserArgs, type UserCreationArgs$2 as UserCreationArgs, type UserCreationArgsArgs, type UserMutArgs, type UserMutArgsArgs, type UserReadOnlyArgs, type UserReadOnlyArgsArgs, type UserReadOnlyOrMutateArgs, type UserReadOnlyOrMutateArgsArgs, UserRole, type UserRoleArgs, WHITELISTED_ADDRESS_TREE_DISCRIMINATOR, type WhitelistedAddressTree, type WhitelistedAddressTreeArgs, addWhitelistedAddressTrees, base64URLStringToBuffer, bufferToBase64URLString, changeConfig, closeTransactionBuffer, configAction, convertBase64StringToJWK, convertJWKToBase64String, convertMemberKeyToString, convertPubkeyCompressedToCose, convertPubkeyCoseToCompressed, createClientAuthorizationCompleteRequestChallenge, createClientAuthorizationStartRequestChallenge, createDomainConfig, createDomainUserAccounts, createGlobalCounter, createMessageChallenge, createTransactionBuffer, createTransactionChallenge, createTransactionManagerSigner, createUserAccounts, createWallet, decodeDomainConfig, decodeGlobalCounter, decodeSettings, decodeTransactionBuffer, decodeWhitelistedAddressTree, decompressSettingsAccount, deserializeConfigActions, disableDomainConfig, editDomainConfig, editTransactionManagerUrl, editUserDelegate, executeTransaction, executeTransactionBuffer, executeTransactionSync, extendTransactionBuffer, extensionStruct, fetchAllDomainConfig, fetchAllGlobalCounter, fetchAllMaybeDomainConfig, fetchAllMaybeGlobalCounter, fetchAllMaybeSettings, fetchAllMaybeTransactionBuffer, fetchAllMaybeWhitelistedAddressTree, fetchAllSettings, fetchAllSettingsAccountByMember, fetchAllTransactionBuffer, fetchAllWhitelistedAddressTree, fetchDomainConfig, fetchGlobalCounter, fetchMaybeDomainConfig, fetchMaybeGlobalCounter, fetchMaybeSettings, fetchMaybeSettingsAccountData, fetchMaybeTransactionBuffer, fetchMaybeUserAccountData, fetchMaybeWhitelistedAddressTree, fetchSettings, fetchSettingsAccountData, fetchTransactionBuffer, fetchUserAccountByFilters, fetchUserAccountData, fetchWhitelistedAddressTree, getAddMemberArgsCodec, getAddMemberArgsDecoder, getAddMemberArgsEncoder, getAddWhitelistedAddressTreesDiscriminatorBytes, getAddWhitelistedAddressTreesInstruction, getAddWhitelistedAddressTreesInstructionAsync, getAddWhitelistedAddressTreesInstructionDataCodec, getAddWhitelistedAddressTreesInstructionDataDecoder, getAddWhitelistedAddressTreesInstructionDataEncoder, getAdditionalMetadataCodec, getAdditionalMetadataDecoder, getAdditionalMetadataEncoder, getChangeConfigCompressedDiscriminatorBytes, getChangeConfigCompressedInstruction, getChangeConfigCompressedInstructionDataCodec, getChangeConfigCompressedInstructionDataDecoder, getChangeConfigCompressedInstructionDataEncoder, getChangeConfigDiscriminatorBytes, getChangeConfigInstruction, getChangeConfigInstructionAsync, getChangeConfigInstructionDataCodec, getChangeConfigInstructionDataDecoder, getChangeConfigInstructionDataEncoder, getClientAndDeviceHash, getCompiledInstructionCodec, getCompiledInstructionDecoder, getCompiledInstructionEncoder, getCompressedAccountMetaCodec, getCompressedAccountMetaDecoder, getCompressedAccountMetaEncoder, getCompressedAccountMetaReadOnlyCodec, getCompressedAccountMetaReadOnlyDecoder, getCompressedAccountMetaReadOnlyEncoder, getCompressedOnlyExtensionCodec, getCompressedOnlyExtensionDecoder, getCompressedOnlyExtensionEncoder, getCompressedProofCodec, getCompressedProofDecoder, getCompressedProofEncoder, getCompressedSettingsAddressFromIndex, getCompressedSettingsCodec, getCompressedSettingsDataCodec, getCompressedSettingsDataDecoder, getCompressedSettingsDataEncoder, getCompressedSettingsDecoder, getCompressedSettingsEncoder, getCompressedTokenArgsCodec, getCompressedTokenArgsDecoder, getCompressedTokenArgsEncoder, getCompressibleExtensionCodec, getCompressibleExtensionDecoder, getCompressibleExtensionEncoder, getCompressionInfoCodec, getCompressionInfoDecoder, getCompressionInfoEncoder, getComputeBudgetEstimate, getConfigActionCodec, getConfigActionDecoder, getConfigActionEncoder, getCreateCompressedWalletDiscriminatorBytes, getCreateCompressedWalletInstruction, getCreateCompressedWalletInstructionAsync, getCreateCompressedWalletInstructionDataCodec, getCreateCompressedWalletInstructionDataDecoder, getCreateCompressedWalletInstructionDataEncoder, getCreateDomainConfigDiscriminatorBytes, getCreateDomainConfigInstruction, getCreateDomainConfigInstructionAsync, getCreateDomainConfigInstructionDataCodec, getCreateDomainConfigInstructionDataDecoder, getCreateDomainConfigInstructionDataEncoder, getCreateDomainUserAccountDiscriminatorBytes, getCreateDomainUserAccountInstruction, getCreateDomainUserAccountInstructionAsync, getCreateDomainUserAccountInstructionDataCodec, getCreateDomainUserAccountInstructionDataDecoder, getCreateDomainUserAccountInstructionDataEncoder, getCreateGlobalCounterDiscriminatorBytes, getCreateGlobalCounterInstruction, getCreateGlobalCounterInstructionAsync, getCreateGlobalCounterInstructionDataCodec, getCreateGlobalCounterInstructionDataDecoder, getCreateGlobalCounterInstructionDataEncoder, getCreateUserAccountArgsCodec, getCreateUserAccountArgsDecoder, getCreateUserAccountArgsEncoder, getCreateUserAccountsDiscriminatorBytes, getCreateUserAccountsInstruction, getCreateUserAccountsInstructionAsync, getCreateUserAccountsInstructionDataCodec, getCreateUserAccountsInstructionDataDecoder, getCreateUserAccountsInstructionDataEncoder, getDecompressSettingsAccountDiscriminatorBytes, getDecompressSettingsAccountInstruction, getDecompressSettingsAccountInstructionDataCodec, getDecompressSettingsAccountInstructionDataDecoder, getDecompressSettingsAccountInstructionDataEncoder, getDisableDomainConfigDiscriminatorBytes, getDisableDomainConfigInstruction, getDisableDomainConfigInstructionDataCodec, getDisableDomainConfigInstructionDataDecoder, getDisableDomainConfigInstructionDataEncoder, getDomainConfigAddress, getDomainConfigCodec, getDomainConfigDecoder, getDomainConfigDiscriminatorBytes, getDomainConfigEncoder, getDomainConfigSize, getEditDomainConfigDiscriminatorBytes, getEditDomainConfigInstruction, getEditDomainConfigInstructionAsync, getEditDomainConfigInstructionDataCodec, getEditDomainConfigInstructionDataDecoder, getEditDomainConfigInstructionDataEncoder, getEditMemberArgsCodec, getEditMemberArgsDecoder, getEditMemberArgsEncoder, getEditTransactionManagerUrlDiscriminatorBytes, getEditTransactionManagerUrlInstruction, getEditTransactionManagerUrlInstructionDataCodec, getEditTransactionManagerUrlInstructionDataDecoder, getEditTransactionManagerUrlInstructionDataEncoder, getEditUserDelegateDiscriminatorBytes, getEditUserDelegateInstruction, getEditUserDelegateInstructionDataCodec, getEditUserDelegateInstructionDataDecoder, getEditUserDelegateInstructionDataEncoder, getExpectedSecp256r1SignersCodec, getExpectedSecp256r1SignersDecoder, getExpectedSecp256r1SignersEncoder, getExtensionStructCodec, getExtensionStructDecoder, getExtensionStructEncoder, getGlobalCounterAddress, getGlobalCounterCodec, getGlobalCounterDecoder, getGlobalCounterDiscriminatorBytes, getGlobalCounterEncoder, getGlobalCounterSize, getJitoTipsConfig, getLightCpiSigner, getLightProtocolRpc, getLinkWalletArgsCodec, getLinkWalletArgsDecoder, getLinkWalletArgsEncoder, getMemberCodec, getMemberDecoder, getMemberEncoder, getMemberKeyCodec, getMemberKeyDecoder, getMemberKeyEncoder, getMigrateCompressedSettingsDiscriminatorBytes, getMigrateCompressedSettingsInstruction, getMigrateCompressedSettingsInstructionDataCodec, getMigrateCompressedSettingsInstructionDataDecoder, getMigrateCompressedSettingsInstructionDataEncoder, getMigrateCompressedUsersDiscriminatorBytes, getMigrateCompressedUsersInstruction, getMigrateCompressedUsersInstructionDataCodec, getMigrateCompressedUsersInstructionDataDecoder, getMigrateCompressedUsersInstructionDataEncoder, getMultiWalletErrorMessage, getNativeTransferIntentCompressedDiscriminatorBytes, getNativeTransferIntentCompressedInstruction, getNativeTransferIntentCompressedInstructionDataCodec, getNativeTransferIntentCompressedInstructionDataDecoder, getNativeTransferIntentCompressedInstructionDataEncoder, getNativeTransferIntentDiscriminatorBytes, getNativeTransferIntentInstruction, getNativeTransferIntentInstructionAsync, getNativeTransferIntentInstructionDataCodec, getNativeTransferIntentInstructionDataDecoder, getNativeTransferIntentInstructionDataEncoder, getNewAuthorityArgsCodec, getNewAuthorityArgsDecoder, getNewAuthorityArgsEncoder, getOriginIndex, getPackedAddressTreeInfoCodec, getPackedAddressTreeInfoDecoder, getPackedAddressTreeInfoEncoder, getPackedMerkleContextCodec, getPackedMerkleContextDecoder, getPackedMerkleContextEncoder, getPackedStateTreeInfoCodec, getPackedStateTreeInfoDecoder, getPackedStateTreeInfoEncoder, getPausableAccountExtensionCodec, getPausableAccountExtensionDecoder, getPausableAccountExtensionEncoder, getPermanentDelegateAccountExtensionCodec, getPermanentDelegateAccountExtensionDecoder, getPermanentDelegateAccountExtensionEncoder, getPermissionsCodec, getPermissionsDecoder, getPermissionsEncoder, getProofArgsCodec, getProofArgsDecoder, getProofArgsEncoder, getRemoveMemberArgsCodec, getRemoveMemberArgsDecoder, getRemoveMemberArgsEncoder, getRentConfigCodec, getRentConfigDecoder, getRentConfigEncoder, getSecp256r1MessageHash, getSecp256r1PubkeyCodec, getSecp256r1PubkeyDecoder, getSecp256r1PubkeyEncoder, getSecp256r1SignatureOffsetsDataDecoder, getSecp256r1SignatureOffsetsDataEncoder, getSecp256r1VerifyArgsCodec, getSecp256r1VerifyArgsDecoder, getSecp256r1VerifyArgsEncoder, getSecp256r1VerifyArgsWithDomainAddressCodec, getSecp256r1VerifyArgsWithDomainAddressDecoder, getSecp256r1VerifyArgsWithDomainAddressEncoder, getSecp256r1VerifyInstruction, getSecp256r1VerifyInstructionDataCodec, getSecp256r1VerifyInstructionDataDecoder, getSecp256r1VerifyInstructionDataEncoder, getSendAndConfirmTransaction, getSettingsCodec, getSettingsCreationArgsCodec, getSettingsCreationArgsDecoder, getSettingsCreationArgsEncoder, getSettingsDecoder, getSettingsDiscriminatorBytes, getSettingsEncoder, getSettingsFromIndex, getSettingsIndexWithAddressAndDelegateInfoCodec, getSettingsIndexWithAddressAndDelegateInfoDecoder, getSettingsIndexWithAddressAndDelegateInfoEncoder, getSettingsIndexWithAddressCodec, getSettingsIndexWithAddressDecoder, getSettingsIndexWithAddressEncoder, getSettingsMutArgsCodec, getSettingsMutArgsDecoder, getSettingsMutArgsEncoder, getSettingsReadonlyArgsCodec, getSettingsReadonlyArgsDecoder, getSettingsReadonlyArgsEncoder, getSignedSecp256r1Key, getSignedTransactionManager, getSolanaRpc, getSolanaRpcEndpoint, getSplInterfacePdaArgsCodec, getSplInterfacePdaArgsDecoder, getSplInterfacePdaArgsEncoder, getTokenMetadataCodec, getTokenMetadataDecoder, getTokenMetadataEncoder, getTokenTransferIntentCompressedDiscriminatorBytes, getTokenTransferIntentCompressedInstruction, getTokenTransferIntentCompressedInstructionAsync, getTokenTransferIntentCompressedInstructionDataCodec, getTokenTransferIntentCompressedInstructionDataDecoder, getTokenTransferIntentCompressedInstructionDataEncoder, getTokenTransferIntentDiscriminatorBytes, getTokenTransferIntentInstruction, getTokenTransferIntentInstructionAsync, getTokenTransferIntentInstructionDataCodec, getTokenTransferIntentInstructionDataDecoder, getTokenTransferIntentInstructionDataEncoder, getTransactionBufferAddress, getTransactionBufferCloseCompressedDiscriminatorBytes, getTransactionBufferCloseCompressedInstruction, getTransactionBufferCloseCompressedInstructionDataCodec, getTransactionBufferCloseCompressedInstructionDataDecoder, getTransactionBufferCloseCompressedInstructionDataEncoder, getTransactionBufferCloseDiscriminatorBytes, getTransactionBufferCloseInstruction, getTransactionBufferCloseInstructionDataCodec, getTransactionBufferCloseInstructionDataDecoder, getTransactionBufferCloseInstructionDataEncoder, getTransactionBufferCodec, getTransactionBufferCreateArgsCodec, getTransactionBufferCreateArgsDecoder, getTransactionBufferCreateArgsEncoder, getTransactionBufferCreateCompressedDiscriminatorBytes, getTransactionBufferCreateCompressedInstruction, getTransactionBufferCreateCompressedInstructionDataCodec, getTransactionBufferCreateCompressedInstructionDataDecoder, getTransactionBufferCreateCompressedInstructionDataEncoder, getTransactionBufferCreateDiscriminatorBytes, getTransactionBufferCreateInstruction, getTransactionBufferCreateInstructionDataCodec, getTransactionBufferCreateInstructionDataDecoder, getTransactionBufferCreateInstructionDataEncoder, getTransactionBufferDecoder, getTransactionBufferDiscriminatorBytes, getTransactionBufferEncoder, getTransactionBufferExecuteCompressedDiscriminatorBytes, getTransactionBufferExecuteCompressedInstruction, getTransactionBufferExecuteCompressedInstructionDataCodec, getTransactionBufferExecuteCompressedInstructionDataDecoder, getTransactionBufferExecuteCompressedInstructionDataEncoder, getTransactionBufferExecuteDiscriminatorBytes, getTransactionBufferExecuteInstruction, getTransactionBufferExecuteInstructionDataCodec, getTransactionBufferExecuteInstructionDataDecoder, getTransactionBufferExecuteInstructionDataEncoder, getTransactionBufferExtendCompressedDiscriminatorBytes, getTransactionBufferExtendCompressedInstruction, getTransactionBufferExtendCompressedInstructionDataCodec, getTransactionBufferExtendCompressedInstructionDataDecoder, getTransactionBufferExtendCompressedInstructionDataEncoder, getTransactionBufferExtendDiscriminatorBytes, getTransactionBufferExtendInstruction, getTransactionBufferExtendInstructionDataCodec, getTransactionBufferExtendInstructionDataDecoder, getTransactionBufferExtendInstructionDataEncoder, getTransactionBufferVoteCompressedDiscriminatorBytes, getTransactionBufferVoteCompressedInstruction, getTransactionBufferVoteCompressedInstructionDataCodec, getTransactionBufferVoteCompressedInstructionDataDecoder, getTransactionBufferVoteCompressedInstructionDataEncoder, getTransactionBufferVoteDiscriminatorBytes, getTransactionBufferVoteInstruction, getTransactionBufferVoteInstructionDataCodec, getTransactionBufferVoteInstructionDataDecoder, getTransactionBufferVoteInstructionDataEncoder, getTransactionExecuteCompressedDiscriminatorBytes, getTransactionExecuteCompressedInstruction, getTransactionExecuteCompressedInstructionDataCodec, getTransactionExecuteCompressedInstructionDataDecoder, getTransactionExecuteCompressedInstructionDataEncoder, getTransactionExecuteDiscriminatorBytes, getTransactionExecuteInstruction, getTransactionExecuteInstructionDataCodec, getTransactionExecuteInstructionDataDecoder, getTransactionExecuteInstructionDataEncoder, getTransactionExecuteSyncCompressedDiscriminatorBytes, getTransactionExecuteSyncCompressedInstruction, getTransactionExecuteSyncCompressedInstructionDataCodec, getTransactionExecuteSyncCompressedInstructionDataDecoder, getTransactionExecuteSyncCompressedInstructionDataEncoder, getTransactionExecuteSyncDiscriminatorBytes, getTransactionExecuteSyncInstruction, getTransactionExecuteSyncInstructionDataCodec, getTransactionExecuteSyncInstructionDataDecoder, getTransactionExecuteSyncInstructionDataEncoder, getTransactionMessageAddressTableLookupCodec, getTransactionMessageAddressTableLookupDecoder, getTransactionMessageAddressTableLookupEncoder, getTransactionMessageCodec, getTransactionMessageDecoder, getTransactionMessageEncoder, getTransferFeeAccountExtensionCodec, getTransferFeeAccountExtensionDecoder, getTransferFeeAccountExtensionEncoder, getTransferHookAccountExtensionCodec, getTransferHookAccountExtensionDecoder, getTransferHookAccountExtensionEncoder, getTransportsCodec, getTransportsDecoder, getTransportsEncoder, getUserAccountAddress, getUserCodec, getUserCreationArgsCodec, getUserCreationArgsDecoder, getUserCreationArgsEncoder, getUserDecoder, getUserEncoder, getUserMutArgsCodec, getUserMutArgsDecoder, getUserMutArgsEncoder, getUserReadOnlyArgsCodec, getUserReadOnlyArgsDecoder, getUserReadOnlyArgsEncoder, getUserReadOnlyOrMutateArgsCodec, getUserReadOnlyOrMutateArgsDecoder, getUserReadOnlyOrMutateArgsEncoder, getUserRoleCodec, getUserRoleDecoder, getUserRoleEncoder, getWalletAddressFromIndex, getWalletAddressFromSettings, getWhitelistedAddressTreeCodec, getWhitelistedAddressTreeDecoder, getWhitelistedAddressTreeDiscriminatorBytes, getWhitelistedAddressTreeEncoder, getWhitelistedAddressTreeFromIndex, getWhitelistedAddressTreeIndexFromAddress, getWhitelistedAddressTreesAddress, identifyMultiWalletAccount, identifyMultiWalletInstruction, initialize, isConfigAction, isExtensionStruct, isMultiWalletError, isUserReadOnlyOrMutateArgs, migrateSettings, migrateUsers, nativeTransferIntent, parseAddWhitelistedAddressTreesInstruction, parseChangeConfigCompressedInstruction, parseChangeConfigInstruction, parseCreateCompressedWalletInstruction, parseCreateDomainConfigInstruction, parseCreateDomainUserAccountInstruction, parseCreateGlobalCounterInstruction, parseCreateUserAccountsInstruction, parseDecompressSettingsAccountInstruction, parseDisableDomainConfigInstruction, parseEditDomainConfigInstruction, parseEditTransactionManagerUrlInstruction, parseEditUserDelegateInstruction, parseMigrateCompressedSettingsInstruction, parseMigrateCompressedUsersInstruction, parseNativeTransferIntentCompressedInstruction, parseNativeTransferIntentInstruction, parseSecp256r1VerifyInstruction, parseTokenTransferIntentCompressedInstruction, parseTokenTransferIntentInstruction, parseTransactionBufferCloseCompressedInstruction, parseTransactionBufferCloseInstruction, parseTransactionBufferCreateCompressedInstruction, parseTransactionBufferCreateInstruction, parseTransactionBufferExecuteCompressedInstruction, parseTransactionBufferExecuteInstruction, parseTransactionBufferExtendCompressedInstruction, parseTransactionBufferExtendInstruction, parseTransactionBufferVoteCompressedInstruction, parseTransactionBufferVoteInstruction, parseTransactionExecuteCompressedInstruction, parseTransactionExecuteInstruction, parseTransactionExecuteSyncCompressedInstruction, parseTransactionExecuteSyncInstruction, pollJitoBundleConfirmation, prepareChangeConfigArgs, prepareTransactionBundle, prepareTransactionMessage, prepareTransactionSync, retrieveTransactionManager, sendJitoBundle, serializeConfigActions, signAndSendBundledTransactions, signAndSendTransaction, tokenTransferIntent, userReadOnlyOrMutateArgs, vaultTransactionMessageDeserialize, vaultTransactionMessageSerialize, voteTransactionBuffer };
|
|
4229
|
+
export { ADD_WHITELISTED_ADDRESS_TREES_DISCRIMINATOR, type AccountCache, type AddMemberArgs$1 as AddMemberArgs, type AddMemberArgsArgs, type AddWhitelistedAddressTreesAsyncInput, type AddWhitelistedAddressTreesInput, type AddWhitelistedAddressTreesInstruction, type AddWhitelistedAddressTreesInstructionData, type AddWhitelistedAddressTreesInstructionDataArgs, type AddWhitelistedAddressTreesInstructionExtraArgs, type AdditionalMetadata, type AdditionalMetadataArgs, AuthenticationContextSchema, BaseResponseSchema, CHANGE_CONFIG_COMPRESSED_DISCRIMINATOR, CHANGE_CONFIG_DISCRIMINATOR, CREATE_COMPRESSED_WALLET_DISCRIMINATOR, CREATE_DOMAIN_CONFIG_DISCRIMINATOR, CREATE_DOMAIN_USER_ACCOUNT_DISCRIMINATOR, CREATE_GLOBAL_COUNTER_DISCRIMINATOR, CREATE_USER_ACCOUNTS_DISCRIMINATOR, type CachedAccountData, type ChangeConfigCompressedInput, type ChangeConfigCompressedInstruction, type ChangeConfigCompressedInstructionData, type ChangeConfigCompressedInstructionDataArgs, type ChangeConfigCompressedInstructionExtraArgs, type ChangeConfigInput, type ChangeConfigInstruction, type ChangeConfigInstructionData, type ChangeConfigInstructionDataArgs, type ChangeConfigInstructionExtraArgs, type CompiledInstruction, type CompiledInstructionArgs, type CompleteMessageRequest, CompleteMessageRequestSchema, type CompleteSendTransactionRequest, CompleteSendTransactionRequestSchema, type CompleteTransactionRequest, CompleteTransactionRequestSchema, type CompressedAccountMeta, type CompressedAccountMetaArgs, type CompressedAccountMetaReadOnly, type CompressedAccountMetaReadOnlyArgs, type CompressedOnlyExtension, type CompressedOnlyExtensionArgs, type CompressedProof, type CompressedProofArgs, type CompressedSettings, type CompressedSettingsArgs, type CompressedSettingsData, type CompressedSettingsDataArgs, type CompressedTokenArgs, type CompressedTokenArgsArgs, type CompressibleExtension, type CompressibleExtensionArgs, type CompressionInfo, type CompressionInfoArgs, type ConfigAction, type ConfigActionArgs, type ConfigurationArgs, type CreateCompressedWalletAsyncInput, type CreateCompressedWalletInput, type CreateCompressedWalletInstruction, type CreateCompressedWalletInstructionData, type CreateCompressedWalletInstructionDataArgs, type CreateCompressedWalletInstructionExtraArgs, type CreateDomainConfigAsyncInput, type CreateDomainConfigInput, type CreateDomainConfigInstruction, type CreateDomainConfigInstructionData, type CreateDomainConfigInstructionDataArgs, type CreateDomainConfigInstructionExtraArgs, type CreateDomainUserAccountAsyncInput, type CreateDomainUserAccountInput, type CreateDomainUserAccountInstruction, type CreateDomainUserAccountInstructionData, type CreateDomainUserAccountInstructionDataArgs, type CreateDomainUserAccountInstructionExtraArgs, type CreateGlobalCounterAsyncInput, type CreateGlobalCounterInput, type CreateGlobalCounterInstruction, type CreateGlobalCounterInstructionData, type CreateGlobalCounterInstructionDataArgs, type CreateGlobalCounterInstructionExtraArgs, type CreateUserAccountArgs, type CreateUserAccountArgsArgs, type CreateUserAccountsAsyncInput, type CreateUserAccountsInput, type CreateUserAccountsInstruction, type CreateUserAccountsInstructionData, type CreateUserAccountsInstructionDataArgs, type CreateUserAccountsInstructionExtraArgs, DECOMPRESS_SETTINGS_ACCOUNT_DISCRIMINATOR, DISABLE_DOMAIN_CONFIG_DISCRIMINATOR, DOMAIN_CONFIG_DISCRIMINATOR, type DecompressSettingsAccountInput, type DecompressSettingsAccountInstruction, type DecompressSettingsAccountInstructionData, type DecompressSettingsAccountInstructionDataArgs, type DecompressSettingsAccountInstructionExtraArgs, type DisableDomainConfigInput, type DisableDomainConfigInstruction, type DisableDomainConfigInstructionData, type DisableDomainConfigInstructionDataArgs, type DisableDomainConfigInstructionExtraArgs, type DomainConfig, type DomainConfigArgs, EDIT_DOMAIN_CONFIG_DISCRIMINATOR, EDIT_TRANSACTION_MANAGER_URL_DISCRIMINATOR, EDIT_USER_DELEGATE_DISCRIMINATOR, type EditDomainConfigAsyncInput, type EditDomainConfigInput, type EditDomainConfigInstruction, type EditDomainConfigInstructionData, type EditDomainConfigInstructionDataArgs, type EditDomainConfigInstructionExtraArgs, type EditMemberArgs$1 as EditMemberArgs, type EditMemberArgsArgs, type EditTransactionManagerUrlInput, type EditTransactionManagerUrlInstruction, type EditTransactionManagerUrlInstructionData, type EditTransactionManagerUrlInstructionDataArgs, type EditTransactionManagerUrlInstructionExtraArgs, type EditUserDelegateInput, type EditUserDelegateInstruction, type EditUserDelegateInstructionData, type EditUserDelegateInstructionDataArgs, type EditUserDelegateInstructionExtraArgs, type ExpectedSecp256r1Signers, type ExpectedSecp256r1SignersArgs, type ExtensionStruct, type ExtensionStructArgs, GLOBAL_COUNTER_DISCRIMINATOR, type GlobalCounter, type GlobalCounterArgs, type IKeyType, type IPermission, type IPermissions, type JitoTipsConfig, KeyType, type LinkWalletArgs, type LinkWalletArgsArgs, MIGRATE_COMPRESSED_SETTINGS_DISCRIMINATOR, MIGRATE_COMPRESSED_USERS_DISCRIMINATOR, MULTI_WALLET_ERROR__ALREADY_DELEGATED, MULTI_WALLET_ERROR__CLIENT_DATA_HASH_MISMATCH, MULTI_WALLET_ERROR__CLOCK_SYSVAR_ACCESS_FAILED, MULTI_WALLET_ERROR__CREDENTIAL_ID_IS_MISSING, MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_DISABLED, MULTI_WALLET_ERROR__DOMAIN_CONFIG_IS_MISSING, MULTI_WALLET_ERROR__DOMAIN_CONFIG_KEY_MISMATCH, MULTI_WALLET_ERROR__DUPLICATE_ADDRESS_TREE, MULTI_WALLET_ERROR__DUPLICATE_MEMBER, MULTI_WALLET_ERROR__DURABLE_NONCE_DETECTED, MULTI_WALLET_ERROR__EMPTY_MEMBERS, MULTI_WALLET_ERROR__EMPTY_SLOT_NUMBERS, MULTI_WALLET_ERROR__EXPECTED_ADMINISTRATOR_ROLE_MISMATCH, MULTI_WALLET_ERROR__EXPECTED_MESSAGE_HASH_MISMATCH, MULTI_WALLET_ERROR__EXPECTED_TRANSACTION_MANAGER_ROLE_MISMATCH, MULTI_WALLET_ERROR__FINAL_BUFFER_HASH_MISMATCH, MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_EXCEEDED, MULTI_WALLET_ERROR__FINAL_BUFFER_SIZE_MISMATCH, MULTI_WALLET_ERROR__HASH_COMPUTATION_FAILED, MULTI_WALLET_ERROR__INSUFFICIENT_SIGNERS_WITH_VOTE_PERMISSION, MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_EXECUTE_PERMISSION, MULTI_WALLET_ERROR__INSUFFICIENT_SIGNER_WITH_INITIATE_PERMISSION, MULTI_WALLET_ERROR__INVALID_ACCOUNT, MULTI_WALLET_ERROR__INVALID_ACCOUNT_INDEX, MULTI_WALLET_ERROR__INVALID_ADDRESS_TREE, MULTI_WALLET_ERROR__INVALID_ADMINISTRATOR_CONFIG, MULTI_WALLET_ERROR__INVALID_ARGUMENTS, MULTI_WALLET_ERROR__INVALID_BUFFER, MULTI_WALLET_ERROR__INVALID_MEMBER_KEY_FORMAT, MULTI_WALLET_ERROR__INVALID_NON_DELEGATED_SIGNERS, MULTI_WALLET_ERROR__INVALID_NUMBER_OF_ACCOUNTS, MULTI_WALLET_ERROR__INVALID_PERMANENT_MEMBER_CONFIG, MULTI_WALLET_ERROR__INVALID_SECP256R1_INSTRUCTION, MULTI_WALLET_ERROR__INVALID_SECP256R1_PUBLIC_KEY, MULTI_WALLET_ERROR__INVALID_SECP256R1_VERIFY_ARG, MULTI_WALLET_ERROR__INVALID_SIGNATURE_OFFSETS, MULTI_WALLET_ERROR__INVALID_SLOT_NUMBER, MULTI_WALLET_ERROR__INVALID_SYSVAR_DATA_FORMAT, MULTI_WALLET_ERROR__INVALID_THRESHOLD, MULTI_WALLET_ERROR__INVALID_TOKEN_SOURCE_TYPE, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_CONFIG, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MANAGER_PERMISSION, MULTI_WALLET_ERROR__INVALID_TRANSACTION_MESSAGE, MULTI_WALLET_ERROR__INVALID_USER_ED25519_CONFIG, MULTI_WALLET_ERROR__INVALID_USER_ROLE, MULTI_WALLET_ERROR__INVALID_USER_TRANSACTION_MANAGER_CONFIG, MULTI_WALLET_ERROR__LIGHT_CPI_ACCOUNT_ERROR, MULTI_WALLET_ERROR__MALFORMED_SIGNED_MESSAGE, MULTI_WALLET_ERROR__MAX_LENGTH_EXCEEDED, MULTI_WALLET_ERROR__MEMBER_DOES_NOT_BELONG_TO_DOMAIN_CONFIG, MULTI_WALLET_ERROR__MEMBER_NOT_FOUND, MULTI_WALLET_ERROR__MEMBER_NOT_FOUND_IN_SETTINGS, MULTI_WALLET_ERROR__MISSING_ACCOUNT, MULTI_WALLET_ERROR__MISSING_COMPRESSED_PROOF_ARGS, MULTI_WALLET_ERROR__MISSING_COMPRESSED_TOKEN_ACCOUNT, MULTI_WALLET_ERROR__MISSING_DESTINATION_TOKEN_ACCOUNT, MULTI_WALLET_ERROR__MISSING_INSTRUCTIONS_SYSVAR, MULTI_WALLET_ERROR__MISSING_LIGHT_CPI_ACCOUNTS, MULTI_WALLET_ERROR__MISSING_MUTATION_USER_ARGS, MULTI_WALLET_ERROR__MISSING_NEW_AUTHORITY, MULTI_WALLET_ERROR__MISSING_SETTINGS_ACCOUNT_FOR_DELEGATE, MULTI_WALLET_ERROR__MISSING_SETTINGS_DATA, MULTI_WALLET_ERROR__MISSING_SOURCE_TOKEN_ACCOUNT, MULTI_WALLET_ERROR__MISSING_SPL_INTERFACE_PDA, MULTI_WALLET_ERROR__MISSING_SYSVAR_SLOT_HISTORY, MULTI_WALLET_ERROR__MISSING_USER_ACCOUNT_ADDRESS, MULTI_WALLET_ERROR__MISSING_WHITELISTED_ADDRESS_TREES, MULTI_WALLET_ERROR__NO_SIGNER_FOUND, MULTI_WALLET_ERROR__ONLY_ONE_ADMINISTRATOR_ALLOWED, MULTI_WALLET_ERROR__ONLY_ONE_PERMANENT_MEMBER_ALLOWED, MULTI_WALLET_ERROR__ONLY_ONE_TRANSACTION_MANAGER_ALLOWED, MULTI_WALLET_ERROR__ORIGIN_INDEX_OUT_OF_BOUNDS, MULTI_WALLET_ERROR__PAYER_MISMATCH, MULTI_WALLET_ERROR__PERMANENT_MEMBER, MULTI_WALLET_ERROR__PROTECTED_ACCOUNT, MULTI_WALLET_ERROR__RP_ID_HASH_MISMATCH, MULTI_WALLET_ERROR__SETTINGS_KEY_MISMATCH, MULTI_WALLET_ERROR__SIGNATURE_INDEX_OUT_OF_BOUNDS, MULTI_WALLET_ERROR__SLOT_NUMBER_NOT_FOUND, MULTI_WALLET_ERROR__SOURCE_ACCOUNT_MISMATCH, MULTI_WALLET_ERROR__TOO_MANY_MEMBERS, MULTI_WALLET_ERROR__TRANSACTION_HAS_EXPIRED, MULTI_WALLET_ERROR__TRANSACTION_NOT_APPROVED, MULTI_WALLET_ERROR__TRANSPORTS_IS_MISSING, MULTI_WALLET_ERROR__UNAUTHORISED_TO_CLOSE_TRANSACTION_BUFFER, MULTI_WALLET_ERROR__UNAUTHORIZED_ADMIN_ONLY, MULTI_WALLET_ERROR__UNEXPECTED_SIGNER, MULTI_WALLET_PROGRAM_ADDRESS, type Member, type MemberArgs, type MemberKey, type MemberKeyArgs, type MessageAuthenticationResponse, type MigrateCompressedSettingsInput, type MigrateCompressedSettingsInstruction, type MigrateCompressedSettingsInstructionData, type MigrateCompressedSettingsInstructionDataArgs, type MigrateCompressedSettingsInstructionExtraArgs, type MigrateCompressedUsersInput, type MigrateCompressedUsersInstruction, type MigrateCompressedUsersInstructionData, type MigrateCompressedUsersInstructionDataArgs, type MigrateCompressedUsersInstructionExtraArgs, MultiWalletAccount, type MultiWalletError, MultiWalletInstruction, NATIVE_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR, NATIVE_TRANSFER_INTENT_DISCRIMINATOR, type NativeTransferIntentAsyncInput, type NativeTransferIntentCompressedInput, type NativeTransferIntentCompressedInstruction, type NativeTransferIntentCompressedInstructionData, type NativeTransferIntentCompressedInstructionDataArgs, type NativeTransferIntentCompressedInstructionExtraArgs, type NativeTransferIntentInput, type NativeTransferIntentInstruction, type NativeTransferIntentInstructionData, type NativeTransferIntentInstructionDataArgs, type NativeTransferIntentInstructionExtraArgs, type NewAuthorityArgs, type NewAuthorityArgsArgs, type PackedAddressTreeInfo, type PackedAddressTreeInfoArgs, type PackedMerkleContext, type PackedMerkleContextArgs, type PackedStateTreeInfo, type PackedStateTreeInfoArgs, type ParsedAddWhitelistedAddressTreesInstruction, type ParsedChangeConfigCompressedInstruction, type ParsedChangeConfigInstruction, type ParsedCreateCompressedWalletInstruction, type ParsedCreateDomainConfigInstruction, type ParsedCreateDomainUserAccountInstruction, type ParsedCreateGlobalCounterInstruction, type ParsedCreateUserAccountsInstruction, type ParsedDecompressSettingsAccountInstruction, type ParsedDisableDomainConfigInstruction, type ParsedEditDomainConfigInstruction, type ParsedEditTransactionManagerUrlInstruction, type ParsedEditUserDelegateInstruction, type ParsedMigrateCompressedSettingsInstruction, type ParsedMigrateCompressedUsersInstruction, type ParsedMultiWalletInstruction, type ParsedNativeTransferIntentCompressedInstruction, type ParsedNativeTransferIntentInstruction, type ParsedSecp256r1VerifyInstruction, type ParsedTokenTransferIntentCompressedInstruction, type ParsedTokenTransferIntentInstruction, type ParsedTransactionBufferCloseCompressedInstruction, type ParsedTransactionBufferCloseInstruction, type ParsedTransactionBufferCreateCompressedInstruction, type ParsedTransactionBufferCreateInstruction, type ParsedTransactionBufferExecuteCompressedInstruction, type ParsedTransactionBufferExecuteInstruction, type ParsedTransactionBufferExtendCompressedInstruction, type ParsedTransactionBufferExtendInstruction, type ParsedTransactionBufferVoteCompressedInstruction, type ParsedTransactionBufferVoteInstruction, type ParsedTransactionExecuteCompressedInstruction, type ParsedTransactionExecuteInstruction, type ParsedTransactionExecuteSyncCompressedInstruction, type ParsedTransactionExecuteSyncInstruction, type PausableAccountExtension, type PausableAccountExtensionArgs, type PermanentDelegateAccountExtension, type PermanentDelegateAccountExtensionArgs, Permission, type PermissionArgs, Permissions, type PermissionsArgs, type ProofArgs, type ProofArgsArgs, type RemoveMemberArgs$1 as RemoveMemberArgs, type RemoveMemberArgsArgs, type RentConfig, type RentConfigArgs, SETTINGS_DISCRIMINATOR, Secp256r1Key, type Secp256r1Pubkey, type Secp256r1PubkeyArgs, type Secp256r1SignatureOffsetsDataArgs, type Secp256r1VerifyArgs, type Secp256r1VerifyArgsArgs, type Secp256r1VerifyArgsWithDomainAddress, type Secp256r1VerifyArgsWithDomainAddressArgs, type Secp256r1VerifyInput, type Secp256r1VerifyInstruction, type Secp256r1VerifyInstructionData, type Secp256r1VerifyInstructionDataArgs, type Settings, type SettingsArgs, type SettingsCreationArgs, type SettingsCreationArgsArgs, type SettingsIndexWithAddress, type SettingsIndexWithAddressAndDelegateInfo, type SettingsIndexWithAddressAndDelegateInfoArgs, type SettingsIndexWithAddressArgs, type SettingsMutArgs, type SettingsMutArgsArgs, type SettingsReadonlyArgs, type SettingsReadonlyArgsArgs, SignedSecp256r1Key, type SplInterfacePdaArgs, type SplInterfacePdaArgsArgs, type StartMessageRequest, StartMessageRequestSchema, type StartTransactionRequest, StartTransactionRequestSchema, TOKEN_TRANSFER_INTENT_COMPRESSED_DISCRIMINATOR, TOKEN_TRANSFER_INTENT_DISCRIMINATOR, TRANSACTION_BUFFER_CLOSE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_CLOSE_DISCRIMINATOR, TRANSACTION_BUFFER_CREATE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_CREATE_DISCRIMINATOR, TRANSACTION_BUFFER_DISCRIMINATOR, TRANSACTION_BUFFER_EXECUTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_EXECUTE_DISCRIMINATOR, TRANSACTION_BUFFER_EXTEND_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_EXTEND_DISCRIMINATOR, TRANSACTION_BUFFER_VOTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_BUFFER_VOTE_DISCRIMINATOR, TRANSACTION_EXECUTE_COMPRESSED_DISCRIMINATOR, TRANSACTION_EXECUTE_DISCRIMINATOR, TRANSACTION_EXECUTE_SYNC_COMPRESSED_DISCRIMINATOR, TRANSACTION_EXECUTE_SYNC_DISCRIMINATOR, type TokenMetadata, type TokenMetadataArgs, type TokenTransferIntentAsyncInput, type TokenTransferIntentCompressedAsyncInput, type TokenTransferIntentCompressedInput, type TokenTransferIntentCompressedInstruction, type TokenTransferIntentCompressedInstructionData, type TokenTransferIntentCompressedInstructionDataArgs, type TokenTransferIntentCompressedInstructionExtraArgs, type TokenTransferIntentInput, type TokenTransferIntentInstruction, type TokenTransferIntentInstructionData, type TokenTransferIntentInstructionDataArgs, type TokenTransferIntentInstructionExtraArgs, type TransactionActionType, TransactionActionTypeSchema, type TransactionAuthDetails, type TransactionAuthenticationResponse, type TransactionBuffer, type TransactionBufferArgs, type TransactionBufferCloseCompressedInput, type TransactionBufferCloseCompressedInstruction, type TransactionBufferCloseCompressedInstructionData, type TransactionBufferCloseCompressedInstructionDataArgs, type TransactionBufferCloseCompressedInstructionExtraArgs, type TransactionBufferCloseInput, type TransactionBufferCloseInstruction, type TransactionBufferCloseInstructionData, type TransactionBufferCloseInstructionDataArgs, type TransactionBufferCloseInstructionExtraArgs, type TransactionBufferCreateArgs, type TransactionBufferCreateArgsArgs, type TransactionBufferCreateCompressedInput, type TransactionBufferCreateCompressedInstruction, type TransactionBufferCreateCompressedInstructionData, type TransactionBufferCreateCompressedInstructionDataArgs, type TransactionBufferCreateCompressedInstructionExtraArgs, type TransactionBufferCreateInput, type TransactionBufferCreateInstruction, type TransactionBufferCreateInstructionData, type TransactionBufferCreateInstructionDataArgs, type TransactionBufferCreateInstructionExtraArgs, type TransactionBufferExecuteCompressedInput, type TransactionBufferExecuteCompressedInstruction, type TransactionBufferExecuteCompressedInstructionData, type TransactionBufferExecuteCompressedInstructionDataArgs, type TransactionBufferExecuteCompressedInstructionExtraArgs, type TransactionBufferExecuteInput, type TransactionBufferExecuteInstruction, type TransactionBufferExecuteInstructionData, type TransactionBufferExecuteInstructionDataArgs, type TransactionBufferExecuteInstructionExtraArgs, type TransactionBufferExtendCompressedInput, type TransactionBufferExtendCompressedInstruction, type TransactionBufferExtendCompressedInstructionData, type TransactionBufferExtendCompressedInstructionDataArgs, type TransactionBufferExtendCompressedInstructionExtraArgs, type TransactionBufferExtendInput, type TransactionBufferExtendInstruction, type TransactionBufferExtendInstructionData, type TransactionBufferExtendInstructionDataArgs, type TransactionBufferExtendInstructionExtraArgs, type TransactionBufferVoteCompressedInput, type TransactionBufferVoteCompressedInstruction, type TransactionBufferVoteCompressedInstructionData, type TransactionBufferVoteCompressedInstructionDataArgs, type TransactionBufferVoteCompressedInstructionExtraArgs, type TransactionBufferVoteInput, type TransactionBufferVoteInstruction, type TransactionBufferVoteInstructionData, type TransactionBufferVoteInstructionDataArgs, type TransactionBufferVoteInstructionExtraArgs, type TransactionDetails, TransactionDetailsSchema, type TransactionExecuteCompressedInput, type TransactionExecuteCompressedInstruction, type TransactionExecuteCompressedInstructionData, type TransactionExecuteCompressedInstructionDataArgs, type TransactionExecuteCompressedInstructionExtraArgs, type TransactionExecuteInput, type TransactionExecuteInstruction, type TransactionExecuteInstructionData, type TransactionExecuteInstructionDataArgs, type TransactionExecuteInstructionExtraArgs, type TransactionExecuteSyncCompressedInput, type TransactionExecuteSyncCompressedInstruction, type TransactionExecuteSyncCompressedInstructionData, type TransactionExecuteSyncCompressedInstructionDataArgs, type TransactionExecuteSyncCompressedInstructionExtraArgs, type TransactionExecuteSyncInput, type TransactionExecuteSyncInstruction, type TransactionExecuteSyncInstructionData, type TransactionExecuteSyncInstructionDataArgs, type TransactionExecuteSyncInstructionExtraArgs, type TransactionMessage, type TransactionMessageAddressTableLookup, type TransactionMessageAddressTableLookupArgs, type TransactionMessageArgs, type TransactionPayload, TransactionPayloadSchema, type TransactionPayloadWithBase64MessageBytes, TransactionPayloadWithBase64MessageBytesSchema, type TransferFeeAccountExtension, type TransferFeeAccountExtensionArgs, type TransferHookAccountExtension, type TransferHookAccountExtensionArgs, Transports, type TransportsArgs, type User, type UserArgs, type UserCreationArgs$2 as UserCreationArgs, type UserCreationArgsArgs, type UserMutArgs, type UserMutArgsArgs, type UserReadOnlyArgs, type UserReadOnlyArgsArgs, type UserReadOnlyOrMutateArgs, type UserReadOnlyOrMutateArgsArgs, UserRole, type UserRoleArgs, WHITELISTED_ADDRESS_TREE_DISCRIMINATOR, type WhitelistedAddressTree, type WhitelistedAddressTreeArgs, addWhitelistedAddressTrees, base64URLStringToBuffer, bufferToBase64URLString, changeConfig, closeTransactionBuffer, configAction, convertBase64StringToJWK, convertJWKToBase64String, convertMemberKeyToString, convertPubkeyCompressedToCose, convertPubkeyCoseToCompressed, createClientAuthorizationCompleteRequestChallenge, createClientAuthorizationStartRequestChallenge, createDomainConfig, createDomainUserAccounts, createGlobalCounter, createMessageChallenge, createTransactionBuffer, createTransactionChallenge, createTransactionManagerSigner, createUserAccounts, createWallet, decodeDomainConfig, decodeGlobalCounter, decodeSettings, decodeTransactionBuffer, decodeWhitelistedAddressTree, decompressSettingsAccount, deserializeConfigActions, disableDomainConfig, editDomainConfig, editTransactionManagerUrl, editUserDelegate, executeTransaction, executeTransactionBuffer, executeTransactionSync, extendTransactionBuffer, extensionStruct, fetchAllDomainConfig, fetchAllGlobalCounter, fetchAllMaybeDomainConfig, fetchAllMaybeGlobalCounter, fetchAllMaybeSettings, fetchAllMaybeTransactionBuffer, fetchAllMaybeWhitelistedAddressTree, fetchAllSettings, fetchAllSettingsAccountByMember, fetchAllTransactionBuffer, fetchAllWhitelistedAddressTree, fetchDomainConfig, fetchGlobalCounter, fetchMaybeDomainConfig, fetchMaybeGlobalCounter, fetchMaybeSettings, fetchMaybeSettingsAccountData, fetchMaybeTransactionBuffer, fetchMaybeUserAccountData, fetchMaybeWhitelistedAddressTree, fetchSettings, fetchSettingsAccountData, fetchTransactionBuffer, fetchUserAccountByFilters, fetchUserAccountData, fetchWhitelistedAddressTree, getAddMemberArgsCodec, getAddMemberArgsDecoder, getAddMemberArgsEncoder, getAddWhitelistedAddressTreesDiscriminatorBytes, getAddWhitelistedAddressTreesInstruction, getAddWhitelistedAddressTreesInstructionAsync, getAddWhitelistedAddressTreesInstructionDataCodec, getAddWhitelistedAddressTreesInstructionDataDecoder, getAddWhitelistedAddressTreesInstructionDataEncoder, getAdditionalMetadataCodec, getAdditionalMetadataDecoder, getAdditionalMetadataEncoder, getChangeConfigCompressedDiscriminatorBytes, getChangeConfigCompressedInstruction, getChangeConfigCompressedInstructionDataCodec, getChangeConfigCompressedInstructionDataDecoder, getChangeConfigCompressedInstructionDataEncoder, getChangeConfigDiscriminatorBytes, getChangeConfigInstruction, getChangeConfigInstructionDataCodec, getChangeConfigInstructionDataDecoder, getChangeConfigInstructionDataEncoder, getClientAndDeviceHash, getCompiledInstructionCodec, getCompiledInstructionDecoder, getCompiledInstructionEncoder, getCompressedAccountMetaCodec, getCompressedAccountMetaDecoder, getCompressedAccountMetaEncoder, getCompressedAccountMetaReadOnlyCodec, getCompressedAccountMetaReadOnlyDecoder, getCompressedAccountMetaReadOnlyEncoder, getCompressedOnlyExtensionCodec, getCompressedOnlyExtensionDecoder, getCompressedOnlyExtensionEncoder, getCompressedProofCodec, getCompressedProofDecoder, getCompressedProofEncoder, getCompressedSettingsAddress, getCompressedSettingsCodec, getCompressedSettingsDataCodec, getCompressedSettingsDataDecoder, getCompressedSettingsDataEncoder, getCompressedSettingsDecoder, getCompressedSettingsEncoder, getCompressedTokenArgsCodec, getCompressedTokenArgsDecoder, getCompressedTokenArgsEncoder, getCompressibleExtensionCodec, getCompressibleExtensionDecoder, getCompressibleExtensionEncoder, getCompressionInfoCodec, getCompressionInfoDecoder, getCompressionInfoEncoder, getConfigActionCodec, getConfigActionDecoder, getConfigActionEncoder, getCreateCompressedWalletDiscriminatorBytes, getCreateCompressedWalletInstruction, getCreateCompressedWalletInstructionAsync, getCreateCompressedWalletInstructionDataCodec, getCreateCompressedWalletInstructionDataDecoder, getCreateCompressedWalletInstructionDataEncoder, getCreateDomainConfigDiscriminatorBytes, getCreateDomainConfigInstruction, getCreateDomainConfigInstructionAsync, getCreateDomainConfigInstructionDataCodec, getCreateDomainConfigInstructionDataDecoder, getCreateDomainConfigInstructionDataEncoder, getCreateDomainUserAccountDiscriminatorBytes, getCreateDomainUserAccountInstruction, getCreateDomainUserAccountInstructionAsync, getCreateDomainUserAccountInstructionDataCodec, getCreateDomainUserAccountInstructionDataDecoder, getCreateDomainUserAccountInstructionDataEncoder, getCreateGlobalCounterDiscriminatorBytes, getCreateGlobalCounterInstruction, getCreateGlobalCounterInstructionAsync, getCreateGlobalCounterInstructionDataCodec, getCreateGlobalCounterInstructionDataDecoder, getCreateGlobalCounterInstructionDataEncoder, getCreateUserAccountArgsCodec, getCreateUserAccountArgsDecoder, getCreateUserAccountArgsEncoder, getCreateUserAccountsDiscriminatorBytes, getCreateUserAccountsInstruction, getCreateUserAccountsInstructionAsync, getCreateUserAccountsInstructionDataCodec, getCreateUserAccountsInstructionDataDecoder, getCreateUserAccountsInstructionDataEncoder, getDecompressSettingsAccountDiscriminatorBytes, getDecompressSettingsAccountInstruction, getDecompressSettingsAccountInstructionDataCodec, getDecompressSettingsAccountInstructionDataDecoder, getDecompressSettingsAccountInstructionDataEncoder, getDisableDomainConfigDiscriminatorBytes, getDisableDomainConfigInstruction, getDisableDomainConfigInstructionDataCodec, getDisableDomainConfigInstructionDataDecoder, getDisableDomainConfigInstructionDataEncoder, getDomainConfigAddress, getDomainConfigCodec, getDomainConfigDecoder, getDomainConfigDiscriminatorBytes, getDomainConfigEncoder, getDomainConfigSize, getEditDomainConfigDiscriminatorBytes, getEditDomainConfigInstruction, getEditDomainConfigInstructionAsync, getEditDomainConfigInstructionDataCodec, getEditDomainConfigInstructionDataDecoder, getEditDomainConfigInstructionDataEncoder, getEditMemberArgsCodec, getEditMemberArgsDecoder, getEditMemberArgsEncoder, getEditTransactionManagerUrlDiscriminatorBytes, getEditTransactionManagerUrlInstruction, getEditTransactionManagerUrlInstructionDataCodec, getEditTransactionManagerUrlInstructionDataDecoder, getEditTransactionManagerUrlInstructionDataEncoder, getEditUserDelegateDiscriminatorBytes, getEditUserDelegateInstruction, getEditUserDelegateInstructionDataCodec, getEditUserDelegateInstructionDataDecoder, getEditUserDelegateInstructionDataEncoder, getExpectedSecp256r1SignersCodec, getExpectedSecp256r1SignersDecoder, getExpectedSecp256r1SignersEncoder, getExtensionStructCodec, getExtensionStructDecoder, getExtensionStructEncoder, getGlobalCounterAddress, getGlobalCounterCodec, getGlobalCounterDecoder, getGlobalCounterDiscriminatorBytes, getGlobalCounterEncoder, getGlobalCounterSize, getJitoTipsConfig, getLightCpiSigner, getLightProtocolRpc, getLinkWalletArgsCodec, getLinkWalletArgsDecoder, getLinkWalletArgsEncoder, getMemberCodec, getMemberDecoder, getMemberEncoder, getMemberKeyCodec, getMemberKeyDecoder, getMemberKeyEncoder, getMigrateCompressedSettingsDiscriminatorBytes, getMigrateCompressedSettingsInstruction, getMigrateCompressedSettingsInstructionDataCodec, getMigrateCompressedSettingsInstructionDataDecoder, getMigrateCompressedSettingsInstructionDataEncoder, getMigrateCompressedUsersDiscriminatorBytes, getMigrateCompressedUsersInstruction, getMigrateCompressedUsersInstructionDataCodec, getMigrateCompressedUsersInstructionDataDecoder, getMigrateCompressedUsersInstructionDataEncoder, getMultiWalletErrorMessage, getNativeTransferIntentCompressedDiscriminatorBytes, getNativeTransferIntentCompressedInstruction, getNativeTransferIntentCompressedInstructionDataCodec, getNativeTransferIntentCompressedInstructionDataDecoder, getNativeTransferIntentCompressedInstructionDataEncoder, getNativeTransferIntentDiscriminatorBytes, getNativeTransferIntentInstruction, getNativeTransferIntentInstructionAsync, getNativeTransferIntentInstructionDataCodec, getNativeTransferIntentInstructionDataDecoder, getNativeTransferIntentInstructionDataEncoder, getNewAuthorityArgsCodec, getNewAuthorityArgsDecoder, getNewAuthorityArgsEncoder, getOriginIndex, getPackedAddressTreeInfoCodec, getPackedAddressTreeInfoDecoder, getPackedAddressTreeInfoEncoder, getPackedMerkleContextCodec, getPackedMerkleContextDecoder, getPackedMerkleContextEncoder, getPackedStateTreeInfoCodec, getPackedStateTreeInfoDecoder, getPackedStateTreeInfoEncoder, getPausableAccountExtensionCodec, getPausableAccountExtensionDecoder, getPausableAccountExtensionEncoder, getPermanentDelegateAccountExtensionCodec, getPermanentDelegateAccountExtensionDecoder, getPermanentDelegateAccountExtensionEncoder, getPermissionsCodec, getPermissionsDecoder, getPermissionsEncoder, getProofArgsCodec, getProofArgsDecoder, getProofArgsEncoder, getRemoveMemberArgsCodec, getRemoveMemberArgsDecoder, getRemoveMemberArgsEncoder, getRentConfigCodec, getRentConfigDecoder, getRentConfigEncoder, getSecp256r1MessageHash, getSecp256r1PubkeyCodec, getSecp256r1PubkeyDecoder, getSecp256r1PubkeyEncoder, getSecp256r1SignatureOffsetsDataDecoder, getSecp256r1SignatureOffsetsDataEncoder, getSecp256r1VerifyArgsCodec, getSecp256r1VerifyArgsDecoder, getSecp256r1VerifyArgsEncoder, getSecp256r1VerifyArgsWithDomainAddressCodec, getSecp256r1VerifyArgsWithDomainAddressDecoder, getSecp256r1VerifyArgsWithDomainAddressEncoder, getSecp256r1VerifyInstruction, getSecp256r1VerifyInstructionDataCodec, getSecp256r1VerifyInstructionDataDecoder, getSecp256r1VerifyInstructionDataEncoder, getSendAndConfirmTransaction, getSettingsCodec, getSettingsCreationArgsCodec, getSettingsCreationArgsDecoder, getSettingsCreationArgsEncoder, getSettingsDecoder, getSettingsDiscriminatorBytes, getSettingsEncoder, getSettingsFromIndex, getSettingsIndexWithAddressAndDelegateInfoCodec, getSettingsIndexWithAddressAndDelegateInfoDecoder, getSettingsIndexWithAddressAndDelegateInfoEncoder, getSettingsIndexWithAddressCodec, getSettingsIndexWithAddressDecoder, getSettingsIndexWithAddressEncoder, getSettingsMutArgsCodec, getSettingsMutArgsDecoder, getSettingsMutArgsEncoder, getSettingsReadonlyArgsCodec, getSettingsReadonlyArgsDecoder, getSettingsReadonlyArgsEncoder, getSignedSecp256r1Key, getSignedTransactionManager, getSolanaRpc, getSolanaRpcEndpoint, getSplInterfacePdaArgsCodec, getSplInterfacePdaArgsDecoder, getSplInterfacePdaArgsEncoder, getTokenMetadataCodec, getTokenMetadataDecoder, getTokenMetadataEncoder, getTokenTransferIntentCompressedDiscriminatorBytes, getTokenTransferIntentCompressedInstruction, getTokenTransferIntentCompressedInstructionAsync, getTokenTransferIntentCompressedInstructionDataCodec, getTokenTransferIntentCompressedInstructionDataDecoder, getTokenTransferIntentCompressedInstructionDataEncoder, getTokenTransferIntentDiscriminatorBytes, getTokenTransferIntentInstruction, getTokenTransferIntentInstructionAsync, getTokenTransferIntentInstructionDataCodec, getTokenTransferIntentInstructionDataDecoder, getTokenTransferIntentInstructionDataEncoder, getTransactionBufferAddress, getTransactionBufferCloseCompressedDiscriminatorBytes, getTransactionBufferCloseCompressedInstruction, getTransactionBufferCloseCompressedInstructionDataCodec, getTransactionBufferCloseCompressedInstructionDataDecoder, getTransactionBufferCloseCompressedInstructionDataEncoder, getTransactionBufferCloseDiscriminatorBytes, getTransactionBufferCloseInstruction, getTransactionBufferCloseInstructionDataCodec, getTransactionBufferCloseInstructionDataDecoder, getTransactionBufferCloseInstructionDataEncoder, getTransactionBufferCodec, getTransactionBufferCreateArgsCodec, getTransactionBufferCreateArgsDecoder, getTransactionBufferCreateArgsEncoder, getTransactionBufferCreateCompressedDiscriminatorBytes, getTransactionBufferCreateCompressedInstruction, getTransactionBufferCreateCompressedInstructionDataCodec, getTransactionBufferCreateCompressedInstructionDataDecoder, getTransactionBufferCreateCompressedInstructionDataEncoder, getTransactionBufferCreateDiscriminatorBytes, getTransactionBufferCreateInstruction, getTransactionBufferCreateInstructionDataCodec, getTransactionBufferCreateInstructionDataDecoder, getTransactionBufferCreateInstructionDataEncoder, getTransactionBufferDecoder, getTransactionBufferDiscriminatorBytes, getTransactionBufferEncoder, getTransactionBufferExecuteCompressedDiscriminatorBytes, getTransactionBufferExecuteCompressedInstruction, getTransactionBufferExecuteCompressedInstructionDataCodec, getTransactionBufferExecuteCompressedInstructionDataDecoder, getTransactionBufferExecuteCompressedInstructionDataEncoder, getTransactionBufferExecuteDiscriminatorBytes, getTransactionBufferExecuteInstruction, getTransactionBufferExecuteInstructionDataCodec, getTransactionBufferExecuteInstructionDataDecoder, getTransactionBufferExecuteInstructionDataEncoder, getTransactionBufferExtendCompressedDiscriminatorBytes, getTransactionBufferExtendCompressedInstruction, getTransactionBufferExtendCompressedInstructionDataCodec, getTransactionBufferExtendCompressedInstructionDataDecoder, getTransactionBufferExtendCompressedInstructionDataEncoder, getTransactionBufferExtendDiscriminatorBytes, getTransactionBufferExtendInstruction, getTransactionBufferExtendInstructionDataCodec, getTransactionBufferExtendInstructionDataDecoder, getTransactionBufferExtendInstructionDataEncoder, getTransactionBufferVoteCompressedDiscriminatorBytes, getTransactionBufferVoteCompressedInstruction, getTransactionBufferVoteCompressedInstructionDataCodec, getTransactionBufferVoteCompressedInstructionDataDecoder, getTransactionBufferVoteCompressedInstructionDataEncoder, getTransactionBufferVoteDiscriminatorBytes, getTransactionBufferVoteInstruction, getTransactionBufferVoteInstructionDataCodec, getTransactionBufferVoteInstructionDataDecoder, getTransactionBufferVoteInstructionDataEncoder, getTransactionExecuteCompressedDiscriminatorBytes, getTransactionExecuteCompressedInstruction, getTransactionExecuteCompressedInstructionDataCodec, getTransactionExecuteCompressedInstructionDataDecoder, getTransactionExecuteCompressedInstructionDataEncoder, getTransactionExecuteDiscriminatorBytes, getTransactionExecuteInstruction, getTransactionExecuteInstructionDataCodec, getTransactionExecuteInstructionDataDecoder, getTransactionExecuteInstructionDataEncoder, getTransactionExecuteSyncCompressedDiscriminatorBytes, getTransactionExecuteSyncCompressedInstruction, getTransactionExecuteSyncCompressedInstructionDataCodec, getTransactionExecuteSyncCompressedInstructionDataDecoder, getTransactionExecuteSyncCompressedInstructionDataEncoder, getTransactionExecuteSyncDiscriminatorBytes, getTransactionExecuteSyncInstruction, getTransactionExecuteSyncInstructionDataCodec, getTransactionExecuteSyncInstructionDataDecoder, getTransactionExecuteSyncInstructionDataEncoder, getTransactionMessageAddressTableLookupCodec, getTransactionMessageAddressTableLookupDecoder, getTransactionMessageAddressTableLookupEncoder, getTransactionMessageCodec, getTransactionMessageDecoder, getTransactionMessageEncoder, getTransferFeeAccountExtensionCodec, getTransferFeeAccountExtensionDecoder, getTransferFeeAccountExtensionEncoder, getTransferHookAccountExtensionCodec, getTransferHookAccountExtensionDecoder, getTransferHookAccountExtensionEncoder, getTransportsCodec, getTransportsDecoder, getTransportsEncoder, getUserAccountAddress, getUserCodec, getUserCreationArgsCodec, getUserCreationArgsDecoder, getUserCreationArgsEncoder, getUserDecoder, getUserEncoder, getUserMutArgsCodec, getUserMutArgsDecoder, getUserMutArgsEncoder, getUserReadOnlyArgsCodec, getUserReadOnlyArgsDecoder, getUserReadOnlyArgsEncoder, getUserReadOnlyOrMutateArgsCodec, getUserReadOnlyOrMutateArgsDecoder, getUserReadOnlyOrMutateArgsEncoder, getUserRoleCodec, getUserRoleDecoder, getUserRoleEncoder, getWalletAddressFromIndex, getWalletAddressFromSettings, getWhitelistedAddressTreeCodec, getWhitelistedAddressTreeDecoder, getWhitelistedAddressTreeDiscriminatorBytes, getWhitelistedAddressTreeEncoder, getWhitelistedAddressTreeFromIndex, getWhitelistedAddressTreeIndexFromAddress, getWhitelistedAddressTreesAddress, identifyMultiWalletAccount, identifyMultiWalletInstruction, initialize, isConfigAction, isExtensionStruct, isMultiWalletError, isUserReadOnlyOrMutateArgs, migrateSettings, migrateUsers, nativeTransferIntent, parseAddWhitelistedAddressTreesInstruction, parseChangeConfigCompressedInstruction, parseChangeConfigInstruction, parseCreateCompressedWalletInstruction, parseCreateDomainConfigInstruction, parseCreateDomainUserAccountInstruction, parseCreateGlobalCounterInstruction, parseCreateUserAccountsInstruction, parseDecompressSettingsAccountInstruction, parseDisableDomainConfigInstruction, parseEditDomainConfigInstruction, parseEditTransactionManagerUrlInstruction, parseEditUserDelegateInstruction, parseMigrateCompressedSettingsInstruction, parseMigrateCompressedUsersInstruction, parseNativeTransferIntentCompressedInstruction, parseNativeTransferIntentInstruction, parseSecp256r1VerifyInstruction, parseTokenTransferIntentCompressedInstruction, parseTokenTransferIntentInstruction, parseTransactionBufferCloseCompressedInstruction, parseTransactionBufferCloseInstruction, parseTransactionBufferCreateCompressedInstruction, parseTransactionBufferCreateInstruction, parseTransactionBufferExecuteCompressedInstruction, parseTransactionBufferExecuteInstruction, parseTransactionBufferExtendCompressedInstruction, parseTransactionBufferExtendInstruction, parseTransactionBufferVoteCompressedInstruction, parseTransactionBufferVoteInstruction, parseTransactionExecuteCompressedInstruction, parseTransactionExecuteInstruction, parseTransactionExecuteSyncCompressedInstruction, parseTransactionExecuteSyncInstruction, pollJitoBundleConfirmation, prepareChangeConfigArgs, prepareTransactionBundle, prepareTransactionMessage, prepareTransactionSync, retrieveTransactionManager, sendJitoBundle, serializeConfigActions, signAndSendBundledTransactions, signAndSendTransaction, tokenTransferIntent, userReadOnlyOrMutateArgs, vaultTransactionMessageDeserialize, vaultTransactionMessageSerialize, voteTransactionBuffer };
|