@layerzerolabs/lz-solana-sdk-v2 3.0.66 → 3.0.67
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/CHANGELOG.md +13 -0
- package/dist/umi.cjs +174 -1
- package/dist/umi.cjs.map +1 -1
- package/dist/umi.d.mts +85 -5
- package/dist/umi.d.ts +85 -5
- package/dist/umi.mjs +174 -1
- package/dist/umi.mjs.map +1 -1
- package/package.json +13 -10
- package/src/generated/kinobi/dvn/instructions/extendDvnConfig.ts +124 -0
- package/src/generated/kinobi/dvn/instructions/index.ts +1 -0
- package/src/generated/kinobi/executor/instructions/extendExecutorConfig.ts +124 -0
- package/src/generated/kinobi/executor/instructions/index.ts +1 -0
- package/src/generated/kinobi/pricefeed/instructions/extendPriceFeed.ts +124 -0
- package/src/generated/kinobi/pricefeed/instructions/index.ts +1 -0
package/dist/umi.d.mts
CHANGED
|
@@ -4362,6 +4362,26 @@ declare function getCloseExecuteInstructionDataSerializer(): Serializer<CloseExe
|
|
|
4362
4362
|
type CloseExecuteInstructionArgs = CloseExecuteInstructionDataArgs;
|
|
4363
4363
|
declare function closeExecute(context: Pick<Context, 'programs'>, input: CloseExecuteInstructionAccounts & CloseExecuteInstructionArgs): TransactionBuilder;
|
|
4364
4364
|
|
|
4365
|
+
/**
|
|
4366
|
+
* This code was AUTOGENERATED using the kinobi library.
|
|
4367
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4368
|
+
* to add features, then rerun kinobi to update it.
|
|
4369
|
+
*
|
|
4370
|
+
* @see https://github.com/kinobi-so/kinobi
|
|
4371
|
+
*/
|
|
4372
|
+
|
|
4373
|
+
type ExtendDvnConfigInstructionAccounts = {
|
|
4374
|
+
admin: Signer;
|
|
4375
|
+
config: PublicKey | Pda;
|
|
4376
|
+
systemProgram?: PublicKey | Pda;
|
|
4377
|
+
};
|
|
4378
|
+
type ExtendDvnConfigInstructionData = {
|
|
4379
|
+
discriminator: Uint8Array;
|
|
4380
|
+
};
|
|
4381
|
+
type ExtendDvnConfigInstructionDataArgs = {};
|
|
4382
|
+
declare function getExtendDvnConfigInstructionDataSerializer(): Serializer<ExtendDvnConfigInstructionDataArgs, ExtendDvnConfigInstructionData>;
|
|
4383
|
+
declare function extendDvnConfig(context: Pick<Context, 'programs'>, input: ExtendDvnConfigInstructionAccounts): TransactionBuilder;
|
|
4384
|
+
|
|
4365
4385
|
/**
|
|
4366
4386
|
* This code was AUTOGENERATED using the kinobi library.
|
|
4367
4387
|
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
@@ -4551,6 +4571,9 @@ type index$g_CloseExecuteInstructionAccounts = CloseExecuteInstructionAccounts;
|
|
|
4551
4571
|
type index$g_CloseExecuteInstructionArgs = CloseExecuteInstructionArgs;
|
|
4552
4572
|
type index$g_CloseExecuteInstructionData = CloseExecuteInstructionData;
|
|
4553
4573
|
type index$g_CloseExecuteInstructionDataArgs = CloseExecuteInstructionDataArgs;
|
|
4574
|
+
type index$g_ExtendDvnConfigInstructionAccounts = ExtendDvnConfigInstructionAccounts;
|
|
4575
|
+
type index$g_ExtendDvnConfigInstructionData = ExtendDvnConfigInstructionData;
|
|
4576
|
+
type index$g_ExtendDvnConfigInstructionDataArgs = ExtendDvnConfigInstructionDataArgs;
|
|
4554
4577
|
type index$g_InitDvnInstructionAccounts = InitDvnInstructionAccounts;
|
|
4555
4578
|
type index$g_InitDvnInstructionArgs = InitDvnInstructionArgs;
|
|
4556
4579
|
type index$g_InitDvnInstructionData = InitDvnInstructionData;
|
|
@@ -4572,7 +4595,9 @@ type index$g_CloseExecuteInstructionAccounts = CloseExecuteInstructionAccounts;
|
|
|
4572
4595
|
type index$g_WithdrawFeeInstructionData = WithdrawFeeInstructionData;
|
|
4573
4596
|
type index$g_WithdrawFeeInstructionDataArgs = WithdrawFeeInstructionDataArgs;
|
|
4574
4597
|
declare const index$g_closeExecute: typeof closeExecute;
|
|
4598
|
+
declare const index$g_extendDvnConfig: typeof extendDvnConfig;
|
|
4575
4599
|
declare const index$g_getCloseExecuteInstructionDataSerializer: typeof getCloseExecuteInstructionDataSerializer;
|
|
4600
|
+
declare const index$g_getExtendDvnConfigInstructionDataSerializer: typeof getExtendDvnConfigInstructionDataSerializer;
|
|
4576
4601
|
declare const index$g_getInitDvnInstructionDataSerializer: typeof getInitDvnInstructionDataSerializer;
|
|
4577
4602
|
declare const index$g_getInvokeInstructionDataSerializer: typeof getInvokeInstructionDataSerializer;
|
|
4578
4603
|
declare const index$g_getQuoteDvnInstructionDataSerializer: typeof getQuoteDvnInstructionDataSerializer;
|
|
@@ -4584,7 +4609,7 @@ type index$g_CloseExecuteInstructionAccounts = CloseExecuteInstructionAccounts;
|
|
|
4584
4609
|
declare const index$g_verifiable: typeof verifiable;
|
|
4585
4610
|
declare const index$g_withdrawFee: typeof withdrawFee;
|
|
4586
4611
|
declare namespace index$g {
|
|
4587
|
-
export { type index$g_CloseExecuteInstructionAccounts as CloseExecuteInstructionAccounts, type index$g_CloseExecuteInstructionArgs as CloseExecuteInstructionArgs, type index$g_CloseExecuteInstructionData as CloseExecuteInstructionData, type index$g_CloseExecuteInstructionDataArgs as CloseExecuteInstructionDataArgs, type index$g_InitDvnInstructionAccounts as InitDvnInstructionAccounts, type index$g_InitDvnInstructionArgs as InitDvnInstructionArgs, type index$g_InitDvnInstructionData as InitDvnInstructionData, type index$g_InitDvnInstructionDataArgs as InitDvnInstructionDataArgs, type index$g_InvokeInstructionAccounts as InvokeInstructionAccounts, type index$g_InvokeInstructionArgs as InvokeInstructionArgs, type index$g_InvokeInstructionData as InvokeInstructionData, type index$g_InvokeInstructionDataArgs as InvokeInstructionDataArgs, type index$g_QuoteDvnInstructionAccounts as QuoteDvnInstructionAccounts, type index$g_QuoteDvnInstructionArgs as QuoteDvnInstructionArgs, type index$g_QuoteDvnInstructionData as QuoteDvnInstructionData, type index$g_QuoteDvnInstructionDataArgs as QuoteDvnInstructionDataArgs, type SetConfigInstructionAccounts$1 as SetConfigInstructionAccounts, type SetConfigInstructionArgs$1 as SetConfigInstructionArgs, type SetConfigInstructionData$1 as SetConfigInstructionData, type SetConfigInstructionDataArgs$1 as SetConfigInstructionDataArgs, type index$g_VerifiableInstructionAccounts as VerifiableInstructionAccounts, type index$g_VerifiableInstructionArgs as VerifiableInstructionArgs, type index$g_VerifiableInstructionData as VerifiableInstructionData, type index$g_VerifiableInstructionDataArgs as VerifiableInstructionDataArgs, type index$g_WithdrawFeeInstructionAccounts as WithdrawFeeInstructionAccounts, type index$g_WithdrawFeeInstructionArgs as WithdrawFeeInstructionArgs, type index$g_WithdrawFeeInstructionData as WithdrawFeeInstructionData, type index$g_WithdrawFeeInstructionDataArgs as WithdrawFeeInstructionDataArgs, index$g_closeExecute as closeExecute, index$g_getCloseExecuteInstructionDataSerializer as getCloseExecuteInstructionDataSerializer, index$g_getInitDvnInstructionDataSerializer as getInitDvnInstructionDataSerializer, index$g_getInvokeInstructionDataSerializer as getInvokeInstructionDataSerializer, index$g_getQuoteDvnInstructionDataSerializer as getQuoteDvnInstructionDataSerializer, getSetConfigInstructionDataSerializer$1 as getSetConfigInstructionDataSerializer, index$g_getVerifiableInstructionDataSerializer as getVerifiableInstructionDataSerializer, index$g_getWithdrawFeeInstructionDataSerializer as getWithdrawFeeInstructionDataSerializer, index$g_initDvn as initDvn, index$g_invoke as invoke, index$g_quoteDvn as quoteDvn, setConfig$1 as setConfig, index$g_verifiable as verifiable, index$g_withdrawFee as withdrawFee };
|
|
4612
|
+
export { type index$g_CloseExecuteInstructionAccounts as CloseExecuteInstructionAccounts, type index$g_CloseExecuteInstructionArgs as CloseExecuteInstructionArgs, type index$g_CloseExecuteInstructionData as CloseExecuteInstructionData, type index$g_CloseExecuteInstructionDataArgs as CloseExecuteInstructionDataArgs, type index$g_ExtendDvnConfigInstructionAccounts as ExtendDvnConfigInstructionAccounts, type index$g_ExtendDvnConfigInstructionData as ExtendDvnConfigInstructionData, type index$g_ExtendDvnConfigInstructionDataArgs as ExtendDvnConfigInstructionDataArgs, type index$g_InitDvnInstructionAccounts as InitDvnInstructionAccounts, type index$g_InitDvnInstructionArgs as InitDvnInstructionArgs, type index$g_InitDvnInstructionData as InitDvnInstructionData, type index$g_InitDvnInstructionDataArgs as InitDvnInstructionDataArgs, type index$g_InvokeInstructionAccounts as InvokeInstructionAccounts, type index$g_InvokeInstructionArgs as InvokeInstructionArgs, type index$g_InvokeInstructionData as InvokeInstructionData, type index$g_InvokeInstructionDataArgs as InvokeInstructionDataArgs, type index$g_QuoteDvnInstructionAccounts as QuoteDvnInstructionAccounts, type index$g_QuoteDvnInstructionArgs as QuoteDvnInstructionArgs, type index$g_QuoteDvnInstructionData as QuoteDvnInstructionData, type index$g_QuoteDvnInstructionDataArgs as QuoteDvnInstructionDataArgs, type SetConfigInstructionAccounts$1 as SetConfigInstructionAccounts, type SetConfigInstructionArgs$1 as SetConfigInstructionArgs, type SetConfigInstructionData$1 as SetConfigInstructionData, type SetConfigInstructionDataArgs$1 as SetConfigInstructionDataArgs, type index$g_VerifiableInstructionAccounts as VerifiableInstructionAccounts, type index$g_VerifiableInstructionArgs as VerifiableInstructionArgs, type index$g_VerifiableInstructionData as VerifiableInstructionData, type index$g_VerifiableInstructionDataArgs as VerifiableInstructionDataArgs, type index$g_WithdrawFeeInstructionAccounts as WithdrawFeeInstructionAccounts, type index$g_WithdrawFeeInstructionArgs as WithdrawFeeInstructionArgs, type index$g_WithdrawFeeInstructionData as WithdrawFeeInstructionData, type index$g_WithdrawFeeInstructionDataArgs as WithdrawFeeInstructionDataArgs, index$g_closeExecute as closeExecute, index$g_extendDvnConfig as extendDvnConfig, index$g_getCloseExecuteInstructionDataSerializer as getCloseExecuteInstructionDataSerializer, index$g_getExtendDvnConfigInstructionDataSerializer as getExtendDvnConfigInstructionDataSerializer, index$g_getInitDvnInstructionDataSerializer as getInitDvnInstructionDataSerializer, index$g_getInvokeInstructionDataSerializer as getInvokeInstructionDataSerializer, index$g_getQuoteDvnInstructionDataSerializer as getQuoteDvnInstructionDataSerializer, getSetConfigInstructionDataSerializer$1 as getSetConfigInstructionDataSerializer, index$g_getVerifiableInstructionDataSerializer as getVerifiableInstructionDataSerializer, index$g_getWithdrawFeeInstructionDataSerializer as getWithdrawFeeInstructionDataSerializer, index$g_initDvn as initDvn, index$g_invoke as invoke, index$g_quoteDvn as quoteDvn, setConfig$1 as setConfig, index$g_verifiable as verifiable, index$g_withdrawFee as withdrawFee };
|
|
4588
4613
|
}
|
|
4589
4614
|
|
|
4590
4615
|
/**
|
|
@@ -4681,6 +4706,9 @@ type index$f_AdminConfig = AdminConfig;
|
|
|
4681
4706
|
type index$f_ExecuteTransactionDigestArgs = ExecuteTransactionDigestArgs;
|
|
4682
4707
|
type index$f_ExpiredError = ExpiredError;
|
|
4683
4708
|
declare const index$f_ExpiredError: typeof ExpiredError;
|
|
4709
|
+
type index$f_ExtendDvnConfigInstructionAccounts = ExtendDvnConfigInstructionAccounts;
|
|
4710
|
+
type index$f_ExtendDvnConfigInstructionData = ExtendDvnConfigInstructionData;
|
|
4711
|
+
type index$f_ExtendDvnConfigInstructionDataArgs = ExtendDvnConfigInstructionDataArgs;
|
|
4684
4712
|
type index$f_InitDvnInstructionAccounts = InitDvnInstructionAccounts;
|
|
4685
4713
|
type index$f_InitDvnInstructionArgs = InitDvnInstructionArgs;
|
|
4686
4714
|
type index$f_InitDvnInstructionData = InitDvnInstructionData;
|
|
@@ -4731,6 +4759,7 @@ type index$f_AdminConfig = AdminConfig;
|
|
|
4731
4759
|
declare const index$f_createDvnProgram: typeof createDvnProgram;
|
|
4732
4760
|
declare const index$f_deserializeDvnConfig: typeof deserializeDvnConfig;
|
|
4733
4761
|
declare const index$f_deserializeExecuteHash: typeof deserializeExecuteHash;
|
|
4762
|
+
declare const index$f_extendDvnConfig: typeof extendDvnConfig;
|
|
4734
4763
|
declare const index$f_fetchAllDvnConfig: typeof fetchAllDvnConfig;
|
|
4735
4764
|
declare const index$f_fetchAllExecuteHash: typeof fetchAllExecuteHash;
|
|
4736
4765
|
declare const index$f_fetchDvnConfig: typeof fetchDvnConfig;
|
|
@@ -4747,6 +4776,7 @@ type index$f_AdminConfig = AdminConfig;
|
|
|
4747
4776
|
declare const index$f_getExecuteHashGpaBuilder: typeof getExecuteHashGpaBuilder;
|
|
4748
4777
|
declare const index$f_getExecuteHashSize: typeof getExecuteHashSize;
|
|
4749
4778
|
declare const index$f_getExecuteTransactionDigestSerializer: typeof getExecuteTransactionDigestSerializer;
|
|
4779
|
+
declare const index$f_getExtendDvnConfigInstructionDataSerializer: typeof getExtendDvnConfigInstructionDataSerializer;
|
|
4750
4780
|
declare const index$f_getInitDvnInstructionDataSerializer: typeof getInitDvnInstructionDataSerializer;
|
|
4751
4781
|
declare const index$f_getInvokeInstructionDataSerializer: typeof getInvokeInstructionDataSerializer;
|
|
4752
4782
|
declare const index$f_getMultisigConfigSerializer: typeof getMultisigConfigSerializer;
|
|
@@ -4769,7 +4799,7 @@ type index$f_AdminConfig = AdminConfig;
|
|
|
4769
4799
|
declare const index$f_verifiable: typeof verifiable;
|
|
4770
4800
|
declare const index$f_withdrawFee: typeof withdrawFee;
|
|
4771
4801
|
declare namespace index$f {
|
|
4772
|
-
export { type Acl$1 as Acl, type AclArgs$1 as AclArgs, type index$f_AdminConfig as AdminConfig, type index$f_AdminConfigArgs as AdminConfigArgs, type index$f_CloseExecuteInstructionAccounts as CloseExecuteInstructionAccounts, type index$f_CloseExecuteInstructionArgs as CloseExecuteInstructionArgs, type index$f_CloseExecuteInstructionData as CloseExecuteInstructionData, type index$f_CloseExecuteInstructionDataArgs as CloseExecuteInstructionDataArgs, index$f_DVN_PROGRAM_ID as DVN_PROGRAM_ID, type DstConfig$1 as DstConfig, type DstConfigArgs$1 as DstConfigArgs, index$f_DuplicateSignatureError as DuplicateSignatureError, type index$f_DvnConfig as DvnConfig, type index$f_DvnConfigAccountData as DvnConfigAccountData, type index$f_DvnConfigAccountDataArgs as DvnConfigAccountDataArgs, EidNotSupportedError$1 as EidNotSupportedError, type index$f_ExecuteHash as ExecuteHash, type index$f_ExecuteHashAccountData as ExecuteHashAccountData, type index$f_ExecuteHashAccountDataArgs as ExecuteHashAccountDataArgs, type index$f_ExecuteTransactionDigest as ExecuteTransactionDigest, type index$f_ExecuteTransactionDigestArgs as ExecuteTransactionDigestArgs, index$f_ExpiredError as ExpiredError, type index$f_InitDvnInstructionAccounts as InitDvnInstructionAccounts, type index$f_InitDvnInstructionArgs as InitDvnInstructionArgs, type index$f_InitDvnInstructionData as InitDvnInstructionData, type index$f_InitDvnInstructionDataArgs as InitDvnInstructionDataArgs, InvalidAmountError$1 as InvalidAmountError, index$f_InvalidQuorumError as InvalidQuorumError, index$f_InvalidSignatureLenError as InvalidSignatureLenError, index$f_InvalidSignersLenError as InvalidSignersLenError, index$f_InvalidVidError as InvalidVidError, type index$f_InvokeInstructionAccounts as InvokeInstructionAccounts, type index$f_InvokeInstructionArgs as InvokeInstructionArgs, type index$f_InvokeInstructionData as InvokeInstructionData, type index$f_InvokeInstructionDataArgs as InvokeInstructionDataArgs, type LzOption$1 as LzOption, type LzOptionArgs$1 as LzOptionArgs, MsgLibNotAllowedError$1 as MsgLibNotAllowedError, type index$f_Multisig as Multisig, type index$f_MultisigArgs as MultisigArgs, type index$f_MultisigConfig as MultisigConfig, type index$f_MultisigConfigArgs as MultisigConfigArgs, NotAdminError$1 as NotAdminError, PausedError$1 as PausedError, type PickPartial$1 as PickPartial, type index$f_QuoteDvnInstructionAccounts as QuoteDvnInstructionAccounts, type index$f_QuoteDvnInstructionArgs as QuoteDvnInstructionArgs, type index$f_QuoteDvnInstructionData as QuoteDvnInstructionData, type index$f_QuoteDvnInstructionDataArgs as QuoteDvnInstructionDataArgs, type ReceiveConfig$1 as ReceiveConfig, type ReceiveConfigAccountData$1 as ReceiveConfigAccountData, type ReceiveConfigAccountDataArgs$1 as ReceiveConfigAccountDataArgs, type ResolvedAccount$1 as ResolvedAccount, type ResolvedAccounts$1 as ResolvedAccounts, type ResolvedAccountsWithIndices$1 as ResolvedAccountsWithIndices, type SetConfigInstructionAccounts$1 as SetConfigInstructionAccounts, type SetConfigInstructionArgs$1 as SetConfigInstructionArgs, type SetConfigInstructionData$1 as SetConfigInstructionData, type SetConfigInstructionDataArgs$1 as SetConfigInstructionDataArgs, index$f_SignatureErrorError as SignatureErrorError, index$f_SignerNotInCommitteeError as SignerNotInCommitteeError, TooManyAdminsError$1 as TooManyAdminsError, TooManyOptionTypesError$1 as TooManyOptionTypesError, type index$f_TransactionAccount as TransactionAccount, type index$f_TransactionAccountArgs as TransactionAccountArgs, type UlnConfig$1 as UlnConfig, type UlnConfigArgs$1 as UlnConfigArgs, index$f_UnexpiredExecuteHashError as UnexpiredExecuteHashError, index$f_UniqueOwnersError as UniqueOwnersError, type index$f_VerifiableInstructionAccounts as VerifiableInstructionAccounts, type index$f_VerifiableInstructionArgs as VerifiableInstructionArgs, type index$f_VerifiableInstructionData as VerifiableInstructionData, type index$f_VerifiableInstructionDataArgs as VerifiableInstructionDataArgs, index$f_VerificationState as VerificationState, type index$f_VerificationStateArgs as VerificationStateArgs, type index$f_WithdrawFeeInstructionAccounts as WithdrawFeeInstructionAccounts, type index$f_WithdrawFeeInstructionArgs as WithdrawFeeInstructionArgs, type index$f_WithdrawFeeInstructionData as WithdrawFeeInstructionData, type index$f_WithdrawFeeInstructionDataArgs as WithdrawFeeInstructionDataArgs, index$f_adminConfig as adminConfig, index$f_closeExecute as closeExecute, index$f_createDvnProgram as createDvnProgram, index$f_deserializeDvnConfig as deserializeDvnConfig, index$f_deserializeExecuteHash as deserializeExecuteHash, deserializeReceiveConfig$1 as deserializeReceiveConfig, expectPda$1 as expectPda, expectPublicKey$1 as expectPublicKey, expectSome$1 as expectSome, index$f_fetchAllDvnConfig as fetchAllDvnConfig, index$f_fetchAllExecuteHash as fetchAllExecuteHash, fetchAllReceiveConfig$1 as fetchAllReceiveConfig, index$f_fetchDvnConfig as fetchDvnConfig, index$f_fetchExecuteHash as fetchExecuteHash, fetchReceiveConfig$1 as fetchReceiveConfig, getAccountMetasAndSigners$1 as getAccountMetasAndSigners, getAclSerializer$1 as getAclSerializer, index$f_getAdminConfigSerializer as getAdminConfigSerializer, index$f_getCloseExecuteInstructionDataSerializer as getCloseExecuteInstructionDataSerializer, getDstConfigSerializer$1 as getDstConfigSerializer, index$f_getDvnConfigAccountDataSerializer as getDvnConfigAccountDataSerializer, index$f_getDvnConfigGpaBuilder as getDvnConfigGpaBuilder, index$f_getDvnErrorFromCode as getDvnErrorFromCode, index$f_getDvnErrorFromName as getDvnErrorFromName, index$f_getDvnProgram as getDvnProgram, index$f_getDvnProgramId as getDvnProgramId, index$f_getExecuteHashAccountDataSerializer as getExecuteHashAccountDataSerializer, index$f_getExecuteHashGpaBuilder as getExecuteHashGpaBuilder, index$f_getExecuteHashSize as getExecuteHashSize, index$f_getExecuteTransactionDigestSerializer as getExecuteTransactionDigestSerializer, index$f_getInitDvnInstructionDataSerializer as getInitDvnInstructionDataSerializer, index$f_getInvokeInstructionDataSerializer as getInvokeInstructionDataSerializer, getLzOptionSerializer$1 as getLzOptionSerializer, index$f_getMultisigConfigSerializer as getMultisigConfigSerializer, index$f_getMultisigSerializer as getMultisigSerializer, index$f_getQuoteDvnInstructionDataSerializer as getQuoteDvnInstructionDataSerializer, getReceiveConfigAccountDataSerializer$1 as getReceiveConfigAccountDataSerializer, getReceiveConfigGpaBuilder$1 as getReceiveConfigGpaBuilder, getSetConfigInstructionDataSerializer$1 as getSetConfigInstructionDataSerializer, index$f_getTransactionAccountSerializer as getTransactionAccountSerializer, getUlnConfigSerializer$1 as getUlnConfigSerializer, index$f_getVerifiableInstructionDataSerializer as getVerifiableInstructionDataSerializer, index$f_getVerificationStateSerializer as getVerificationStateSerializer, index$f_getWithdrawFeeInstructionDataSerializer as getWithdrawFeeInstructionDataSerializer, index$f_initDvn as initDvn, index$f_invoke as invoke, index$f_isAdminConfig as isAdminConfig, index$f_isMultisigConfig as isMultisigConfig, index$f_multisigConfig as multisigConfig, index$f_quoteDvn as quoteDvn, index$f_safeFetchAllDvnConfig as safeFetchAllDvnConfig, index$f_safeFetchAllExecuteHash as safeFetchAllExecuteHash, safeFetchAllReceiveConfig$1 as safeFetchAllReceiveConfig, index$f_safeFetchDvnConfig as safeFetchDvnConfig, index$f_safeFetchExecuteHash as safeFetchExecuteHash, safeFetchReceiveConfig$1 as safeFetchReceiveConfig, setConfig$1 as setConfig, index$f_verifiable as verifiable, index$f_withdrawFee as withdrawFee };
|
|
4802
|
+
export { type Acl$1 as Acl, type AclArgs$1 as AclArgs, type index$f_AdminConfig as AdminConfig, type index$f_AdminConfigArgs as AdminConfigArgs, type index$f_CloseExecuteInstructionAccounts as CloseExecuteInstructionAccounts, type index$f_CloseExecuteInstructionArgs as CloseExecuteInstructionArgs, type index$f_CloseExecuteInstructionData as CloseExecuteInstructionData, type index$f_CloseExecuteInstructionDataArgs as CloseExecuteInstructionDataArgs, index$f_DVN_PROGRAM_ID as DVN_PROGRAM_ID, type DstConfig$1 as DstConfig, type DstConfigArgs$1 as DstConfigArgs, index$f_DuplicateSignatureError as DuplicateSignatureError, type index$f_DvnConfig as DvnConfig, type index$f_DvnConfigAccountData as DvnConfigAccountData, type index$f_DvnConfigAccountDataArgs as DvnConfigAccountDataArgs, EidNotSupportedError$1 as EidNotSupportedError, type index$f_ExecuteHash as ExecuteHash, type index$f_ExecuteHashAccountData as ExecuteHashAccountData, type index$f_ExecuteHashAccountDataArgs as ExecuteHashAccountDataArgs, type index$f_ExecuteTransactionDigest as ExecuteTransactionDigest, type index$f_ExecuteTransactionDigestArgs as ExecuteTransactionDigestArgs, index$f_ExpiredError as ExpiredError, type index$f_ExtendDvnConfigInstructionAccounts as ExtendDvnConfigInstructionAccounts, type index$f_ExtendDvnConfigInstructionData as ExtendDvnConfigInstructionData, type index$f_ExtendDvnConfigInstructionDataArgs as ExtendDvnConfigInstructionDataArgs, type index$f_InitDvnInstructionAccounts as InitDvnInstructionAccounts, type index$f_InitDvnInstructionArgs as InitDvnInstructionArgs, type index$f_InitDvnInstructionData as InitDvnInstructionData, type index$f_InitDvnInstructionDataArgs as InitDvnInstructionDataArgs, InvalidAmountError$1 as InvalidAmountError, index$f_InvalidQuorumError as InvalidQuorumError, index$f_InvalidSignatureLenError as InvalidSignatureLenError, index$f_InvalidSignersLenError as InvalidSignersLenError, index$f_InvalidVidError as InvalidVidError, type index$f_InvokeInstructionAccounts as InvokeInstructionAccounts, type index$f_InvokeInstructionArgs as InvokeInstructionArgs, type index$f_InvokeInstructionData as InvokeInstructionData, type index$f_InvokeInstructionDataArgs as InvokeInstructionDataArgs, type LzOption$1 as LzOption, type LzOptionArgs$1 as LzOptionArgs, MsgLibNotAllowedError$1 as MsgLibNotAllowedError, type index$f_Multisig as Multisig, type index$f_MultisigArgs as MultisigArgs, type index$f_MultisigConfig as MultisigConfig, type index$f_MultisigConfigArgs as MultisigConfigArgs, NotAdminError$1 as NotAdminError, PausedError$1 as PausedError, type PickPartial$1 as PickPartial, type index$f_QuoteDvnInstructionAccounts as QuoteDvnInstructionAccounts, type index$f_QuoteDvnInstructionArgs as QuoteDvnInstructionArgs, type index$f_QuoteDvnInstructionData as QuoteDvnInstructionData, type index$f_QuoteDvnInstructionDataArgs as QuoteDvnInstructionDataArgs, type ReceiveConfig$1 as ReceiveConfig, type ReceiveConfigAccountData$1 as ReceiveConfigAccountData, type ReceiveConfigAccountDataArgs$1 as ReceiveConfigAccountDataArgs, type ResolvedAccount$1 as ResolvedAccount, type ResolvedAccounts$1 as ResolvedAccounts, type ResolvedAccountsWithIndices$1 as ResolvedAccountsWithIndices, type SetConfigInstructionAccounts$1 as SetConfigInstructionAccounts, type SetConfigInstructionArgs$1 as SetConfigInstructionArgs, type SetConfigInstructionData$1 as SetConfigInstructionData, type SetConfigInstructionDataArgs$1 as SetConfigInstructionDataArgs, index$f_SignatureErrorError as SignatureErrorError, index$f_SignerNotInCommitteeError as SignerNotInCommitteeError, TooManyAdminsError$1 as TooManyAdminsError, TooManyOptionTypesError$1 as TooManyOptionTypesError, type index$f_TransactionAccount as TransactionAccount, type index$f_TransactionAccountArgs as TransactionAccountArgs, type UlnConfig$1 as UlnConfig, type UlnConfigArgs$1 as UlnConfigArgs, index$f_UnexpiredExecuteHashError as UnexpiredExecuteHashError, index$f_UniqueOwnersError as UniqueOwnersError, type index$f_VerifiableInstructionAccounts as VerifiableInstructionAccounts, type index$f_VerifiableInstructionArgs as VerifiableInstructionArgs, type index$f_VerifiableInstructionData as VerifiableInstructionData, type index$f_VerifiableInstructionDataArgs as VerifiableInstructionDataArgs, index$f_VerificationState as VerificationState, type index$f_VerificationStateArgs as VerificationStateArgs, type index$f_WithdrawFeeInstructionAccounts as WithdrawFeeInstructionAccounts, type index$f_WithdrawFeeInstructionArgs as WithdrawFeeInstructionArgs, type index$f_WithdrawFeeInstructionData as WithdrawFeeInstructionData, type index$f_WithdrawFeeInstructionDataArgs as WithdrawFeeInstructionDataArgs, index$f_adminConfig as adminConfig, index$f_closeExecute as closeExecute, index$f_createDvnProgram as createDvnProgram, index$f_deserializeDvnConfig as deserializeDvnConfig, index$f_deserializeExecuteHash as deserializeExecuteHash, deserializeReceiveConfig$1 as deserializeReceiveConfig, expectPda$1 as expectPda, expectPublicKey$1 as expectPublicKey, expectSome$1 as expectSome, index$f_extendDvnConfig as extendDvnConfig, index$f_fetchAllDvnConfig as fetchAllDvnConfig, index$f_fetchAllExecuteHash as fetchAllExecuteHash, fetchAllReceiveConfig$1 as fetchAllReceiveConfig, index$f_fetchDvnConfig as fetchDvnConfig, index$f_fetchExecuteHash as fetchExecuteHash, fetchReceiveConfig$1 as fetchReceiveConfig, getAccountMetasAndSigners$1 as getAccountMetasAndSigners, getAclSerializer$1 as getAclSerializer, index$f_getAdminConfigSerializer as getAdminConfigSerializer, index$f_getCloseExecuteInstructionDataSerializer as getCloseExecuteInstructionDataSerializer, getDstConfigSerializer$1 as getDstConfigSerializer, index$f_getDvnConfigAccountDataSerializer as getDvnConfigAccountDataSerializer, index$f_getDvnConfigGpaBuilder as getDvnConfigGpaBuilder, index$f_getDvnErrorFromCode as getDvnErrorFromCode, index$f_getDvnErrorFromName as getDvnErrorFromName, index$f_getDvnProgram as getDvnProgram, index$f_getDvnProgramId as getDvnProgramId, index$f_getExecuteHashAccountDataSerializer as getExecuteHashAccountDataSerializer, index$f_getExecuteHashGpaBuilder as getExecuteHashGpaBuilder, index$f_getExecuteHashSize as getExecuteHashSize, index$f_getExecuteTransactionDigestSerializer as getExecuteTransactionDigestSerializer, index$f_getExtendDvnConfigInstructionDataSerializer as getExtendDvnConfigInstructionDataSerializer, index$f_getInitDvnInstructionDataSerializer as getInitDvnInstructionDataSerializer, index$f_getInvokeInstructionDataSerializer as getInvokeInstructionDataSerializer, getLzOptionSerializer$1 as getLzOptionSerializer, index$f_getMultisigConfigSerializer as getMultisigConfigSerializer, index$f_getMultisigSerializer as getMultisigSerializer, index$f_getQuoteDvnInstructionDataSerializer as getQuoteDvnInstructionDataSerializer, getReceiveConfigAccountDataSerializer$1 as getReceiveConfigAccountDataSerializer, getReceiveConfigGpaBuilder$1 as getReceiveConfigGpaBuilder, getSetConfigInstructionDataSerializer$1 as getSetConfigInstructionDataSerializer, index$f_getTransactionAccountSerializer as getTransactionAccountSerializer, getUlnConfigSerializer$1 as getUlnConfigSerializer, index$f_getVerifiableInstructionDataSerializer as getVerifiableInstructionDataSerializer, index$f_getVerificationStateSerializer as getVerificationStateSerializer, index$f_getWithdrawFeeInstructionDataSerializer as getWithdrawFeeInstructionDataSerializer, index$f_initDvn as initDvn, index$f_invoke as invoke, index$f_isAdminConfig as isAdminConfig, index$f_isMultisigConfig as isMultisigConfig, index$f_multisigConfig as multisigConfig, index$f_quoteDvn as quoteDvn, index$f_safeFetchAllDvnConfig as safeFetchAllDvnConfig, index$f_safeFetchAllExecuteHash as safeFetchAllExecuteHash, safeFetchAllReceiveConfig$1 as safeFetchAllReceiveConfig, index$f_safeFetchDvnConfig as safeFetchDvnConfig, index$f_safeFetchExecuteHash as safeFetchExecuteHash, safeFetchReceiveConfig$1 as safeFetchReceiveConfig, setConfig$1 as setConfig, index$f_verifiable as verifiable, index$f_withdrawFee as withdrawFee };
|
|
4773
4803
|
}
|
|
4774
4804
|
|
|
4775
4805
|
interface SignFunc {
|
|
@@ -5527,6 +5557,26 @@ declare function getExecuteInstructionDataSerializer(): Serializer<ExecuteInstru
|
|
|
5527
5557
|
type ExecuteInstructionArgs = ExecuteInstructionDataArgs;
|
|
5528
5558
|
declare function execute(context: Pick<Context, 'programs'>, input: ExecuteInstructionAccounts & ExecuteInstructionArgs): TransactionBuilder;
|
|
5529
5559
|
|
|
5560
|
+
/**
|
|
5561
|
+
* This code was AUTOGENERATED using the kinobi library.
|
|
5562
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
5563
|
+
* to add features, then rerun kinobi to update it.
|
|
5564
|
+
*
|
|
5565
|
+
* @see https://github.com/kinobi-so/kinobi
|
|
5566
|
+
*/
|
|
5567
|
+
|
|
5568
|
+
type ExtendExecutorConfigInstructionAccounts = {
|
|
5569
|
+
admin: Signer;
|
|
5570
|
+
config: PublicKey | Pda;
|
|
5571
|
+
systemProgram?: PublicKey | Pda;
|
|
5572
|
+
};
|
|
5573
|
+
type ExtendExecutorConfigInstructionData = {
|
|
5574
|
+
discriminator: Uint8Array;
|
|
5575
|
+
};
|
|
5576
|
+
type ExtendExecutorConfigInstructionDataArgs = {};
|
|
5577
|
+
declare function getExtendExecutorConfigInstructionDataSerializer(): Serializer<ExtendExecutorConfigInstructionDataArgs, ExtendExecutorConfigInstructionData>;
|
|
5578
|
+
declare function extendExecutorConfig(context: Pick<Context, 'programs'>, input: ExtendExecutorConfigInstructionAccounts): TransactionBuilder;
|
|
5579
|
+
|
|
5530
5580
|
/**
|
|
5531
5581
|
* This code was AUTOGENERATED using the kinobi library.
|
|
5532
5582
|
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
@@ -5675,6 +5725,9 @@ type index$a_AdminSetConfigInstructionAccounts = AdminSetConfigInstructionAccoun
|
|
|
5675
5725
|
type index$a_ExecuteInstructionArgs = ExecuteInstructionArgs;
|
|
5676
5726
|
type index$a_ExecuteInstructionData = ExecuteInstructionData;
|
|
5677
5727
|
type index$a_ExecuteInstructionDataArgs = ExecuteInstructionDataArgs;
|
|
5728
|
+
type index$a_ExtendExecutorConfigInstructionAccounts = ExtendExecutorConfigInstructionAccounts;
|
|
5729
|
+
type index$a_ExtendExecutorConfigInstructionData = ExtendExecutorConfigInstructionData;
|
|
5730
|
+
type index$a_ExtendExecutorConfigInstructionDataArgs = ExtendExecutorConfigInstructionDataArgs;
|
|
5678
5731
|
type index$a_InitExecutorInstructionAccounts = InitExecutorInstructionAccounts;
|
|
5679
5732
|
type index$a_InitExecutorInstructionArgs = InitExecutorInstructionArgs;
|
|
5680
5733
|
type index$a_InitExecutorInstructionData = InitExecutorInstructionData;
|
|
@@ -5695,10 +5748,12 @@ type index$a_AdminSetConfigInstructionAccounts = AdminSetConfigInstructionAccoun
|
|
|
5695
5748
|
declare const index$a_compose: typeof compose;
|
|
5696
5749
|
declare const index$a_executable: typeof executable;
|
|
5697
5750
|
declare const index$a_execute: typeof execute;
|
|
5751
|
+
declare const index$a_extendExecutorConfig: typeof extendExecutorConfig;
|
|
5698
5752
|
declare const index$a_getAdminSetConfigInstructionDataSerializer: typeof getAdminSetConfigInstructionDataSerializer;
|
|
5699
5753
|
declare const index$a_getComposeInstructionDataSerializer: typeof getComposeInstructionDataSerializer;
|
|
5700
5754
|
declare const index$a_getExecutableInstructionDataSerializer: typeof getExecutableInstructionDataSerializer;
|
|
5701
5755
|
declare const index$a_getExecuteInstructionDataSerializer: typeof getExecuteInstructionDataSerializer;
|
|
5756
|
+
declare const index$a_getExtendExecutorConfigInstructionDataSerializer: typeof getExtendExecutorConfigInstructionDataSerializer;
|
|
5702
5757
|
declare const index$a_getInitExecutorInstructionDataSerializer: typeof getInitExecutorInstructionDataSerializer;
|
|
5703
5758
|
declare const index$a_getNativeDropInstructionDataSerializer: typeof getNativeDropInstructionDataSerializer;
|
|
5704
5759
|
declare const index$a_getOwnerSetConfigInstructionDataSerializer: typeof getOwnerSetConfigInstructionDataSerializer;
|
|
@@ -5708,7 +5763,7 @@ type index$a_AdminSetConfigInstructionAccounts = AdminSetConfigInstructionAccoun
|
|
|
5708
5763
|
declare const index$a_ownerSetConfig: typeof ownerSetConfig;
|
|
5709
5764
|
declare const index$a_quoteExecutor: typeof quoteExecutor;
|
|
5710
5765
|
declare namespace index$a {
|
|
5711
|
-
export { type index$a_AdminSetConfigInstructionAccounts as AdminSetConfigInstructionAccounts, type index$a_AdminSetConfigInstructionArgs as AdminSetConfigInstructionArgs, type index$a_AdminSetConfigInstructionData as AdminSetConfigInstructionData, type index$a_AdminSetConfigInstructionDataArgs as AdminSetConfigInstructionDataArgs, type index$a_ComposeInstructionAccounts as ComposeInstructionAccounts, type index$a_ComposeInstructionArgs as ComposeInstructionArgs, type index$a_ComposeInstructionData as ComposeInstructionData, type index$a_ComposeInstructionDataArgs as ComposeInstructionDataArgs, type index$a_ExecutableInstructionAccounts as ExecutableInstructionAccounts, type index$a_ExecutableInstructionArgs as ExecutableInstructionArgs, type index$a_ExecutableInstructionData as ExecutableInstructionData, type index$a_ExecutableInstructionDataArgs as ExecutableInstructionDataArgs, type index$a_ExecuteInstructionAccounts as ExecuteInstructionAccounts, type index$a_ExecuteInstructionArgs as ExecuteInstructionArgs, type index$a_ExecuteInstructionData as ExecuteInstructionData, type index$a_ExecuteInstructionDataArgs as ExecuteInstructionDataArgs, type index$a_InitExecutorInstructionAccounts as InitExecutorInstructionAccounts, type index$a_InitExecutorInstructionArgs as InitExecutorInstructionArgs, type index$a_InitExecutorInstructionData as InitExecutorInstructionData, type index$a_InitExecutorInstructionDataArgs as InitExecutorInstructionDataArgs, type index$a_NativeDropInstructionAccounts as NativeDropInstructionAccounts, type index$a_NativeDropInstructionArgs as NativeDropInstructionArgs, type index$a_NativeDropInstructionData as NativeDropInstructionData, type index$a_NativeDropInstructionDataArgs as NativeDropInstructionDataArgs, type index$a_OwnerSetConfigInstructionAccounts as OwnerSetConfigInstructionAccounts, type index$a_OwnerSetConfigInstructionArgs as OwnerSetConfigInstructionArgs, type index$a_OwnerSetConfigInstructionData as OwnerSetConfigInstructionData, type index$a_OwnerSetConfigInstructionDataArgs as OwnerSetConfigInstructionDataArgs, type index$a_QuoteExecutorInstructionAccounts as QuoteExecutorInstructionAccounts, type index$a_QuoteExecutorInstructionArgs as QuoteExecutorInstructionArgs, type index$a_QuoteExecutorInstructionData as QuoteExecutorInstructionData, type index$a_QuoteExecutorInstructionDataArgs as QuoteExecutorInstructionDataArgs, index$a_adminSetConfig as adminSetConfig, index$a_compose as compose, index$a_executable as executable, index$a_execute as execute, index$a_getAdminSetConfigInstructionDataSerializer as getAdminSetConfigInstructionDataSerializer, index$a_getComposeInstructionDataSerializer as getComposeInstructionDataSerializer, index$a_getExecutableInstructionDataSerializer as getExecutableInstructionDataSerializer, index$a_getExecuteInstructionDataSerializer as getExecuteInstructionDataSerializer, index$a_getInitExecutorInstructionDataSerializer as getInitExecutorInstructionDataSerializer, index$a_getNativeDropInstructionDataSerializer as getNativeDropInstructionDataSerializer, index$a_getOwnerSetConfigInstructionDataSerializer as getOwnerSetConfigInstructionDataSerializer, index$a_getQuoteExecutorInstructionDataSerializer as getQuoteExecutorInstructionDataSerializer, index$a_initExecutor as initExecutor, index$a_nativeDrop as nativeDrop, index$a_ownerSetConfig as ownerSetConfig, index$a_quoteExecutor as quoteExecutor };
|
|
5766
|
+
export { type index$a_AdminSetConfigInstructionAccounts as AdminSetConfigInstructionAccounts, type index$a_AdminSetConfigInstructionArgs as AdminSetConfigInstructionArgs, type index$a_AdminSetConfigInstructionData as AdminSetConfigInstructionData, type index$a_AdminSetConfigInstructionDataArgs as AdminSetConfigInstructionDataArgs, type index$a_ComposeInstructionAccounts as ComposeInstructionAccounts, type index$a_ComposeInstructionArgs as ComposeInstructionArgs, type index$a_ComposeInstructionData as ComposeInstructionData, type index$a_ComposeInstructionDataArgs as ComposeInstructionDataArgs, type index$a_ExecutableInstructionAccounts as ExecutableInstructionAccounts, type index$a_ExecutableInstructionArgs as ExecutableInstructionArgs, type index$a_ExecutableInstructionData as ExecutableInstructionData, type index$a_ExecutableInstructionDataArgs as ExecutableInstructionDataArgs, type index$a_ExecuteInstructionAccounts as ExecuteInstructionAccounts, type index$a_ExecuteInstructionArgs as ExecuteInstructionArgs, type index$a_ExecuteInstructionData as ExecuteInstructionData, type index$a_ExecuteInstructionDataArgs as ExecuteInstructionDataArgs, type index$a_ExtendExecutorConfigInstructionAccounts as ExtendExecutorConfigInstructionAccounts, type index$a_ExtendExecutorConfigInstructionData as ExtendExecutorConfigInstructionData, type index$a_ExtendExecutorConfigInstructionDataArgs as ExtendExecutorConfigInstructionDataArgs, type index$a_InitExecutorInstructionAccounts as InitExecutorInstructionAccounts, type index$a_InitExecutorInstructionArgs as InitExecutorInstructionArgs, type index$a_InitExecutorInstructionData as InitExecutorInstructionData, type index$a_InitExecutorInstructionDataArgs as InitExecutorInstructionDataArgs, type index$a_NativeDropInstructionAccounts as NativeDropInstructionAccounts, type index$a_NativeDropInstructionArgs as NativeDropInstructionArgs, type index$a_NativeDropInstructionData as NativeDropInstructionData, type index$a_NativeDropInstructionDataArgs as NativeDropInstructionDataArgs, type index$a_OwnerSetConfigInstructionAccounts as OwnerSetConfigInstructionAccounts, type index$a_OwnerSetConfigInstructionArgs as OwnerSetConfigInstructionArgs, type index$a_OwnerSetConfigInstructionData as OwnerSetConfigInstructionData, type index$a_OwnerSetConfigInstructionDataArgs as OwnerSetConfigInstructionDataArgs, type index$a_QuoteExecutorInstructionAccounts as QuoteExecutorInstructionAccounts, type index$a_QuoteExecutorInstructionArgs as QuoteExecutorInstructionArgs, type index$a_QuoteExecutorInstructionData as QuoteExecutorInstructionData, type index$a_QuoteExecutorInstructionDataArgs as QuoteExecutorInstructionDataArgs, index$a_adminSetConfig as adminSetConfig, index$a_compose as compose, index$a_executable as executable, index$a_execute as execute, index$a_extendExecutorConfig as extendExecutorConfig, index$a_getAdminSetConfigInstructionDataSerializer as getAdminSetConfigInstructionDataSerializer, index$a_getComposeInstructionDataSerializer as getComposeInstructionDataSerializer, index$a_getExecutableInstructionDataSerializer as getExecutableInstructionDataSerializer, index$a_getExecuteInstructionDataSerializer as getExecuteInstructionDataSerializer, index$a_getExtendExecutorConfigInstructionDataSerializer as getExtendExecutorConfigInstructionDataSerializer, index$a_getInitExecutorInstructionDataSerializer as getInitExecutorInstructionDataSerializer, index$a_getNativeDropInstructionDataSerializer as getNativeDropInstructionDataSerializer, index$a_getOwnerSetConfigInstructionDataSerializer as getOwnerSetConfigInstructionDataSerializer, index$a_getQuoteExecutorInstructionDataSerializer as getQuoteExecutorInstructionDataSerializer, index$a_initExecutor as initExecutor, index$a_nativeDrop as nativeDrop, index$a_ownerSetConfig as ownerSetConfig, index$a_quoteExecutor as quoteExecutor };
|
|
5712
5767
|
}
|
|
5713
5768
|
|
|
5714
5769
|
/**
|
|
@@ -7788,6 +7843,26 @@ type index$2_InvalidSizeError = InvalidSizeError;
|
|
|
7788
7843
|
export { index$2_InvalidSizeError as InvalidSizeError, index$2_InvalidUpdaterError as InvalidUpdaterError, index$2_NotFoundError as NotFoundError, index$2_TooManyUpdatersError as TooManyUpdatersError, index$2_getPricefeedErrorFromCode as getPricefeedErrorFromCode, index$2_getPricefeedErrorFromName as getPricefeedErrorFromName };
|
|
7789
7844
|
}
|
|
7790
7845
|
|
|
7846
|
+
/**
|
|
7847
|
+
* This code was AUTOGENERATED using the kinobi library.
|
|
7848
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
7849
|
+
* to add features, then rerun kinobi to update it.
|
|
7850
|
+
*
|
|
7851
|
+
* @see https://github.com/kinobi-so/kinobi
|
|
7852
|
+
*/
|
|
7853
|
+
|
|
7854
|
+
type ExtendPriceFeedInstructionAccounts = {
|
|
7855
|
+
admin: Signer;
|
|
7856
|
+
priceFeed: PublicKey | Pda;
|
|
7857
|
+
systemProgram?: PublicKey | Pda;
|
|
7858
|
+
};
|
|
7859
|
+
type ExtendPriceFeedInstructionData = {
|
|
7860
|
+
discriminator: Uint8Array;
|
|
7861
|
+
};
|
|
7862
|
+
type ExtendPriceFeedInstructionDataArgs = {};
|
|
7863
|
+
declare function getExtendPriceFeedInstructionDataSerializer(): Serializer<ExtendPriceFeedInstructionDataArgs, ExtendPriceFeedInstructionData>;
|
|
7864
|
+
declare function extendPriceFeed(context: Pick<Context, 'programs'>, input: ExtendPriceFeedInstructionAccounts): TransactionBuilder;
|
|
7865
|
+
|
|
7791
7866
|
/**
|
|
7792
7867
|
* This code was AUTOGENERATED using the kinobi library.
|
|
7793
7868
|
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
@@ -7946,7 +8021,10 @@ declare function transferAdmin(context: Pick<Context, 'programs'>, accounts: Tra
|
|
|
7946
8021
|
* @see https://github.com/kinobi-so/kinobi
|
|
7947
8022
|
*/
|
|
7948
8023
|
|
|
7949
|
-
type index$
|
|
8024
|
+
type index$1_ExtendPriceFeedInstructionAccounts = ExtendPriceFeedInstructionAccounts;
|
|
8025
|
+
type index$1_ExtendPriceFeedInstructionData = ExtendPriceFeedInstructionData;
|
|
8026
|
+
type index$1_ExtendPriceFeedInstructionDataArgs = ExtendPriceFeedInstructionDataArgs;
|
|
8027
|
+
type index$1_GetFeeInstructionAccounts = GetFeeInstructionAccounts;
|
|
7950
8028
|
type index$1_GetFeeInstructionArgs = GetFeeInstructionArgs;
|
|
7951
8029
|
type index$1_GetFeeInstructionData = GetFeeInstructionData;
|
|
7952
8030
|
type index$1_GetFeeInstructionDataArgs = GetFeeInstructionDataArgs;
|
|
@@ -7970,6 +8048,8 @@ type index$1_GetFeeInstructionAccounts = GetFeeInstructionAccounts;
|
|
|
7970
8048
|
type index$1_TransferAdminInstructionArgs = TransferAdminInstructionArgs;
|
|
7971
8049
|
type index$1_TransferAdminInstructionData = TransferAdminInstructionData;
|
|
7972
8050
|
type index$1_TransferAdminInstructionDataArgs = TransferAdminInstructionDataArgs;
|
|
8051
|
+
declare const index$1_extendPriceFeed: typeof extendPriceFeed;
|
|
8052
|
+
declare const index$1_getExtendPriceFeedInstructionDataSerializer: typeof getExtendPriceFeedInstructionDataSerializer;
|
|
7973
8053
|
declare const index$1_getFee: typeof getFee;
|
|
7974
8054
|
declare const index$1_getGetFeeInstructionDataSerializer: typeof getGetFeeInstructionDataSerializer;
|
|
7975
8055
|
declare const index$1_getInitPriceFeedInstructionDataSerializer: typeof getInitPriceFeedInstructionDataSerializer;
|
|
@@ -7983,7 +8063,7 @@ type index$1_GetFeeInstructionAccounts = GetFeeInstructionAccounts;
|
|
|
7983
8063
|
declare const index$1_setSolPrice: typeof setSolPrice;
|
|
7984
8064
|
declare const index$1_transferAdmin: typeof transferAdmin;
|
|
7985
8065
|
declare namespace index$1 {
|
|
7986
|
-
export { type index$1_GetFeeInstructionAccounts as GetFeeInstructionAccounts, type index$1_GetFeeInstructionArgs as GetFeeInstructionArgs, type index$1_GetFeeInstructionData as GetFeeInstructionData, type index$1_GetFeeInstructionDataArgs as GetFeeInstructionDataArgs, type index$1_InitPriceFeedInstructionAccounts as InitPriceFeedInstructionAccounts, type index$1_InitPriceFeedInstructionArgs as InitPriceFeedInstructionArgs, type index$1_InitPriceFeedInstructionData as InitPriceFeedInstructionData, type index$1_InitPriceFeedInstructionDataArgs as InitPriceFeedInstructionDataArgs, type index$1_SetPriceFeedInstructionAccounts as SetPriceFeedInstructionAccounts, type index$1_SetPriceFeedInstructionArgs as SetPriceFeedInstructionArgs, type index$1_SetPriceFeedInstructionData as SetPriceFeedInstructionData, type index$1_SetPriceFeedInstructionDataArgs as SetPriceFeedInstructionDataArgs, type index$1_SetPriceInstructionAccounts as SetPriceInstructionAccounts, type index$1_SetPriceInstructionArgs as SetPriceInstructionArgs, type index$1_SetPriceInstructionData as SetPriceInstructionData, type index$1_SetPriceInstructionDataArgs as SetPriceInstructionDataArgs, type index$1_SetSolPriceInstructionAccounts as SetSolPriceInstructionAccounts, type index$1_SetSolPriceInstructionArgs as SetSolPriceInstructionArgs, type index$1_SetSolPriceInstructionData as SetSolPriceInstructionData, type index$1_SetSolPriceInstructionDataArgs as SetSolPriceInstructionDataArgs, type index$1_TransferAdminInstructionAccounts as TransferAdminInstructionAccounts, type index$1_TransferAdminInstructionArgs as TransferAdminInstructionArgs, type index$1_TransferAdminInstructionData as TransferAdminInstructionData, type index$1_TransferAdminInstructionDataArgs as TransferAdminInstructionDataArgs, index$1_getFee as getFee, index$1_getGetFeeInstructionDataSerializer as getGetFeeInstructionDataSerializer, index$1_getInitPriceFeedInstructionDataSerializer as getInitPriceFeedInstructionDataSerializer, index$1_getSetPriceFeedInstructionDataSerializer as getSetPriceFeedInstructionDataSerializer, index$1_getSetPriceInstructionDataSerializer as getSetPriceInstructionDataSerializer, index$1_getSetSolPriceInstructionDataSerializer as getSetSolPriceInstructionDataSerializer, index$1_getTransferAdminInstructionDataSerializer as getTransferAdminInstructionDataSerializer, index$1_initPriceFeed as initPriceFeed, index$1_setPrice as setPrice, index$1_setPriceFeed as setPriceFeed, index$1_setSolPrice as setSolPrice, index$1_transferAdmin as transferAdmin };
|
|
8066
|
+
export { type index$1_ExtendPriceFeedInstructionAccounts as ExtendPriceFeedInstructionAccounts, type index$1_ExtendPriceFeedInstructionData as ExtendPriceFeedInstructionData, type index$1_ExtendPriceFeedInstructionDataArgs as ExtendPriceFeedInstructionDataArgs, type index$1_GetFeeInstructionAccounts as GetFeeInstructionAccounts, type index$1_GetFeeInstructionArgs as GetFeeInstructionArgs, type index$1_GetFeeInstructionData as GetFeeInstructionData, type index$1_GetFeeInstructionDataArgs as GetFeeInstructionDataArgs, type index$1_InitPriceFeedInstructionAccounts as InitPriceFeedInstructionAccounts, type index$1_InitPriceFeedInstructionArgs as InitPriceFeedInstructionArgs, type index$1_InitPriceFeedInstructionData as InitPriceFeedInstructionData, type index$1_InitPriceFeedInstructionDataArgs as InitPriceFeedInstructionDataArgs, type index$1_SetPriceFeedInstructionAccounts as SetPriceFeedInstructionAccounts, type index$1_SetPriceFeedInstructionArgs as SetPriceFeedInstructionArgs, type index$1_SetPriceFeedInstructionData as SetPriceFeedInstructionData, type index$1_SetPriceFeedInstructionDataArgs as SetPriceFeedInstructionDataArgs, type index$1_SetPriceInstructionAccounts as SetPriceInstructionAccounts, type index$1_SetPriceInstructionArgs as SetPriceInstructionArgs, type index$1_SetPriceInstructionData as SetPriceInstructionData, type index$1_SetPriceInstructionDataArgs as SetPriceInstructionDataArgs, type index$1_SetSolPriceInstructionAccounts as SetSolPriceInstructionAccounts, type index$1_SetSolPriceInstructionArgs as SetSolPriceInstructionArgs, type index$1_SetSolPriceInstructionData as SetSolPriceInstructionData, type index$1_SetSolPriceInstructionDataArgs as SetSolPriceInstructionDataArgs, type index$1_TransferAdminInstructionAccounts as TransferAdminInstructionAccounts, type index$1_TransferAdminInstructionArgs as TransferAdminInstructionArgs, type index$1_TransferAdminInstructionData as TransferAdminInstructionData, type index$1_TransferAdminInstructionDataArgs as TransferAdminInstructionDataArgs, index$1_extendPriceFeed as extendPriceFeed, index$1_getExtendPriceFeedInstructionDataSerializer as getExtendPriceFeedInstructionDataSerializer, index$1_getFee as getFee, index$1_getGetFeeInstructionDataSerializer as getGetFeeInstructionDataSerializer, index$1_getInitPriceFeedInstructionDataSerializer as getInitPriceFeedInstructionDataSerializer, index$1_getSetPriceFeedInstructionDataSerializer as getSetPriceFeedInstructionDataSerializer, index$1_getSetPriceInstructionDataSerializer as getSetPriceInstructionDataSerializer, index$1_getSetSolPriceInstructionDataSerializer as getSetSolPriceInstructionDataSerializer, index$1_getTransferAdminInstructionDataSerializer as getTransferAdminInstructionDataSerializer, index$1_initPriceFeed as initPriceFeed, index$1_setPrice as setPrice, index$1_setPriceFeed as setPriceFeed, index$1_setSolPrice as setSolPrice, index$1_transferAdmin as transferAdmin };
|
|
7987
8067
|
}
|
|
7988
8068
|
|
|
7989
8069
|
/**
|
package/dist/umi.d.ts
CHANGED
|
@@ -4362,6 +4362,26 @@ declare function getCloseExecuteInstructionDataSerializer(): Serializer<CloseExe
|
|
|
4362
4362
|
type CloseExecuteInstructionArgs = CloseExecuteInstructionDataArgs;
|
|
4363
4363
|
declare function closeExecute(context: Pick<Context, 'programs'>, input: CloseExecuteInstructionAccounts & CloseExecuteInstructionArgs): TransactionBuilder;
|
|
4364
4364
|
|
|
4365
|
+
/**
|
|
4366
|
+
* This code was AUTOGENERATED using the kinobi library.
|
|
4367
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
4368
|
+
* to add features, then rerun kinobi to update it.
|
|
4369
|
+
*
|
|
4370
|
+
* @see https://github.com/kinobi-so/kinobi
|
|
4371
|
+
*/
|
|
4372
|
+
|
|
4373
|
+
type ExtendDvnConfigInstructionAccounts = {
|
|
4374
|
+
admin: Signer;
|
|
4375
|
+
config: PublicKey | Pda;
|
|
4376
|
+
systemProgram?: PublicKey | Pda;
|
|
4377
|
+
};
|
|
4378
|
+
type ExtendDvnConfigInstructionData = {
|
|
4379
|
+
discriminator: Uint8Array;
|
|
4380
|
+
};
|
|
4381
|
+
type ExtendDvnConfigInstructionDataArgs = {};
|
|
4382
|
+
declare function getExtendDvnConfigInstructionDataSerializer(): Serializer<ExtendDvnConfigInstructionDataArgs, ExtendDvnConfigInstructionData>;
|
|
4383
|
+
declare function extendDvnConfig(context: Pick<Context, 'programs'>, input: ExtendDvnConfigInstructionAccounts): TransactionBuilder;
|
|
4384
|
+
|
|
4365
4385
|
/**
|
|
4366
4386
|
* This code was AUTOGENERATED using the kinobi library.
|
|
4367
4387
|
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
@@ -4551,6 +4571,9 @@ type index$g_CloseExecuteInstructionAccounts = CloseExecuteInstructionAccounts;
|
|
|
4551
4571
|
type index$g_CloseExecuteInstructionArgs = CloseExecuteInstructionArgs;
|
|
4552
4572
|
type index$g_CloseExecuteInstructionData = CloseExecuteInstructionData;
|
|
4553
4573
|
type index$g_CloseExecuteInstructionDataArgs = CloseExecuteInstructionDataArgs;
|
|
4574
|
+
type index$g_ExtendDvnConfigInstructionAccounts = ExtendDvnConfigInstructionAccounts;
|
|
4575
|
+
type index$g_ExtendDvnConfigInstructionData = ExtendDvnConfigInstructionData;
|
|
4576
|
+
type index$g_ExtendDvnConfigInstructionDataArgs = ExtendDvnConfigInstructionDataArgs;
|
|
4554
4577
|
type index$g_InitDvnInstructionAccounts = InitDvnInstructionAccounts;
|
|
4555
4578
|
type index$g_InitDvnInstructionArgs = InitDvnInstructionArgs;
|
|
4556
4579
|
type index$g_InitDvnInstructionData = InitDvnInstructionData;
|
|
@@ -4572,7 +4595,9 @@ type index$g_CloseExecuteInstructionAccounts = CloseExecuteInstructionAccounts;
|
|
|
4572
4595
|
type index$g_WithdrawFeeInstructionData = WithdrawFeeInstructionData;
|
|
4573
4596
|
type index$g_WithdrawFeeInstructionDataArgs = WithdrawFeeInstructionDataArgs;
|
|
4574
4597
|
declare const index$g_closeExecute: typeof closeExecute;
|
|
4598
|
+
declare const index$g_extendDvnConfig: typeof extendDvnConfig;
|
|
4575
4599
|
declare const index$g_getCloseExecuteInstructionDataSerializer: typeof getCloseExecuteInstructionDataSerializer;
|
|
4600
|
+
declare const index$g_getExtendDvnConfigInstructionDataSerializer: typeof getExtendDvnConfigInstructionDataSerializer;
|
|
4576
4601
|
declare const index$g_getInitDvnInstructionDataSerializer: typeof getInitDvnInstructionDataSerializer;
|
|
4577
4602
|
declare const index$g_getInvokeInstructionDataSerializer: typeof getInvokeInstructionDataSerializer;
|
|
4578
4603
|
declare const index$g_getQuoteDvnInstructionDataSerializer: typeof getQuoteDvnInstructionDataSerializer;
|
|
@@ -4584,7 +4609,7 @@ type index$g_CloseExecuteInstructionAccounts = CloseExecuteInstructionAccounts;
|
|
|
4584
4609
|
declare const index$g_verifiable: typeof verifiable;
|
|
4585
4610
|
declare const index$g_withdrawFee: typeof withdrawFee;
|
|
4586
4611
|
declare namespace index$g {
|
|
4587
|
-
export { type index$g_CloseExecuteInstructionAccounts as CloseExecuteInstructionAccounts, type index$g_CloseExecuteInstructionArgs as CloseExecuteInstructionArgs, type index$g_CloseExecuteInstructionData as CloseExecuteInstructionData, type index$g_CloseExecuteInstructionDataArgs as CloseExecuteInstructionDataArgs, type index$g_InitDvnInstructionAccounts as InitDvnInstructionAccounts, type index$g_InitDvnInstructionArgs as InitDvnInstructionArgs, type index$g_InitDvnInstructionData as InitDvnInstructionData, type index$g_InitDvnInstructionDataArgs as InitDvnInstructionDataArgs, type index$g_InvokeInstructionAccounts as InvokeInstructionAccounts, type index$g_InvokeInstructionArgs as InvokeInstructionArgs, type index$g_InvokeInstructionData as InvokeInstructionData, type index$g_InvokeInstructionDataArgs as InvokeInstructionDataArgs, type index$g_QuoteDvnInstructionAccounts as QuoteDvnInstructionAccounts, type index$g_QuoteDvnInstructionArgs as QuoteDvnInstructionArgs, type index$g_QuoteDvnInstructionData as QuoteDvnInstructionData, type index$g_QuoteDvnInstructionDataArgs as QuoteDvnInstructionDataArgs, type SetConfigInstructionAccounts$1 as SetConfigInstructionAccounts, type SetConfigInstructionArgs$1 as SetConfigInstructionArgs, type SetConfigInstructionData$1 as SetConfigInstructionData, type SetConfigInstructionDataArgs$1 as SetConfigInstructionDataArgs, type index$g_VerifiableInstructionAccounts as VerifiableInstructionAccounts, type index$g_VerifiableInstructionArgs as VerifiableInstructionArgs, type index$g_VerifiableInstructionData as VerifiableInstructionData, type index$g_VerifiableInstructionDataArgs as VerifiableInstructionDataArgs, type index$g_WithdrawFeeInstructionAccounts as WithdrawFeeInstructionAccounts, type index$g_WithdrawFeeInstructionArgs as WithdrawFeeInstructionArgs, type index$g_WithdrawFeeInstructionData as WithdrawFeeInstructionData, type index$g_WithdrawFeeInstructionDataArgs as WithdrawFeeInstructionDataArgs, index$g_closeExecute as closeExecute, index$g_getCloseExecuteInstructionDataSerializer as getCloseExecuteInstructionDataSerializer, index$g_getInitDvnInstructionDataSerializer as getInitDvnInstructionDataSerializer, index$g_getInvokeInstructionDataSerializer as getInvokeInstructionDataSerializer, index$g_getQuoteDvnInstructionDataSerializer as getQuoteDvnInstructionDataSerializer, getSetConfigInstructionDataSerializer$1 as getSetConfigInstructionDataSerializer, index$g_getVerifiableInstructionDataSerializer as getVerifiableInstructionDataSerializer, index$g_getWithdrawFeeInstructionDataSerializer as getWithdrawFeeInstructionDataSerializer, index$g_initDvn as initDvn, index$g_invoke as invoke, index$g_quoteDvn as quoteDvn, setConfig$1 as setConfig, index$g_verifiable as verifiable, index$g_withdrawFee as withdrawFee };
|
|
4612
|
+
export { type index$g_CloseExecuteInstructionAccounts as CloseExecuteInstructionAccounts, type index$g_CloseExecuteInstructionArgs as CloseExecuteInstructionArgs, type index$g_CloseExecuteInstructionData as CloseExecuteInstructionData, type index$g_CloseExecuteInstructionDataArgs as CloseExecuteInstructionDataArgs, type index$g_ExtendDvnConfigInstructionAccounts as ExtendDvnConfigInstructionAccounts, type index$g_ExtendDvnConfigInstructionData as ExtendDvnConfigInstructionData, type index$g_ExtendDvnConfigInstructionDataArgs as ExtendDvnConfigInstructionDataArgs, type index$g_InitDvnInstructionAccounts as InitDvnInstructionAccounts, type index$g_InitDvnInstructionArgs as InitDvnInstructionArgs, type index$g_InitDvnInstructionData as InitDvnInstructionData, type index$g_InitDvnInstructionDataArgs as InitDvnInstructionDataArgs, type index$g_InvokeInstructionAccounts as InvokeInstructionAccounts, type index$g_InvokeInstructionArgs as InvokeInstructionArgs, type index$g_InvokeInstructionData as InvokeInstructionData, type index$g_InvokeInstructionDataArgs as InvokeInstructionDataArgs, type index$g_QuoteDvnInstructionAccounts as QuoteDvnInstructionAccounts, type index$g_QuoteDvnInstructionArgs as QuoteDvnInstructionArgs, type index$g_QuoteDvnInstructionData as QuoteDvnInstructionData, type index$g_QuoteDvnInstructionDataArgs as QuoteDvnInstructionDataArgs, type SetConfigInstructionAccounts$1 as SetConfigInstructionAccounts, type SetConfigInstructionArgs$1 as SetConfigInstructionArgs, type SetConfigInstructionData$1 as SetConfigInstructionData, type SetConfigInstructionDataArgs$1 as SetConfigInstructionDataArgs, type index$g_VerifiableInstructionAccounts as VerifiableInstructionAccounts, type index$g_VerifiableInstructionArgs as VerifiableInstructionArgs, type index$g_VerifiableInstructionData as VerifiableInstructionData, type index$g_VerifiableInstructionDataArgs as VerifiableInstructionDataArgs, type index$g_WithdrawFeeInstructionAccounts as WithdrawFeeInstructionAccounts, type index$g_WithdrawFeeInstructionArgs as WithdrawFeeInstructionArgs, type index$g_WithdrawFeeInstructionData as WithdrawFeeInstructionData, type index$g_WithdrawFeeInstructionDataArgs as WithdrawFeeInstructionDataArgs, index$g_closeExecute as closeExecute, index$g_extendDvnConfig as extendDvnConfig, index$g_getCloseExecuteInstructionDataSerializer as getCloseExecuteInstructionDataSerializer, index$g_getExtendDvnConfigInstructionDataSerializer as getExtendDvnConfigInstructionDataSerializer, index$g_getInitDvnInstructionDataSerializer as getInitDvnInstructionDataSerializer, index$g_getInvokeInstructionDataSerializer as getInvokeInstructionDataSerializer, index$g_getQuoteDvnInstructionDataSerializer as getQuoteDvnInstructionDataSerializer, getSetConfigInstructionDataSerializer$1 as getSetConfigInstructionDataSerializer, index$g_getVerifiableInstructionDataSerializer as getVerifiableInstructionDataSerializer, index$g_getWithdrawFeeInstructionDataSerializer as getWithdrawFeeInstructionDataSerializer, index$g_initDvn as initDvn, index$g_invoke as invoke, index$g_quoteDvn as quoteDvn, setConfig$1 as setConfig, index$g_verifiable as verifiable, index$g_withdrawFee as withdrawFee };
|
|
4588
4613
|
}
|
|
4589
4614
|
|
|
4590
4615
|
/**
|
|
@@ -4681,6 +4706,9 @@ type index$f_AdminConfig = AdminConfig;
|
|
|
4681
4706
|
type index$f_ExecuteTransactionDigestArgs = ExecuteTransactionDigestArgs;
|
|
4682
4707
|
type index$f_ExpiredError = ExpiredError;
|
|
4683
4708
|
declare const index$f_ExpiredError: typeof ExpiredError;
|
|
4709
|
+
type index$f_ExtendDvnConfigInstructionAccounts = ExtendDvnConfigInstructionAccounts;
|
|
4710
|
+
type index$f_ExtendDvnConfigInstructionData = ExtendDvnConfigInstructionData;
|
|
4711
|
+
type index$f_ExtendDvnConfigInstructionDataArgs = ExtendDvnConfigInstructionDataArgs;
|
|
4684
4712
|
type index$f_InitDvnInstructionAccounts = InitDvnInstructionAccounts;
|
|
4685
4713
|
type index$f_InitDvnInstructionArgs = InitDvnInstructionArgs;
|
|
4686
4714
|
type index$f_InitDvnInstructionData = InitDvnInstructionData;
|
|
@@ -4731,6 +4759,7 @@ type index$f_AdminConfig = AdminConfig;
|
|
|
4731
4759
|
declare const index$f_createDvnProgram: typeof createDvnProgram;
|
|
4732
4760
|
declare const index$f_deserializeDvnConfig: typeof deserializeDvnConfig;
|
|
4733
4761
|
declare const index$f_deserializeExecuteHash: typeof deserializeExecuteHash;
|
|
4762
|
+
declare const index$f_extendDvnConfig: typeof extendDvnConfig;
|
|
4734
4763
|
declare const index$f_fetchAllDvnConfig: typeof fetchAllDvnConfig;
|
|
4735
4764
|
declare const index$f_fetchAllExecuteHash: typeof fetchAllExecuteHash;
|
|
4736
4765
|
declare const index$f_fetchDvnConfig: typeof fetchDvnConfig;
|
|
@@ -4747,6 +4776,7 @@ type index$f_AdminConfig = AdminConfig;
|
|
|
4747
4776
|
declare const index$f_getExecuteHashGpaBuilder: typeof getExecuteHashGpaBuilder;
|
|
4748
4777
|
declare const index$f_getExecuteHashSize: typeof getExecuteHashSize;
|
|
4749
4778
|
declare const index$f_getExecuteTransactionDigestSerializer: typeof getExecuteTransactionDigestSerializer;
|
|
4779
|
+
declare const index$f_getExtendDvnConfigInstructionDataSerializer: typeof getExtendDvnConfigInstructionDataSerializer;
|
|
4750
4780
|
declare const index$f_getInitDvnInstructionDataSerializer: typeof getInitDvnInstructionDataSerializer;
|
|
4751
4781
|
declare const index$f_getInvokeInstructionDataSerializer: typeof getInvokeInstructionDataSerializer;
|
|
4752
4782
|
declare const index$f_getMultisigConfigSerializer: typeof getMultisigConfigSerializer;
|
|
@@ -4769,7 +4799,7 @@ type index$f_AdminConfig = AdminConfig;
|
|
|
4769
4799
|
declare const index$f_verifiable: typeof verifiable;
|
|
4770
4800
|
declare const index$f_withdrawFee: typeof withdrawFee;
|
|
4771
4801
|
declare namespace index$f {
|
|
4772
|
-
export { type Acl$1 as Acl, type AclArgs$1 as AclArgs, type index$f_AdminConfig as AdminConfig, type index$f_AdminConfigArgs as AdminConfigArgs, type index$f_CloseExecuteInstructionAccounts as CloseExecuteInstructionAccounts, type index$f_CloseExecuteInstructionArgs as CloseExecuteInstructionArgs, type index$f_CloseExecuteInstructionData as CloseExecuteInstructionData, type index$f_CloseExecuteInstructionDataArgs as CloseExecuteInstructionDataArgs, index$f_DVN_PROGRAM_ID as DVN_PROGRAM_ID, type DstConfig$1 as DstConfig, type DstConfigArgs$1 as DstConfigArgs, index$f_DuplicateSignatureError as DuplicateSignatureError, type index$f_DvnConfig as DvnConfig, type index$f_DvnConfigAccountData as DvnConfigAccountData, type index$f_DvnConfigAccountDataArgs as DvnConfigAccountDataArgs, EidNotSupportedError$1 as EidNotSupportedError, type index$f_ExecuteHash as ExecuteHash, type index$f_ExecuteHashAccountData as ExecuteHashAccountData, type index$f_ExecuteHashAccountDataArgs as ExecuteHashAccountDataArgs, type index$f_ExecuteTransactionDigest as ExecuteTransactionDigest, type index$f_ExecuteTransactionDigestArgs as ExecuteTransactionDigestArgs, index$f_ExpiredError as ExpiredError, type index$f_InitDvnInstructionAccounts as InitDvnInstructionAccounts, type index$f_InitDvnInstructionArgs as InitDvnInstructionArgs, type index$f_InitDvnInstructionData as InitDvnInstructionData, type index$f_InitDvnInstructionDataArgs as InitDvnInstructionDataArgs, InvalidAmountError$1 as InvalidAmountError, index$f_InvalidQuorumError as InvalidQuorumError, index$f_InvalidSignatureLenError as InvalidSignatureLenError, index$f_InvalidSignersLenError as InvalidSignersLenError, index$f_InvalidVidError as InvalidVidError, type index$f_InvokeInstructionAccounts as InvokeInstructionAccounts, type index$f_InvokeInstructionArgs as InvokeInstructionArgs, type index$f_InvokeInstructionData as InvokeInstructionData, type index$f_InvokeInstructionDataArgs as InvokeInstructionDataArgs, type LzOption$1 as LzOption, type LzOptionArgs$1 as LzOptionArgs, MsgLibNotAllowedError$1 as MsgLibNotAllowedError, type index$f_Multisig as Multisig, type index$f_MultisigArgs as MultisigArgs, type index$f_MultisigConfig as MultisigConfig, type index$f_MultisigConfigArgs as MultisigConfigArgs, NotAdminError$1 as NotAdminError, PausedError$1 as PausedError, type PickPartial$1 as PickPartial, type index$f_QuoteDvnInstructionAccounts as QuoteDvnInstructionAccounts, type index$f_QuoteDvnInstructionArgs as QuoteDvnInstructionArgs, type index$f_QuoteDvnInstructionData as QuoteDvnInstructionData, type index$f_QuoteDvnInstructionDataArgs as QuoteDvnInstructionDataArgs, type ReceiveConfig$1 as ReceiveConfig, type ReceiveConfigAccountData$1 as ReceiveConfigAccountData, type ReceiveConfigAccountDataArgs$1 as ReceiveConfigAccountDataArgs, type ResolvedAccount$1 as ResolvedAccount, type ResolvedAccounts$1 as ResolvedAccounts, type ResolvedAccountsWithIndices$1 as ResolvedAccountsWithIndices, type SetConfigInstructionAccounts$1 as SetConfigInstructionAccounts, type SetConfigInstructionArgs$1 as SetConfigInstructionArgs, type SetConfigInstructionData$1 as SetConfigInstructionData, type SetConfigInstructionDataArgs$1 as SetConfigInstructionDataArgs, index$f_SignatureErrorError as SignatureErrorError, index$f_SignerNotInCommitteeError as SignerNotInCommitteeError, TooManyAdminsError$1 as TooManyAdminsError, TooManyOptionTypesError$1 as TooManyOptionTypesError, type index$f_TransactionAccount as TransactionAccount, type index$f_TransactionAccountArgs as TransactionAccountArgs, type UlnConfig$1 as UlnConfig, type UlnConfigArgs$1 as UlnConfigArgs, index$f_UnexpiredExecuteHashError as UnexpiredExecuteHashError, index$f_UniqueOwnersError as UniqueOwnersError, type index$f_VerifiableInstructionAccounts as VerifiableInstructionAccounts, type index$f_VerifiableInstructionArgs as VerifiableInstructionArgs, type index$f_VerifiableInstructionData as VerifiableInstructionData, type index$f_VerifiableInstructionDataArgs as VerifiableInstructionDataArgs, index$f_VerificationState as VerificationState, type index$f_VerificationStateArgs as VerificationStateArgs, type index$f_WithdrawFeeInstructionAccounts as WithdrawFeeInstructionAccounts, type index$f_WithdrawFeeInstructionArgs as WithdrawFeeInstructionArgs, type index$f_WithdrawFeeInstructionData as WithdrawFeeInstructionData, type index$f_WithdrawFeeInstructionDataArgs as WithdrawFeeInstructionDataArgs, index$f_adminConfig as adminConfig, index$f_closeExecute as closeExecute, index$f_createDvnProgram as createDvnProgram, index$f_deserializeDvnConfig as deserializeDvnConfig, index$f_deserializeExecuteHash as deserializeExecuteHash, deserializeReceiveConfig$1 as deserializeReceiveConfig, expectPda$1 as expectPda, expectPublicKey$1 as expectPublicKey, expectSome$1 as expectSome, index$f_fetchAllDvnConfig as fetchAllDvnConfig, index$f_fetchAllExecuteHash as fetchAllExecuteHash, fetchAllReceiveConfig$1 as fetchAllReceiveConfig, index$f_fetchDvnConfig as fetchDvnConfig, index$f_fetchExecuteHash as fetchExecuteHash, fetchReceiveConfig$1 as fetchReceiveConfig, getAccountMetasAndSigners$1 as getAccountMetasAndSigners, getAclSerializer$1 as getAclSerializer, index$f_getAdminConfigSerializer as getAdminConfigSerializer, index$f_getCloseExecuteInstructionDataSerializer as getCloseExecuteInstructionDataSerializer, getDstConfigSerializer$1 as getDstConfigSerializer, index$f_getDvnConfigAccountDataSerializer as getDvnConfigAccountDataSerializer, index$f_getDvnConfigGpaBuilder as getDvnConfigGpaBuilder, index$f_getDvnErrorFromCode as getDvnErrorFromCode, index$f_getDvnErrorFromName as getDvnErrorFromName, index$f_getDvnProgram as getDvnProgram, index$f_getDvnProgramId as getDvnProgramId, index$f_getExecuteHashAccountDataSerializer as getExecuteHashAccountDataSerializer, index$f_getExecuteHashGpaBuilder as getExecuteHashGpaBuilder, index$f_getExecuteHashSize as getExecuteHashSize, index$f_getExecuteTransactionDigestSerializer as getExecuteTransactionDigestSerializer, index$f_getInitDvnInstructionDataSerializer as getInitDvnInstructionDataSerializer, index$f_getInvokeInstructionDataSerializer as getInvokeInstructionDataSerializer, getLzOptionSerializer$1 as getLzOptionSerializer, index$f_getMultisigConfigSerializer as getMultisigConfigSerializer, index$f_getMultisigSerializer as getMultisigSerializer, index$f_getQuoteDvnInstructionDataSerializer as getQuoteDvnInstructionDataSerializer, getReceiveConfigAccountDataSerializer$1 as getReceiveConfigAccountDataSerializer, getReceiveConfigGpaBuilder$1 as getReceiveConfigGpaBuilder, getSetConfigInstructionDataSerializer$1 as getSetConfigInstructionDataSerializer, index$f_getTransactionAccountSerializer as getTransactionAccountSerializer, getUlnConfigSerializer$1 as getUlnConfigSerializer, index$f_getVerifiableInstructionDataSerializer as getVerifiableInstructionDataSerializer, index$f_getVerificationStateSerializer as getVerificationStateSerializer, index$f_getWithdrawFeeInstructionDataSerializer as getWithdrawFeeInstructionDataSerializer, index$f_initDvn as initDvn, index$f_invoke as invoke, index$f_isAdminConfig as isAdminConfig, index$f_isMultisigConfig as isMultisigConfig, index$f_multisigConfig as multisigConfig, index$f_quoteDvn as quoteDvn, index$f_safeFetchAllDvnConfig as safeFetchAllDvnConfig, index$f_safeFetchAllExecuteHash as safeFetchAllExecuteHash, safeFetchAllReceiveConfig$1 as safeFetchAllReceiveConfig, index$f_safeFetchDvnConfig as safeFetchDvnConfig, index$f_safeFetchExecuteHash as safeFetchExecuteHash, safeFetchReceiveConfig$1 as safeFetchReceiveConfig, setConfig$1 as setConfig, index$f_verifiable as verifiable, index$f_withdrawFee as withdrawFee };
|
|
4802
|
+
export { type Acl$1 as Acl, type AclArgs$1 as AclArgs, type index$f_AdminConfig as AdminConfig, type index$f_AdminConfigArgs as AdminConfigArgs, type index$f_CloseExecuteInstructionAccounts as CloseExecuteInstructionAccounts, type index$f_CloseExecuteInstructionArgs as CloseExecuteInstructionArgs, type index$f_CloseExecuteInstructionData as CloseExecuteInstructionData, type index$f_CloseExecuteInstructionDataArgs as CloseExecuteInstructionDataArgs, index$f_DVN_PROGRAM_ID as DVN_PROGRAM_ID, type DstConfig$1 as DstConfig, type DstConfigArgs$1 as DstConfigArgs, index$f_DuplicateSignatureError as DuplicateSignatureError, type index$f_DvnConfig as DvnConfig, type index$f_DvnConfigAccountData as DvnConfigAccountData, type index$f_DvnConfigAccountDataArgs as DvnConfigAccountDataArgs, EidNotSupportedError$1 as EidNotSupportedError, type index$f_ExecuteHash as ExecuteHash, type index$f_ExecuteHashAccountData as ExecuteHashAccountData, type index$f_ExecuteHashAccountDataArgs as ExecuteHashAccountDataArgs, type index$f_ExecuteTransactionDigest as ExecuteTransactionDigest, type index$f_ExecuteTransactionDigestArgs as ExecuteTransactionDigestArgs, index$f_ExpiredError as ExpiredError, type index$f_ExtendDvnConfigInstructionAccounts as ExtendDvnConfigInstructionAccounts, type index$f_ExtendDvnConfigInstructionData as ExtendDvnConfigInstructionData, type index$f_ExtendDvnConfigInstructionDataArgs as ExtendDvnConfigInstructionDataArgs, type index$f_InitDvnInstructionAccounts as InitDvnInstructionAccounts, type index$f_InitDvnInstructionArgs as InitDvnInstructionArgs, type index$f_InitDvnInstructionData as InitDvnInstructionData, type index$f_InitDvnInstructionDataArgs as InitDvnInstructionDataArgs, InvalidAmountError$1 as InvalidAmountError, index$f_InvalidQuorumError as InvalidQuorumError, index$f_InvalidSignatureLenError as InvalidSignatureLenError, index$f_InvalidSignersLenError as InvalidSignersLenError, index$f_InvalidVidError as InvalidVidError, type index$f_InvokeInstructionAccounts as InvokeInstructionAccounts, type index$f_InvokeInstructionArgs as InvokeInstructionArgs, type index$f_InvokeInstructionData as InvokeInstructionData, type index$f_InvokeInstructionDataArgs as InvokeInstructionDataArgs, type LzOption$1 as LzOption, type LzOptionArgs$1 as LzOptionArgs, MsgLibNotAllowedError$1 as MsgLibNotAllowedError, type index$f_Multisig as Multisig, type index$f_MultisigArgs as MultisigArgs, type index$f_MultisigConfig as MultisigConfig, type index$f_MultisigConfigArgs as MultisigConfigArgs, NotAdminError$1 as NotAdminError, PausedError$1 as PausedError, type PickPartial$1 as PickPartial, type index$f_QuoteDvnInstructionAccounts as QuoteDvnInstructionAccounts, type index$f_QuoteDvnInstructionArgs as QuoteDvnInstructionArgs, type index$f_QuoteDvnInstructionData as QuoteDvnInstructionData, type index$f_QuoteDvnInstructionDataArgs as QuoteDvnInstructionDataArgs, type ReceiveConfig$1 as ReceiveConfig, type ReceiveConfigAccountData$1 as ReceiveConfigAccountData, type ReceiveConfigAccountDataArgs$1 as ReceiveConfigAccountDataArgs, type ResolvedAccount$1 as ResolvedAccount, type ResolvedAccounts$1 as ResolvedAccounts, type ResolvedAccountsWithIndices$1 as ResolvedAccountsWithIndices, type SetConfigInstructionAccounts$1 as SetConfigInstructionAccounts, type SetConfigInstructionArgs$1 as SetConfigInstructionArgs, type SetConfigInstructionData$1 as SetConfigInstructionData, type SetConfigInstructionDataArgs$1 as SetConfigInstructionDataArgs, index$f_SignatureErrorError as SignatureErrorError, index$f_SignerNotInCommitteeError as SignerNotInCommitteeError, TooManyAdminsError$1 as TooManyAdminsError, TooManyOptionTypesError$1 as TooManyOptionTypesError, type index$f_TransactionAccount as TransactionAccount, type index$f_TransactionAccountArgs as TransactionAccountArgs, type UlnConfig$1 as UlnConfig, type UlnConfigArgs$1 as UlnConfigArgs, index$f_UnexpiredExecuteHashError as UnexpiredExecuteHashError, index$f_UniqueOwnersError as UniqueOwnersError, type index$f_VerifiableInstructionAccounts as VerifiableInstructionAccounts, type index$f_VerifiableInstructionArgs as VerifiableInstructionArgs, type index$f_VerifiableInstructionData as VerifiableInstructionData, type index$f_VerifiableInstructionDataArgs as VerifiableInstructionDataArgs, index$f_VerificationState as VerificationState, type index$f_VerificationStateArgs as VerificationStateArgs, type index$f_WithdrawFeeInstructionAccounts as WithdrawFeeInstructionAccounts, type index$f_WithdrawFeeInstructionArgs as WithdrawFeeInstructionArgs, type index$f_WithdrawFeeInstructionData as WithdrawFeeInstructionData, type index$f_WithdrawFeeInstructionDataArgs as WithdrawFeeInstructionDataArgs, index$f_adminConfig as adminConfig, index$f_closeExecute as closeExecute, index$f_createDvnProgram as createDvnProgram, index$f_deserializeDvnConfig as deserializeDvnConfig, index$f_deserializeExecuteHash as deserializeExecuteHash, deserializeReceiveConfig$1 as deserializeReceiveConfig, expectPda$1 as expectPda, expectPublicKey$1 as expectPublicKey, expectSome$1 as expectSome, index$f_extendDvnConfig as extendDvnConfig, index$f_fetchAllDvnConfig as fetchAllDvnConfig, index$f_fetchAllExecuteHash as fetchAllExecuteHash, fetchAllReceiveConfig$1 as fetchAllReceiveConfig, index$f_fetchDvnConfig as fetchDvnConfig, index$f_fetchExecuteHash as fetchExecuteHash, fetchReceiveConfig$1 as fetchReceiveConfig, getAccountMetasAndSigners$1 as getAccountMetasAndSigners, getAclSerializer$1 as getAclSerializer, index$f_getAdminConfigSerializer as getAdminConfigSerializer, index$f_getCloseExecuteInstructionDataSerializer as getCloseExecuteInstructionDataSerializer, getDstConfigSerializer$1 as getDstConfigSerializer, index$f_getDvnConfigAccountDataSerializer as getDvnConfigAccountDataSerializer, index$f_getDvnConfigGpaBuilder as getDvnConfigGpaBuilder, index$f_getDvnErrorFromCode as getDvnErrorFromCode, index$f_getDvnErrorFromName as getDvnErrorFromName, index$f_getDvnProgram as getDvnProgram, index$f_getDvnProgramId as getDvnProgramId, index$f_getExecuteHashAccountDataSerializer as getExecuteHashAccountDataSerializer, index$f_getExecuteHashGpaBuilder as getExecuteHashGpaBuilder, index$f_getExecuteHashSize as getExecuteHashSize, index$f_getExecuteTransactionDigestSerializer as getExecuteTransactionDigestSerializer, index$f_getExtendDvnConfigInstructionDataSerializer as getExtendDvnConfigInstructionDataSerializer, index$f_getInitDvnInstructionDataSerializer as getInitDvnInstructionDataSerializer, index$f_getInvokeInstructionDataSerializer as getInvokeInstructionDataSerializer, getLzOptionSerializer$1 as getLzOptionSerializer, index$f_getMultisigConfigSerializer as getMultisigConfigSerializer, index$f_getMultisigSerializer as getMultisigSerializer, index$f_getQuoteDvnInstructionDataSerializer as getQuoteDvnInstructionDataSerializer, getReceiveConfigAccountDataSerializer$1 as getReceiveConfigAccountDataSerializer, getReceiveConfigGpaBuilder$1 as getReceiveConfigGpaBuilder, getSetConfigInstructionDataSerializer$1 as getSetConfigInstructionDataSerializer, index$f_getTransactionAccountSerializer as getTransactionAccountSerializer, getUlnConfigSerializer$1 as getUlnConfigSerializer, index$f_getVerifiableInstructionDataSerializer as getVerifiableInstructionDataSerializer, index$f_getVerificationStateSerializer as getVerificationStateSerializer, index$f_getWithdrawFeeInstructionDataSerializer as getWithdrawFeeInstructionDataSerializer, index$f_initDvn as initDvn, index$f_invoke as invoke, index$f_isAdminConfig as isAdminConfig, index$f_isMultisigConfig as isMultisigConfig, index$f_multisigConfig as multisigConfig, index$f_quoteDvn as quoteDvn, index$f_safeFetchAllDvnConfig as safeFetchAllDvnConfig, index$f_safeFetchAllExecuteHash as safeFetchAllExecuteHash, safeFetchAllReceiveConfig$1 as safeFetchAllReceiveConfig, index$f_safeFetchDvnConfig as safeFetchDvnConfig, index$f_safeFetchExecuteHash as safeFetchExecuteHash, safeFetchReceiveConfig$1 as safeFetchReceiveConfig, setConfig$1 as setConfig, index$f_verifiable as verifiable, index$f_withdrawFee as withdrawFee };
|
|
4773
4803
|
}
|
|
4774
4804
|
|
|
4775
4805
|
interface SignFunc {
|
|
@@ -5527,6 +5557,26 @@ declare function getExecuteInstructionDataSerializer(): Serializer<ExecuteInstru
|
|
|
5527
5557
|
type ExecuteInstructionArgs = ExecuteInstructionDataArgs;
|
|
5528
5558
|
declare function execute(context: Pick<Context, 'programs'>, input: ExecuteInstructionAccounts & ExecuteInstructionArgs): TransactionBuilder;
|
|
5529
5559
|
|
|
5560
|
+
/**
|
|
5561
|
+
* This code was AUTOGENERATED using the kinobi library.
|
|
5562
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
5563
|
+
* to add features, then rerun kinobi to update it.
|
|
5564
|
+
*
|
|
5565
|
+
* @see https://github.com/kinobi-so/kinobi
|
|
5566
|
+
*/
|
|
5567
|
+
|
|
5568
|
+
type ExtendExecutorConfigInstructionAccounts = {
|
|
5569
|
+
admin: Signer;
|
|
5570
|
+
config: PublicKey | Pda;
|
|
5571
|
+
systemProgram?: PublicKey | Pda;
|
|
5572
|
+
};
|
|
5573
|
+
type ExtendExecutorConfigInstructionData = {
|
|
5574
|
+
discriminator: Uint8Array;
|
|
5575
|
+
};
|
|
5576
|
+
type ExtendExecutorConfigInstructionDataArgs = {};
|
|
5577
|
+
declare function getExtendExecutorConfigInstructionDataSerializer(): Serializer<ExtendExecutorConfigInstructionDataArgs, ExtendExecutorConfigInstructionData>;
|
|
5578
|
+
declare function extendExecutorConfig(context: Pick<Context, 'programs'>, input: ExtendExecutorConfigInstructionAccounts): TransactionBuilder;
|
|
5579
|
+
|
|
5530
5580
|
/**
|
|
5531
5581
|
* This code was AUTOGENERATED using the kinobi library.
|
|
5532
5582
|
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
@@ -5675,6 +5725,9 @@ type index$a_AdminSetConfigInstructionAccounts = AdminSetConfigInstructionAccoun
|
|
|
5675
5725
|
type index$a_ExecuteInstructionArgs = ExecuteInstructionArgs;
|
|
5676
5726
|
type index$a_ExecuteInstructionData = ExecuteInstructionData;
|
|
5677
5727
|
type index$a_ExecuteInstructionDataArgs = ExecuteInstructionDataArgs;
|
|
5728
|
+
type index$a_ExtendExecutorConfigInstructionAccounts = ExtendExecutorConfigInstructionAccounts;
|
|
5729
|
+
type index$a_ExtendExecutorConfigInstructionData = ExtendExecutorConfigInstructionData;
|
|
5730
|
+
type index$a_ExtendExecutorConfigInstructionDataArgs = ExtendExecutorConfigInstructionDataArgs;
|
|
5678
5731
|
type index$a_InitExecutorInstructionAccounts = InitExecutorInstructionAccounts;
|
|
5679
5732
|
type index$a_InitExecutorInstructionArgs = InitExecutorInstructionArgs;
|
|
5680
5733
|
type index$a_InitExecutorInstructionData = InitExecutorInstructionData;
|
|
@@ -5695,10 +5748,12 @@ type index$a_AdminSetConfigInstructionAccounts = AdminSetConfigInstructionAccoun
|
|
|
5695
5748
|
declare const index$a_compose: typeof compose;
|
|
5696
5749
|
declare const index$a_executable: typeof executable;
|
|
5697
5750
|
declare const index$a_execute: typeof execute;
|
|
5751
|
+
declare const index$a_extendExecutorConfig: typeof extendExecutorConfig;
|
|
5698
5752
|
declare const index$a_getAdminSetConfigInstructionDataSerializer: typeof getAdminSetConfigInstructionDataSerializer;
|
|
5699
5753
|
declare const index$a_getComposeInstructionDataSerializer: typeof getComposeInstructionDataSerializer;
|
|
5700
5754
|
declare const index$a_getExecutableInstructionDataSerializer: typeof getExecutableInstructionDataSerializer;
|
|
5701
5755
|
declare const index$a_getExecuteInstructionDataSerializer: typeof getExecuteInstructionDataSerializer;
|
|
5756
|
+
declare const index$a_getExtendExecutorConfigInstructionDataSerializer: typeof getExtendExecutorConfigInstructionDataSerializer;
|
|
5702
5757
|
declare const index$a_getInitExecutorInstructionDataSerializer: typeof getInitExecutorInstructionDataSerializer;
|
|
5703
5758
|
declare const index$a_getNativeDropInstructionDataSerializer: typeof getNativeDropInstructionDataSerializer;
|
|
5704
5759
|
declare const index$a_getOwnerSetConfigInstructionDataSerializer: typeof getOwnerSetConfigInstructionDataSerializer;
|
|
@@ -5708,7 +5763,7 @@ type index$a_AdminSetConfigInstructionAccounts = AdminSetConfigInstructionAccoun
|
|
|
5708
5763
|
declare const index$a_ownerSetConfig: typeof ownerSetConfig;
|
|
5709
5764
|
declare const index$a_quoteExecutor: typeof quoteExecutor;
|
|
5710
5765
|
declare namespace index$a {
|
|
5711
|
-
export { type index$a_AdminSetConfigInstructionAccounts as AdminSetConfigInstructionAccounts, type index$a_AdminSetConfigInstructionArgs as AdminSetConfigInstructionArgs, type index$a_AdminSetConfigInstructionData as AdminSetConfigInstructionData, type index$a_AdminSetConfigInstructionDataArgs as AdminSetConfigInstructionDataArgs, type index$a_ComposeInstructionAccounts as ComposeInstructionAccounts, type index$a_ComposeInstructionArgs as ComposeInstructionArgs, type index$a_ComposeInstructionData as ComposeInstructionData, type index$a_ComposeInstructionDataArgs as ComposeInstructionDataArgs, type index$a_ExecutableInstructionAccounts as ExecutableInstructionAccounts, type index$a_ExecutableInstructionArgs as ExecutableInstructionArgs, type index$a_ExecutableInstructionData as ExecutableInstructionData, type index$a_ExecutableInstructionDataArgs as ExecutableInstructionDataArgs, type index$a_ExecuteInstructionAccounts as ExecuteInstructionAccounts, type index$a_ExecuteInstructionArgs as ExecuteInstructionArgs, type index$a_ExecuteInstructionData as ExecuteInstructionData, type index$a_ExecuteInstructionDataArgs as ExecuteInstructionDataArgs, type index$a_InitExecutorInstructionAccounts as InitExecutorInstructionAccounts, type index$a_InitExecutorInstructionArgs as InitExecutorInstructionArgs, type index$a_InitExecutorInstructionData as InitExecutorInstructionData, type index$a_InitExecutorInstructionDataArgs as InitExecutorInstructionDataArgs, type index$a_NativeDropInstructionAccounts as NativeDropInstructionAccounts, type index$a_NativeDropInstructionArgs as NativeDropInstructionArgs, type index$a_NativeDropInstructionData as NativeDropInstructionData, type index$a_NativeDropInstructionDataArgs as NativeDropInstructionDataArgs, type index$a_OwnerSetConfigInstructionAccounts as OwnerSetConfigInstructionAccounts, type index$a_OwnerSetConfigInstructionArgs as OwnerSetConfigInstructionArgs, type index$a_OwnerSetConfigInstructionData as OwnerSetConfigInstructionData, type index$a_OwnerSetConfigInstructionDataArgs as OwnerSetConfigInstructionDataArgs, type index$a_QuoteExecutorInstructionAccounts as QuoteExecutorInstructionAccounts, type index$a_QuoteExecutorInstructionArgs as QuoteExecutorInstructionArgs, type index$a_QuoteExecutorInstructionData as QuoteExecutorInstructionData, type index$a_QuoteExecutorInstructionDataArgs as QuoteExecutorInstructionDataArgs, index$a_adminSetConfig as adminSetConfig, index$a_compose as compose, index$a_executable as executable, index$a_execute as execute, index$a_getAdminSetConfigInstructionDataSerializer as getAdminSetConfigInstructionDataSerializer, index$a_getComposeInstructionDataSerializer as getComposeInstructionDataSerializer, index$a_getExecutableInstructionDataSerializer as getExecutableInstructionDataSerializer, index$a_getExecuteInstructionDataSerializer as getExecuteInstructionDataSerializer, index$a_getInitExecutorInstructionDataSerializer as getInitExecutorInstructionDataSerializer, index$a_getNativeDropInstructionDataSerializer as getNativeDropInstructionDataSerializer, index$a_getOwnerSetConfigInstructionDataSerializer as getOwnerSetConfigInstructionDataSerializer, index$a_getQuoteExecutorInstructionDataSerializer as getQuoteExecutorInstructionDataSerializer, index$a_initExecutor as initExecutor, index$a_nativeDrop as nativeDrop, index$a_ownerSetConfig as ownerSetConfig, index$a_quoteExecutor as quoteExecutor };
|
|
5766
|
+
export { type index$a_AdminSetConfigInstructionAccounts as AdminSetConfigInstructionAccounts, type index$a_AdminSetConfigInstructionArgs as AdminSetConfigInstructionArgs, type index$a_AdminSetConfigInstructionData as AdminSetConfigInstructionData, type index$a_AdminSetConfigInstructionDataArgs as AdminSetConfigInstructionDataArgs, type index$a_ComposeInstructionAccounts as ComposeInstructionAccounts, type index$a_ComposeInstructionArgs as ComposeInstructionArgs, type index$a_ComposeInstructionData as ComposeInstructionData, type index$a_ComposeInstructionDataArgs as ComposeInstructionDataArgs, type index$a_ExecutableInstructionAccounts as ExecutableInstructionAccounts, type index$a_ExecutableInstructionArgs as ExecutableInstructionArgs, type index$a_ExecutableInstructionData as ExecutableInstructionData, type index$a_ExecutableInstructionDataArgs as ExecutableInstructionDataArgs, type index$a_ExecuteInstructionAccounts as ExecuteInstructionAccounts, type index$a_ExecuteInstructionArgs as ExecuteInstructionArgs, type index$a_ExecuteInstructionData as ExecuteInstructionData, type index$a_ExecuteInstructionDataArgs as ExecuteInstructionDataArgs, type index$a_ExtendExecutorConfigInstructionAccounts as ExtendExecutorConfigInstructionAccounts, type index$a_ExtendExecutorConfigInstructionData as ExtendExecutorConfigInstructionData, type index$a_ExtendExecutorConfigInstructionDataArgs as ExtendExecutorConfigInstructionDataArgs, type index$a_InitExecutorInstructionAccounts as InitExecutorInstructionAccounts, type index$a_InitExecutorInstructionArgs as InitExecutorInstructionArgs, type index$a_InitExecutorInstructionData as InitExecutorInstructionData, type index$a_InitExecutorInstructionDataArgs as InitExecutorInstructionDataArgs, type index$a_NativeDropInstructionAccounts as NativeDropInstructionAccounts, type index$a_NativeDropInstructionArgs as NativeDropInstructionArgs, type index$a_NativeDropInstructionData as NativeDropInstructionData, type index$a_NativeDropInstructionDataArgs as NativeDropInstructionDataArgs, type index$a_OwnerSetConfigInstructionAccounts as OwnerSetConfigInstructionAccounts, type index$a_OwnerSetConfigInstructionArgs as OwnerSetConfigInstructionArgs, type index$a_OwnerSetConfigInstructionData as OwnerSetConfigInstructionData, type index$a_OwnerSetConfigInstructionDataArgs as OwnerSetConfigInstructionDataArgs, type index$a_QuoteExecutorInstructionAccounts as QuoteExecutorInstructionAccounts, type index$a_QuoteExecutorInstructionArgs as QuoteExecutorInstructionArgs, type index$a_QuoteExecutorInstructionData as QuoteExecutorInstructionData, type index$a_QuoteExecutorInstructionDataArgs as QuoteExecutorInstructionDataArgs, index$a_adminSetConfig as adminSetConfig, index$a_compose as compose, index$a_executable as executable, index$a_execute as execute, index$a_extendExecutorConfig as extendExecutorConfig, index$a_getAdminSetConfigInstructionDataSerializer as getAdminSetConfigInstructionDataSerializer, index$a_getComposeInstructionDataSerializer as getComposeInstructionDataSerializer, index$a_getExecutableInstructionDataSerializer as getExecutableInstructionDataSerializer, index$a_getExecuteInstructionDataSerializer as getExecuteInstructionDataSerializer, index$a_getExtendExecutorConfigInstructionDataSerializer as getExtendExecutorConfigInstructionDataSerializer, index$a_getInitExecutorInstructionDataSerializer as getInitExecutorInstructionDataSerializer, index$a_getNativeDropInstructionDataSerializer as getNativeDropInstructionDataSerializer, index$a_getOwnerSetConfigInstructionDataSerializer as getOwnerSetConfigInstructionDataSerializer, index$a_getQuoteExecutorInstructionDataSerializer as getQuoteExecutorInstructionDataSerializer, index$a_initExecutor as initExecutor, index$a_nativeDrop as nativeDrop, index$a_ownerSetConfig as ownerSetConfig, index$a_quoteExecutor as quoteExecutor };
|
|
5712
5767
|
}
|
|
5713
5768
|
|
|
5714
5769
|
/**
|
|
@@ -7788,6 +7843,26 @@ type index$2_InvalidSizeError = InvalidSizeError;
|
|
|
7788
7843
|
export { index$2_InvalidSizeError as InvalidSizeError, index$2_InvalidUpdaterError as InvalidUpdaterError, index$2_NotFoundError as NotFoundError, index$2_TooManyUpdatersError as TooManyUpdatersError, index$2_getPricefeedErrorFromCode as getPricefeedErrorFromCode, index$2_getPricefeedErrorFromName as getPricefeedErrorFromName };
|
|
7789
7844
|
}
|
|
7790
7845
|
|
|
7846
|
+
/**
|
|
7847
|
+
* This code was AUTOGENERATED using the kinobi library.
|
|
7848
|
+
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
7849
|
+
* to add features, then rerun kinobi to update it.
|
|
7850
|
+
*
|
|
7851
|
+
* @see https://github.com/kinobi-so/kinobi
|
|
7852
|
+
*/
|
|
7853
|
+
|
|
7854
|
+
type ExtendPriceFeedInstructionAccounts = {
|
|
7855
|
+
admin: Signer;
|
|
7856
|
+
priceFeed: PublicKey | Pda;
|
|
7857
|
+
systemProgram?: PublicKey | Pda;
|
|
7858
|
+
};
|
|
7859
|
+
type ExtendPriceFeedInstructionData = {
|
|
7860
|
+
discriminator: Uint8Array;
|
|
7861
|
+
};
|
|
7862
|
+
type ExtendPriceFeedInstructionDataArgs = {};
|
|
7863
|
+
declare function getExtendPriceFeedInstructionDataSerializer(): Serializer<ExtendPriceFeedInstructionDataArgs, ExtendPriceFeedInstructionData>;
|
|
7864
|
+
declare function extendPriceFeed(context: Pick<Context, 'programs'>, input: ExtendPriceFeedInstructionAccounts): TransactionBuilder;
|
|
7865
|
+
|
|
7791
7866
|
/**
|
|
7792
7867
|
* This code was AUTOGENERATED using the kinobi library.
|
|
7793
7868
|
* Please DO NOT EDIT THIS FILE, instead use visitors
|
|
@@ -7946,7 +8021,10 @@ declare function transferAdmin(context: Pick<Context, 'programs'>, accounts: Tra
|
|
|
7946
8021
|
* @see https://github.com/kinobi-so/kinobi
|
|
7947
8022
|
*/
|
|
7948
8023
|
|
|
7949
|
-
type index$
|
|
8024
|
+
type index$1_ExtendPriceFeedInstructionAccounts = ExtendPriceFeedInstructionAccounts;
|
|
8025
|
+
type index$1_ExtendPriceFeedInstructionData = ExtendPriceFeedInstructionData;
|
|
8026
|
+
type index$1_ExtendPriceFeedInstructionDataArgs = ExtendPriceFeedInstructionDataArgs;
|
|
8027
|
+
type index$1_GetFeeInstructionAccounts = GetFeeInstructionAccounts;
|
|
7950
8028
|
type index$1_GetFeeInstructionArgs = GetFeeInstructionArgs;
|
|
7951
8029
|
type index$1_GetFeeInstructionData = GetFeeInstructionData;
|
|
7952
8030
|
type index$1_GetFeeInstructionDataArgs = GetFeeInstructionDataArgs;
|
|
@@ -7970,6 +8048,8 @@ type index$1_GetFeeInstructionAccounts = GetFeeInstructionAccounts;
|
|
|
7970
8048
|
type index$1_TransferAdminInstructionArgs = TransferAdminInstructionArgs;
|
|
7971
8049
|
type index$1_TransferAdminInstructionData = TransferAdminInstructionData;
|
|
7972
8050
|
type index$1_TransferAdminInstructionDataArgs = TransferAdminInstructionDataArgs;
|
|
8051
|
+
declare const index$1_extendPriceFeed: typeof extendPriceFeed;
|
|
8052
|
+
declare const index$1_getExtendPriceFeedInstructionDataSerializer: typeof getExtendPriceFeedInstructionDataSerializer;
|
|
7973
8053
|
declare const index$1_getFee: typeof getFee;
|
|
7974
8054
|
declare const index$1_getGetFeeInstructionDataSerializer: typeof getGetFeeInstructionDataSerializer;
|
|
7975
8055
|
declare const index$1_getInitPriceFeedInstructionDataSerializer: typeof getInitPriceFeedInstructionDataSerializer;
|
|
@@ -7983,7 +8063,7 @@ type index$1_GetFeeInstructionAccounts = GetFeeInstructionAccounts;
|
|
|
7983
8063
|
declare const index$1_setSolPrice: typeof setSolPrice;
|
|
7984
8064
|
declare const index$1_transferAdmin: typeof transferAdmin;
|
|
7985
8065
|
declare namespace index$1 {
|
|
7986
|
-
export { type index$1_GetFeeInstructionAccounts as GetFeeInstructionAccounts, type index$1_GetFeeInstructionArgs as GetFeeInstructionArgs, type index$1_GetFeeInstructionData as GetFeeInstructionData, type index$1_GetFeeInstructionDataArgs as GetFeeInstructionDataArgs, type index$1_InitPriceFeedInstructionAccounts as InitPriceFeedInstructionAccounts, type index$1_InitPriceFeedInstructionArgs as InitPriceFeedInstructionArgs, type index$1_InitPriceFeedInstructionData as InitPriceFeedInstructionData, type index$1_InitPriceFeedInstructionDataArgs as InitPriceFeedInstructionDataArgs, type index$1_SetPriceFeedInstructionAccounts as SetPriceFeedInstructionAccounts, type index$1_SetPriceFeedInstructionArgs as SetPriceFeedInstructionArgs, type index$1_SetPriceFeedInstructionData as SetPriceFeedInstructionData, type index$1_SetPriceFeedInstructionDataArgs as SetPriceFeedInstructionDataArgs, type index$1_SetPriceInstructionAccounts as SetPriceInstructionAccounts, type index$1_SetPriceInstructionArgs as SetPriceInstructionArgs, type index$1_SetPriceInstructionData as SetPriceInstructionData, type index$1_SetPriceInstructionDataArgs as SetPriceInstructionDataArgs, type index$1_SetSolPriceInstructionAccounts as SetSolPriceInstructionAccounts, type index$1_SetSolPriceInstructionArgs as SetSolPriceInstructionArgs, type index$1_SetSolPriceInstructionData as SetSolPriceInstructionData, type index$1_SetSolPriceInstructionDataArgs as SetSolPriceInstructionDataArgs, type index$1_TransferAdminInstructionAccounts as TransferAdminInstructionAccounts, type index$1_TransferAdminInstructionArgs as TransferAdminInstructionArgs, type index$1_TransferAdminInstructionData as TransferAdminInstructionData, type index$1_TransferAdminInstructionDataArgs as TransferAdminInstructionDataArgs, index$1_getFee as getFee, index$1_getGetFeeInstructionDataSerializer as getGetFeeInstructionDataSerializer, index$1_getInitPriceFeedInstructionDataSerializer as getInitPriceFeedInstructionDataSerializer, index$1_getSetPriceFeedInstructionDataSerializer as getSetPriceFeedInstructionDataSerializer, index$1_getSetPriceInstructionDataSerializer as getSetPriceInstructionDataSerializer, index$1_getSetSolPriceInstructionDataSerializer as getSetSolPriceInstructionDataSerializer, index$1_getTransferAdminInstructionDataSerializer as getTransferAdminInstructionDataSerializer, index$1_initPriceFeed as initPriceFeed, index$1_setPrice as setPrice, index$1_setPriceFeed as setPriceFeed, index$1_setSolPrice as setSolPrice, index$1_transferAdmin as transferAdmin };
|
|
8066
|
+
export { type index$1_ExtendPriceFeedInstructionAccounts as ExtendPriceFeedInstructionAccounts, type index$1_ExtendPriceFeedInstructionData as ExtendPriceFeedInstructionData, type index$1_ExtendPriceFeedInstructionDataArgs as ExtendPriceFeedInstructionDataArgs, type index$1_GetFeeInstructionAccounts as GetFeeInstructionAccounts, type index$1_GetFeeInstructionArgs as GetFeeInstructionArgs, type index$1_GetFeeInstructionData as GetFeeInstructionData, type index$1_GetFeeInstructionDataArgs as GetFeeInstructionDataArgs, type index$1_InitPriceFeedInstructionAccounts as InitPriceFeedInstructionAccounts, type index$1_InitPriceFeedInstructionArgs as InitPriceFeedInstructionArgs, type index$1_InitPriceFeedInstructionData as InitPriceFeedInstructionData, type index$1_InitPriceFeedInstructionDataArgs as InitPriceFeedInstructionDataArgs, type index$1_SetPriceFeedInstructionAccounts as SetPriceFeedInstructionAccounts, type index$1_SetPriceFeedInstructionArgs as SetPriceFeedInstructionArgs, type index$1_SetPriceFeedInstructionData as SetPriceFeedInstructionData, type index$1_SetPriceFeedInstructionDataArgs as SetPriceFeedInstructionDataArgs, type index$1_SetPriceInstructionAccounts as SetPriceInstructionAccounts, type index$1_SetPriceInstructionArgs as SetPriceInstructionArgs, type index$1_SetPriceInstructionData as SetPriceInstructionData, type index$1_SetPriceInstructionDataArgs as SetPriceInstructionDataArgs, type index$1_SetSolPriceInstructionAccounts as SetSolPriceInstructionAccounts, type index$1_SetSolPriceInstructionArgs as SetSolPriceInstructionArgs, type index$1_SetSolPriceInstructionData as SetSolPriceInstructionData, type index$1_SetSolPriceInstructionDataArgs as SetSolPriceInstructionDataArgs, type index$1_TransferAdminInstructionAccounts as TransferAdminInstructionAccounts, type index$1_TransferAdminInstructionArgs as TransferAdminInstructionArgs, type index$1_TransferAdminInstructionData as TransferAdminInstructionData, type index$1_TransferAdminInstructionDataArgs as TransferAdminInstructionDataArgs, index$1_extendPriceFeed as extendPriceFeed, index$1_getExtendPriceFeedInstructionDataSerializer as getExtendPriceFeedInstructionDataSerializer, index$1_getFee as getFee, index$1_getGetFeeInstructionDataSerializer as getGetFeeInstructionDataSerializer, index$1_getInitPriceFeedInstructionDataSerializer as getInitPriceFeedInstructionDataSerializer, index$1_getSetPriceFeedInstructionDataSerializer as getSetPriceFeedInstructionDataSerializer, index$1_getSetPriceInstructionDataSerializer as getSetPriceInstructionDataSerializer, index$1_getSetSolPriceInstructionDataSerializer as getSetSolPriceInstructionDataSerializer, index$1_getTransferAdminInstructionDataSerializer as getTransferAdminInstructionDataSerializer, index$1_initPriceFeed as initPriceFeed, index$1_setPrice as setPrice, index$1_setPriceFeed as setPriceFeed, index$1_setSolPrice as setSolPrice, index$1_transferAdmin as transferAdmin };
|
|
7987
8067
|
}
|
|
7988
8068
|
|
|
7989
8069
|
/**
|