@solana/rpc-graphql 2.0.0-experimental.efe6f4d → 2.0.0-experimental.f5d64e6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/dist/index.browser.cjs +599 -1021
  2. package/dist/index.browser.cjs.map +1 -1
  3. package/dist/index.browser.js +599 -1021
  4. package/dist/index.browser.js.map +1 -1
  5. package/dist/index.native.js +599 -1021
  6. package/dist/index.native.js.map +1 -1
  7. package/dist/index.node.cjs +599 -1021
  8. package/dist/index.node.cjs.map +1 -1
  9. package/dist/index.node.js +599 -1021
  10. package/dist/index.node.js.map +1 -1
  11. package/dist/types/context.d.ts +5 -5
  12. package/dist/types/index.d.ts +1 -1
  13. package/dist/types/loaders/account.d.ts +2 -23
  14. package/dist/types/loaders/account.d.ts.map +1 -1
  15. package/dist/types/loaders/block.d.ts +2 -11
  16. package/dist/types/loaders/block.d.ts.map +1 -1
  17. package/dist/types/loaders/program-accounts.d.ts +2 -21
  18. package/dist/types/loaders/program-accounts.d.ts.map +1 -1
  19. package/dist/types/loaders/transaction.d.ts +3 -35
  20. package/dist/types/loaders/transaction.d.ts.map +1 -1
  21. package/dist/types/loaders/transformers/account.d.ts +8 -0
  22. package/dist/types/loaders/transformers/account.d.ts.map +1 -0
  23. package/dist/types/loaders/transformers/block.d.ts +6 -0
  24. package/dist/types/loaders/transformers/block.d.ts.map +1 -0
  25. package/dist/types/loaders/transformers/transaction.d.ts +5 -0
  26. package/dist/types/loaders/transformers/transaction.d.ts.map +1 -0
  27. package/dist/types/resolvers/account.d.ts +2 -2
  28. package/dist/types/rpc.d.ts +3 -6
  29. package/dist/types/rpc.d.ts.map +1 -1
  30. package/dist/types/schema/account.d.ts +18 -30
  31. package/dist/types/schema/account.d.ts.map +1 -1
  32. package/dist/types/schema/block.d.ts +1 -1
  33. package/dist/types/schema/block.d.ts.map +1 -1
  34. package/dist/types/schema/instruction.d.ts +87 -92
  35. package/dist/types/schema/instruction.d.ts.map +1 -1
  36. package/dist/types/schema/program-accounts.d.ts +1 -1
  37. package/dist/types/schema/program-accounts.d.ts.map +1 -1
  38. package/dist/types/schema/transaction.d.ts +1 -1
  39. package/dist/types/schema/transaction.d.ts.map +1 -1
  40. package/package.json +14 -14
@@ -1,14 +1,12 @@
1
- export declare const instructionTypeDefs = "\n type JsonParsedInstructionMeta {\n program: String\n type: String\n }\n\n # Transaction instruction interface\n interface TransactionInstruction {\n programId: Address\n }\n\n # Generic transaction instruction\n type GenericInstruction implements TransactionInstruction {\n accounts: [Address]\n data: Base64EncodedBytes\n programId: Address\n }\n\n # AddressLookupTable: CreateLookupTable\n type CreateLookupTableInstructionData {\n bumpSeed: BigInt # FIXME:*\n lookupTableAccount: Account\n lookupTableAuthority: Account\n payerAccount: Account\n recentSlot: BigInt\n systemProgram: Account\n }\n type CreateLookupTableInstruction implements TransactionInstruction {\n data: CreateLookupTableInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # AddressLookupTable: ExtendLookupTable\n type ExtendLookupTableInstructionData {\n lookupTableAccount: Account\n lookupTableAuthority: Account\n newAddresses: [Address]\n payerAccount: Account\n systemProgram: Account\n }\n type ExtendLookupTableInstruction implements TransactionInstruction {\n data: ExtendLookupTableInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # AddressLookupTable: FreezeLookupTable\n type FreezeLookupTableInstructionData {\n lookupTableAccount: Account\n lookupTableAuthority: Account\n }\n type FreezeLookupTableInstruction implements TransactionInstruction {\n data: FreezeLookupTableInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # AddressLookupTable: DeactivateLookupTable\n type DeactivateLookupTableInstructionData {\n lookupTableAccount: Account\n lookupTableAuthority: Account\n }\n type DeactivateLookupTableInstruction implements TransactionInstruction {\n data: DeactivateLookupTableInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # AddressLookupTable: CloseLookupTable\n type CloseLookupTableInstructionData {\n lookupTableAccount: Account\n lookupTableAuthority: Account\n recipient: Account\n }\n type CloseLookupTableInstruction implements TransactionInstruction {\n data: CloseLookupTableInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # BpfLoader: Write\n type BpfLoaderWriteInstructionData {\n account: Account\n bytes: Base64EncodedBytes\n offset: BigInt # FIXME:*\n }\n type BpfLoaderWriteInstruction implements TransactionInstruction {\n data: BpfLoaderWriteInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # BpfLoader: Finalize\n type BpfLoaderFinalizeInstructionData {\n account: Account\n }\n type BpfLoaderFinalizeInstruction implements TransactionInstruction {\n data: BpfLoaderFinalizeInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # BpfUpgradeableLoader: InitializeBuffer\n type BpfUpgradeableLoaderInitializeBufferInstructionData {\n account: Account\n }\n type BpfUpgradeableLoaderInitializeBufferInstruction implements TransactionInstruction {\n data: BpfUpgradeableLoaderInitializeBufferInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # BpfUpgradeableLoader: Write\n type BpfUpgradeableLoaderWriteInstructionData {\n account: Account\n authority: Account\n bytes: Base64EncodedBytes\n offset: BigInt # FIXME:*\n }\n type BpfUpgradeableLoaderWriteInstruction implements TransactionInstruction {\n data: BpfUpgradeableLoaderWriteInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # BpfUpgradeableLoader: DeployWithMaxDataLen\n type BpfUpgradeableLoaderDeployWithMaxDataLenInstructionData {\n authority: Account\n bufferAccount: Account\n clockSysvar: Address\n maxDataLen: BigInt\n payerAccount: Account\n programAccount: Account\n programDataAccount: Account\n rentSysvar: Address\n }\n type BpfUpgradeableLoaderDeployWithMaxDataLenInstruction implements TransactionInstruction {\n data: BpfUpgradeableLoaderDeployWithMaxDataLenInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # BpfUpgradeableLoader: Upgrade\n type BpfUpgradeableLoaderUpgradeInstructionData {\n authority: Account\n bufferAccount: Account\n clockSysvar: Address\n programAccount: Account\n programDataAccount: Account\n rentSysvar: Address\n spillAccount: Account\n }\n type BpfUpgradeableLoaderUpgradeInstruction implements TransactionInstruction {\n data: BpfUpgradeableLoaderUpgradeInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # BpfUpgradeableLoader: SetAuthority\n type BpfUpgradeableLoaderSetAuthorityInstructionData {\n account: Account\n authority: Account\n newAuthority: Account\n }\n type BpfUpgradeableLoaderSetAuthorityInstruction implements TransactionInstruction {\n data: BpfUpgradeableLoaderSetAuthorityInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # BpfUpgradeableLoader: SetAuthorityChecked\n type BpfUpgradeableLoaderSetAuthorityCheckedInstructionData {\n account: Account\n authority: Account\n newAuthority: Account\n }\n type BpfUpgradeableLoaderSetAuthorityCheckedInstruction implements TransactionInstruction {\n data: BpfUpgradeableLoaderSetAuthorityCheckedInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # BpfUpgradeableLoader: Close\n type BpfUpgradeableLoaderCloseInstructionData {\n account: Account\n authority: Account\n programAccount: Account\n recipient: Account\n }\n type BpfUpgradeableLoaderCloseInstruction implements TransactionInstruction {\n data: BpfUpgradeableLoaderCloseInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # BpfUpgradeableLoader: ExtendProgram\n type BpfUpgradeableLoaderExtendProgramInstructionData {\n additionalBytes: BigInt\n payerAccount: Account\n programAccount: Account\n programDataAccount: Account\n systemProgram: Account\n }\n type BpfUpgradeableLoaderExtendProgramInstruction implements TransactionInstruction {\n data: BpfUpgradeableLoaderExtendProgramInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplAssociatedTokenAccount: Create\n type SplAssociatedTokenCreateInstructionData {\n account: Account\n mint: Address\n source: Account\n systemProgram: Account\n tokenProgram: Account\n wallet: Account\n }\n type SplAssociatedTokenCreateInstruction implements TransactionInstruction {\n data: SplAssociatedTokenCreateInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplAssociatedTokenAccount: CreateIdempotent\n type SplAssociatedTokenCreateIdempotentInstructionData {\n account: Account\n mint: Address\n source: Account\n systemProgram: Account\n tokenProgram: Account\n wallet: Account\n }\n type SplAssociatedTokenCreateIdempotentInstruction implements TransactionInstruction {\n data: SplAssociatedTokenCreateIdempotentInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplAssociatedTokenAccount: RecoverNested\n type SplAssociatedTokenRecoverNestedInstructionData {\n destination: Account\n nestedMint: Account\n nestedOwner: Account\n nestedSource: Account\n ownerMint: Account\n tokenProgram: Account\n wallet: Account\n }\n type SplAssociatedTokenRecoverNestedInstruction implements TransactionInstruction {\n data: SplAssociatedTokenRecoverNestedInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplMemo\n type SplMemoInstructionData {\n data: String\n }\n type SplMemoInstruction implements TransactionInstruction {\n data: SplMemoInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: InitializeMint\n type SplTokenInitializeMintInstructionData {\n decimals: BigInt # FIXME:*\n freezeAuthority: Account\n mint: Account\n mintAuthority: Account\n rentSysvar: Address\n }\n type SplTokenInitializeMintInstruction implements TransactionInstruction {\n data: SplTokenInitializeMintInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: InitializeMint2\n type SplTokenInitializeMint2InstructionData {\n decimals: BigInt # FIXME:*\n freezeAuthority: Account\n mint: Account\n mintAuthority: Account\n }\n type SplTokenInitializeMint2Instruction implements TransactionInstruction {\n data: SplTokenInitializeMint2InstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: InitializeAccount\n type SplTokenInitializeAccountInstructionData {\n account: Account\n mint: Account\n owner: Account\n rentSysvar: Address\n }\n type SplTokenInitializeAccountInstruction implements TransactionInstruction {\n data: SplTokenInitializeAccountInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: InitializeAccount2\n type SplTokenInitializeAccount2InstructionData {\n account: Account\n mint: Account\n owner: Account\n rentSysvar: Address\n }\n type SplTokenInitializeAccount2Instruction implements TransactionInstruction {\n data: SplTokenInitializeAccount2InstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: InitializeAccount3\n type SplTokenInitializeAccount3InstructionData {\n account: Account\n mint: Account\n owner: Account\n }\n type SplTokenInitializeAccount3Instruction implements TransactionInstruction {\n data: SplTokenInitializeAccount3InstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: InitializeMultisig\n type SplTokenInitializeMultisigInstructionData {\n m: BigInt # FIXME:*\n multisig: Account\n rentSysvar: Address\n signers: [Address]\n }\n type SplTokenInitializeMultisigInstruction implements TransactionInstruction {\n data: SplTokenInitializeMultisigInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: InitializeMultisig2\n type SplTokenInitializeMultisig2InstructionData {\n m: BigInt # FIXME:*\n multisig: Account\n signers: [Address]\n }\n type SplTokenInitializeMultisig2Instruction implements TransactionInstruction {\n data: SplTokenInitializeMultisig2InstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: Transfer\n type SplTokenTransferInstructionData {\n amount: String\n authority: Account\n destination: Account\n multisigAuthority: Account\n source: Account\n }\n type SplTokenTransferInstruction implements TransactionInstruction {\n data: SplTokenTransferInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: Approve\n type SplTokenApproveInstructionData {\n amount: String\n delegate: Account\n multisigOwner: Account\n owner: Account\n source: Account\n }\n type SplTokenApproveInstruction implements TransactionInstruction {\n data: SplTokenApproveInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: Revoke\n type SplTokenRevokeInstructionData {\n multisigOwner: Account\n owner: Account\n source: Account\n }\n type SplTokenRevokeInstruction implements TransactionInstruction {\n data: SplTokenRevokeInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: SetAuthority\n type SplTokenSetAuthorityInstructionData {\n authority: Account\n authorityType: String\n multisigAuthority: Account\n newAuthority: Account\n }\n type SplTokenSetAuthorityInstruction implements TransactionInstruction {\n data: SplTokenSetAuthorityInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: MintTo\n type SplTokenMintToInstructionData {\n account: Account\n amount: String\n authority: Account\n mint: Account\n mintAuthority: Account\n multisigMintAuthority: Account\n }\n type SplTokenMintToInstruction implements TransactionInstruction {\n data: SplTokenMintToInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: Burn\n type SplTokenBurnInstructionData {\n account: Account\n amount: String\n authority: Account\n mint: Account\n multisigAuthority: Account\n }\n type SplTokenBurnInstruction implements TransactionInstruction {\n data: SplTokenBurnInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: CloseAccount\n type SplTokenCloseAccountInstructionData {\n account: Account\n destination: Account\n multisigOwner: Account\n owner: Account\n }\n type SplTokenCloseAccountInstruction implements TransactionInstruction {\n data: SplTokenCloseAccountInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: FreezeAccount\n type SplTokenFreezeAccountInstructionData {\n account: Account\n freezeAuthority: Account\n mint: Account\n multisigFreezeAuthority: Account\n }\n type SplTokenFreezeAccountInstruction implements TransactionInstruction {\n data: SplTokenFreezeAccountInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: ThawAccount\n type SplTokenThawAccountInstructionData {\n account: Account\n freezeAuthority: Account\n mint: Account\n multisigFreezeAuthority: Account\n }\n type SplTokenThawAccountInstruction implements TransactionInstruction {\n data: SplTokenThawAccountInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: TransferChecked\n type SplTokenTransferCheckedInstructionData {\n amount: String\n authority: Account\n decimals: BigInt # FIXME:*\n destination: Account\n mint: Account\n multisigAuthority: Account\n source: Account\n tokenAmount: String\n }\n type SplTokenTransferCheckedInstruction implements TransactionInstruction {\n data: SplTokenTransferCheckedInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: ApproveChecked\n type SplTokenApproveCheckedInstructionData {\n delegate: Account\n mint: Account\n multisigOwner: Account\n owner: Account\n source: Account\n tokenAmount: String\n }\n type SplTokenApproveCheckedInstruction implements TransactionInstruction {\n data: SplTokenApproveCheckedInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: MintToChecked\n type SplTokenMintToCheckedInstructionData {\n account: Account\n authority: Account\n mint: Account\n mintAuthority: Account\n multisigMintAuthority: Account\n tokenAmount: String\n }\n type SplTokenMintToCheckedInstruction implements TransactionInstruction {\n data: SplTokenMintToCheckedInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: BurnChecked\n type SplTokenBurnCheckedInstructionData {\n account: Account\n authority: Account\n mint: Account\n multisigAuthority: Account\n tokenAmount: String\n }\n type SplTokenBurnCheckedInstruction implements TransactionInstruction {\n data: SplTokenBurnCheckedInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: SyncNative\n type SplTokenSyncNativeInstructionData {\n account: Account\n }\n type SplTokenSyncNativeInstruction implements TransactionInstruction {\n data: SplTokenSyncNativeInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: GetAccountDataSize\n type SplTokenGetAccountDataSizeInstructionData {\n extensionTypes: [String]\n mint: Account\n }\n type SplTokenGetAccountDataSizeInstruction implements TransactionInstruction {\n data: SplTokenGetAccountDataSizeInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: InitializeImmutableOwner\n type SplTokenInitializeImmutableOwnerInstructionData {\n account: Account\n }\n type SplTokenInitializeImmutableOwnerInstruction implements TransactionInstruction {\n data: SplTokenInitializeImmutableOwnerInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: AmountToUiAmount\n type SplTokenAmountToUiAmountInstructionData {\n amount: String\n mint: Account\n }\n type SplTokenAmountToUiAmountInstruction implements TransactionInstruction {\n data: SplTokenAmountToUiAmountInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: UiAmountToAmount\n type SplTokenUiAmountToAmountInstructionData {\n mint: Account\n uiAmount: String\n }\n type SplTokenUiAmountToAmountInstruction implements TransactionInstruction {\n data: SplTokenUiAmountToAmountInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # SplToken: InitializeMintCloseAuthority\n type SplTokenInitializeMintCloseAuthorityInstructionData {\n mint: Account\n newAuthority: Account\n }\n type SplTokenInitializeMintCloseAuthorityInstruction implements TransactionInstruction {\n data: SplTokenInitializeMintCloseAuthorityInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # TODO: Extensions!\n # - TransferFeeExtension\n # - ConfidentialTransferFeeExtension\n # - DefaultAccountStateExtension\n # - Reallocate\n # - MemoTransferExtension\n # - CreateNativeMint\n # - InitializeNonTransferableMint\n # - InterestBearingMintExtension\n # - CpiGuardExtension\n # - InitializePermanentDelegate\n # - TransferHookExtension\n # - ConfidentialTransferFeeExtension\n # - WithdrawExcessLamports\n # - MetadataPointerExtension\n\n type Lockup {\n custodian: Account\n epoch: BigInt\n unixTimestamp: BigInt\n }\n\n # Stake: Initialize\n type StakeInitializeInstructionDataAuthorized {\n staker: Account\n withdrawer: Account\n }\n type StakeInitializeInstructionData {\n authorized: StakeInitializeInstructionDataAuthorized\n lockup: Lockup\n rentSysvar: Address\n stakeAccount: Account\n }\n type StakeInitializeInstruction implements TransactionInstruction {\n data: StakeInitializeInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Stake: Authorize\n type StakeAuthorizeInstructionData {\n authority: Account\n authorityType: String\n clockSysvar: Address\n custodian: Account\n newAuthority: Account\n stakeAccount: Account\n }\n type StakeAuthorizeInstruction implements TransactionInstruction {\n data: StakeAuthorizeInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Stake: DelegateStake\n type StakeDelegateStakeInstructionData {\n clockSysvar: Address\n stakeAccount: Account\n stakeAuthority: Account\n stakeConfigAccount: Account\n stakeHistorySysvar: Address\n voteAccount: Account\n }\n type StakeDelegateStakeInstruction implements TransactionInstruction {\n data: StakeDelegateStakeInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Stake: Split\n type StakeSplitInstructionData {\n lamports: BigInt\n newSplitAccount: Account\n stakeAccount: Account\n stakeAuthority: Account\n }\n type StakeSplitInstruction implements TransactionInstruction {\n data: StakeSplitInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Stake: Withdraw\n type StakeWithdrawInstructionData {\n clockSysvar: Address\n destination: Account\n lamports: BigInt\n stakeAccount: Account\n withdrawAuthority: Account\n }\n type StakeWithdrawInstruction implements TransactionInstruction {\n data: StakeWithdrawInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Stake: Deactivate\n type StakeDeactivateInstructionData {\n clockSysvar: Address\n stakeAccount: Account\n stakeAuthority: Account\n }\n type StakeDeactivateInstruction implements TransactionInstruction {\n data: StakeDeactivateInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Stake: SetLockup\n type StakeSetLockupInstructionData {\n custodian: Account\n lockup: Lockup\n stakeAccount: Account\n }\n type StakeSetLockupInstruction implements TransactionInstruction {\n data: StakeSetLockupInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Stake: Merge\n type StakeMergeInstructionData {\n clockSysvar: Address\n destination: Account\n source: Account\n stakeAuthority: Account\n stakeHistorySysvar: Address\n }\n type StakeMergeInstruction implements TransactionInstruction {\n data: StakeMergeInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Stake: AuthorizeWithSeed\n type StakeAuthorizeWithSeedInstructionData {\n authorityBase: Account\n authorityOwner: Account\n authoritySeed: String\n authorityType: String\n clockSysvar: Address\n custodian: Account\n newAuthorized: Account\n stakeAccount: Account\n }\n type StakeAuthorizeWithSeedInstruction implements TransactionInstruction {\n data: StakeAuthorizeWithSeedInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Stake: InitializeChecked\n type StakeInitializeCheckedInstructionDataAuthorized {\n rentSysvar: Address\n stakeAccount: Account\n staker: Account\n withdrawer: Account\n }\n type StakeInitializeCheckedInstruction implements TransactionInstruction {\n data: StakeInitializeCheckedInstructionDataAuthorized\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Stake: AuthorizeChecked\n type StakeAuthorizeCheckedInstructionData {\n authority: Account\n authorityType: String\n clockSysvar: Address\n custodian: Account\n newAuthority: Account\n stakeAccount: Account\n }\n type StakeAuthorizeCheckedInstruction implements TransactionInstruction {\n data: StakeAuthorizeCheckedInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Stake: AuthorizeCheckedWithSeed\n type StakeAuthorizeCheckedWithSeedInstructionData {\n authorityBase: Account\n authorityOwner: Account\n authoritySeed: String\n authorityType: String\n clockSysvar: Address\n custodian: Account\n newAuthorized: Account\n stakeAccount: Account\n }\n type StakeAuthorizeCheckedWithSeedInstruction implements TransactionInstruction {\n data: StakeAuthorizeCheckedWithSeedInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Stake: SetLockupChecked\n type StakeSetLockupCheckedInstructionData {\n custodian: Account\n lockup: Lockup\n stakeAccount: Account\n }\n type StakeSetLockupCheckedInstruction implements TransactionInstruction {\n data: StakeSetLockupCheckedInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Stake: DeactivateDelinquent\n type StakeDeactivateDelinquentInstructionData {\n referenceVoteAccount: Account\n stakeAccount: Account\n voteAccount: Account\n }\n type StakeDeactivateDelinquentInstruction implements TransactionInstruction {\n data: StakeDeactivateDelinquentInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Stake: Redelegate\n type StakeRedelegateInstructionData {\n newStakeAccount: Account\n stakeAccount: Account\n stakeAuthority: Account\n stakeConfigAccount: Account\n voteAccount: Account\n }\n type StakeRedelegateInstruction implements TransactionInstruction {\n data: StakeRedelegateInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # System: CreateAccount\n type CreateAccountInstructionData {\n lamports: BigInt\n newAccount: Account\n owner: Account\n source: Account\n space: BigInt\n }\n type CreateAccountInstruction implements TransactionInstruction {\n data: CreateAccountInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # System: Assign\n type AssignInstructionData {\n account: Account\n owner: Account\n }\n type AssignInstruction implements TransactionInstruction {\n data: AssignInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # System: Transfer\n type TransferInstructionData {\n destination: Account\n lamports: BigInt\n source: Account\n }\n type TransferInstruction implements TransactionInstruction {\n data: TransferInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # System: CreateAccountWithSeed\n type CreateAccountWithSeedInstructionData {\n base: Account\n lamports: BigInt\n owner: Account\n seed: String\n space: BigInt\n }\n type CreateAccountWithSeedInstruction implements TransactionInstruction {\n data: CreateAccountWithSeedInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # System: AdvanceNonceAccount\n type AdvanceNonceAccountInstructionData {\n nonceAccount: Account\n nonceAuthority: Account\n recentBlockhashesSysvar: Address\n }\n type AdvanceNonceAccountInstruction implements TransactionInstruction {\n data: AdvanceNonceAccountInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # System: WithdrawNonceAccount\n type WithdrawNonceAccountInstructionData {\n destination: Account\n lamports: BigInt\n nonceAccount: Account\n nonceAuthority: Account\n recentBlockhashesSysvar: Address\n rentSysvar: Address\n }\n type WithdrawNonceAccountInstruction implements TransactionInstruction {\n data: WithdrawNonceAccountInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # System: InitializeNonceAccount\n type InitializeNonceAccountInstructionData {\n nonceAccount: Account\n nonceAuthority: Account\n recentBlockhashesSysvar: Address\n rentSysvar: Address\n }\n type InitializeNonceAccountInstruction implements TransactionInstruction {\n data: InitializeNonceAccountInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # System: AuthorizeNonceAccount\n type AuthorizeNonceAccountInstructionData {\n newAuthorized: Account\n nonceAccount: Account\n nonceAuthority: Account\n }\n type AuthorizeNonceAccountInstruction implements TransactionInstruction {\n data: AuthorizeNonceAccountInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # System: UpgradeNonceAccount\n type UpgradeNonceAccountInstructionData {\n nonceAccount: Account\n nonceAuthority: Account\n }\n type UpgradeNonceAccountInstruction implements TransactionInstruction {\n data: UpgradeNonceAccountInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # System: Allocate\n type AllocateInstructionData {\n account: Account\n space: BigInt\n }\n type AllocateInstruction implements TransactionInstruction {\n data: AllocateInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # System: AllocateWithSeed\n type AllocateWithSeedInstructionData {\n account: Account\n base: Address\n owner: Account\n seed: String\n space: BigInt\n }\n type AllocateWithSeedInstruction implements TransactionInstruction {\n data: AllocateWithSeedInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # System: AssignWithSeed\n type AssignWithSeedInstructionData {\n account: Account\n base: Address\n owner: Account\n seed: String\n }\n type AssignWithSeedInstruction implements TransactionInstruction {\n data: AssignWithSeedInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # System: TransferWithSeed\n type TransferWithSeedInstructionData {\n destination: Account\n lamports: BigInt\n source: Account\n sourceBase: Address\n sourceOwner: Account\n sourceSeed: String\n }\n type TransferWithSeedInstruction implements TransactionInstruction {\n data: TransferWithSeedInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Vote: InitializeAccount\n type VoteInitializeAccountInstructionData {\n authorizedVoter: Account\n authorizedWithdrawer: Account\n clockSysvar: Address\n commission: BigInt # FIXME:*\n node: Account\n rentSysvar: Address\n voteAccount: Account\n }\n type VoteInitializeAccountInstruction implements TransactionInstruction {\n data: VoteInitializeAccountInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Vote: Authorize\n type VoteAuthorizeInstructionData {\n authority: Account\n authorityType: String\n clockSysvar: Address\n newAuthority: Account\n voteAccount: Account\n }\n type VoteAuthorizeInstruction implements TransactionInstruction {\n data: VoteAuthorizeInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Vote: AuthorizeWithSeed\n type VoteAuthorizeWithSeedInstructionData {\n authorityBaseKey: Address\n authorityOwner: Account\n authoritySeed: String\n authorityType: String\n clockSysvar: Address\n newAuthority: Account\n voteAccount: Account\n }\n type VoteAuthorizeWithSeedInstruction implements TransactionInstruction {\n data: VoteAuthorizeWithSeedInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Vote: AuthorizeCheckedWithSeed\n type VoteAuthorizeCheckedWithSeedInstructionData {\n authorityBaseKey: Address\n authorityOwner: Account\n authoritySeed: String\n authorityType: String\n clockSysvar: Address\n newAuthority: Account\n voteAccount: Account\n }\n type VoteAuthorizeCheckedWithSeedInstruction implements TransactionInstruction {\n data: VoteAuthorizeCheckedWithSeedInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n type Vote {\n hash: String\n slots: [BigInt]\n timestamp: BigInt\n }\n\n # Vote: Vote\n type VoteVoteInstructionData {\n clockSysvar: Address\n slotHashesSysvar: Address\n vote: Vote\n voteAccount: Account\n voteAuthority: Account\n }\n type VoteVoteInstruction implements TransactionInstruction {\n data: VoteVoteInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n type VoteStateUpdateLockout {\n confirmationCount: BigInt # FIXME:*\n slot: BigInt\n }\n type VoteStateUpdate {\n hash: String\n lockouts: [VoteStateUpdateLockout]\n root: BigInt\n timestamp: BigInt\n }\n\n # Vote: UpdateVoteState\n type VoteUpdateVoteStateInstructionData {\n hash: String\n voteAccount: Account\n voteAuthority: Account\n voteStateUpdate: VoteStateUpdate\n }\n type VoteUpdateVoteStateInstruction implements TransactionInstruction {\n data: VoteUpdateVoteStateInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Vote: UpdateVoteStateSwitch\n type VoteUpdateVoteStateSwitchInstructionData {\n hash: String\n voteAccount: Account\n voteAuthority: Account\n voteStateUpdate: VoteStateUpdate\n }\n type VoteUpdateVoteStateSwitchInstruction implements TransactionInstruction {\n data: VoteUpdateVoteStateSwitchInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Vote: CompactUpdateVoteState\n type VoteCompactUpdateVoteStateInstructionData {\n hash: String\n voteAccount: Account\n voteAuthority: Account\n voteStateUpdate: VoteStateUpdate\n }\n type VoteCompactUpdateVoteStateInstruction implements TransactionInstruction {\n data: VoteCompactUpdateVoteStateInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Vote: CompactUpdateVoteStateSwitch\n type VoteCompactUpdateVoteStateSwitchInstructionData {\n hash: String\n voteAccount: Account\n voteAuthority: Account\n voteStateUpdate: VoteStateUpdate\n }\n type VoteCompactUpdateVoteStateSwitchInstruction implements TransactionInstruction {\n data: VoteCompactUpdateVoteStateSwitchInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Vote: Withdraw\n type VoteWithdrawInstructionData {\n destination: Account\n lamports: BigInt\n voteAccount: Account\n withdrawAuthority: Account\n }\n type VoteWithdrawInstruction implements TransactionInstruction {\n data: VoteWithdrawInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Vote: UpdateValidatorIdentity\n type VoteUpdateValidatorIdentityInstructionData {\n newValidatorIdentity: Account\n voteAccount: Account\n withdrawAuthority: Account\n }\n type VoteUpdateValidatorIdentityInstruction implements TransactionInstruction {\n data: VoteUpdateValidatorIdentityInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Vote: UpdateCommission\n type VoteUpdateCommissionInstructionData {\n commission: BigInt # FIXME:*\n voteAccount: Account\n withdrawAuthority: Account\n }\n type VoteUpdateCommissionInstruction implements TransactionInstruction {\n data: VoteUpdateCommissionInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Vote: VoteSwitch\n type VoteVoteSwitchInstructionData {\n clockSysvar: Address\n hash: String\n slotHashesSysvar: Address\n vote: Vote\n voteAccount: Account\n voteAuthority: Account\n }\n type VoteVoteSwitchInstruction implements TransactionInstruction {\n data: VoteVoteSwitchInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n\n # Vote: AuthorizeChecked\n type VoteAuthorizeCheckedInstructionData {\n authority: Account\n authorityType: String\n clockSysvar: Address\n newAuthority: Account\n voteAccount: Account\n }\n type VoteAuthorizeCheckedInstruction implements TransactionInstruction {\n data: VoteAuthorizeCheckedInstructionData\n meta: JsonParsedInstructionMeta\n programId: Address\n }\n";
1
+ export declare const instructionTypeDefs = "\n # Transaction instruction interface\n interface TransactionInstruction {\n programId: Address\n }\n\n # Generic transaction instruction\n type GenericInstruction implements TransactionInstruction {\n accounts: [Address]\n data: Base64EncodedBytes\n programId: Address\n }\n\n # AddressLookupTable: CreateLookupTable\n type CreateLookupTableInstruction implements TransactionInstruction {\n programId: Address\n bumpSeed: BigInt # FIXME:*\n lookupTableAccount: Account\n lookupTableAuthority: Account\n payerAccount: Account\n recentSlot: BigInt\n systemProgram: Account\n }\n\n # AddressLookupTable: ExtendLookupTable\n type ExtendLookupTableInstruction implements TransactionInstruction {\n programId: Address\n lookupTableAccount: Account\n lookupTableAuthority: Account\n newAddresses: [Address]\n payerAccount: Account\n systemProgram: Account\n }\n\n # AddressLookupTable: FreezeLookupTable\n type FreezeLookupTableInstruction implements TransactionInstruction {\n programId: Address\n lookupTableAccount: Account\n lookupTableAuthority: Account\n }\n\n # AddressLookupTable: DeactivateLookupTable\n type DeactivateLookupTableInstruction implements TransactionInstruction {\n programId: Address\n lookupTableAccount: Account\n lookupTableAuthority: Account\n }\n\n # AddressLookupTable: CloseLookupTable\n type CloseLookupTableInstruction implements TransactionInstruction {\n programId: Address\n lookupTableAccount: Account\n lookupTableAuthority: Account\n recipient: Account\n }\n\n # BpfLoader: Write\n type BpfLoaderWriteInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n bytes: Base64EncodedBytes\n offset: BigInt # FIXME:*\n }\n\n # BpfLoader: Finalize\n type BpfLoaderFinalizeInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n }\n\n # BpfUpgradeableLoader: InitializeBuffer\n type BpfUpgradeableLoaderInitializeBufferInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n }\n\n # BpfUpgradeableLoader: Write\n type BpfUpgradeableLoaderWriteInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n authority: Account\n bytes: Base64EncodedBytes\n offset: BigInt # FIXME:*\n }\n\n # BpfUpgradeableLoader: DeployWithMaxDataLen\n type BpfUpgradeableLoaderDeployWithMaxDataLenInstruction implements TransactionInstruction {\n programId: Address\n authority: Account\n bufferAccount: Account\n clockSysvar: Address\n maxDataLen: BigInt\n payerAccount: Account\n programAccount: Account\n programDataAccount: Account\n rentSysvar: Address\n }\n\n # BpfUpgradeableLoader: Upgrade\n type BpfUpgradeableLoaderUpgradeInstruction implements TransactionInstruction {\n programId: Address\n authority: Account\n bufferAccount: Account\n clockSysvar: Address\n programAccount: Account\n programDataAccount: Account\n rentSysvar: Address\n spillAccount: Account\n }\n\n # BpfUpgradeableLoader: SetAuthority\n\n type BpfUpgradeableLoaderSetAuthorityInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n authority: Account\n newAuthority: Account\n }\n\n # BpfUpgradeableLoader: SetAuthorityChecked\n type BpfUpgradeableLoaderSetAuthorityCheckedInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n authority: Account\n newAuthority: Account\n }\n\n # BpfUpgradeableLoader: Close\n type BpfUpgradeableLoaderCloseInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n authority: Account\n programAccount: Account\n recipient: Account\n }\n\n # BpfUpgradeableLoader: ExtendProgram\n type BpfUpgradeableLoaderExtendProgramInstruction implements TransactionInstruction {\n programId: Address\n additionalBytes: BigInt\n payerAccount: Account\n programAccount: Account\n programDataAccount: Account\n systemProgram: Account\n }\n\n # SplAssociatedTokenAccount: Create\n type SplAssociatedTokenCreateInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n mint: Address\n source: Account\n systemProgram: Account\n tokenProgram: Account\n wallet: Account\n }\n\n # SplAssociatedTokenAccount: CreateIdempotent\n type SplAssociatedTokenCreateIdempotentInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n mint: Address\n source: Account\n systemProgram: Account\n tokenProgram: Account\n wallet: Account\n }\n\n # SplAssociatedTokenAccount: RecoverNested\n type SplAssociatedTokenRecoverNestedInstruction implements TransactionInstruction {\n programId: Address\n destination: Account\n nestedMint: Account\n nestedOwner: Account\n nestedSource: Account\n ownerMint: Account\n tokenProgram: Account\n wallet: Account\n }\n\n # SplMemo\n type SplMemoInstruction implements TransactionInstruction {\n programId: Address\n data: String\n }\n\n # SplToken: InitializeMint\n type SplTokenInitializeMintInstruction implements TransactionInstruction {\n programId: Address\n decimals: BigInt # FIXME:*\n freezeAuthority: Account\n mint: Account\n mintAuthority: Account\n rentSysvar: Address\n }\n\n # SplToken: InitializeMint2\n type SplTokenInitializeMint2Instruction implements TransactionInstruction {\n programId: Address\n decimals: BigInt # FIXME:*\n freezeAuthority: Account\n mint: Account\n mintAuthority: Account\n }\n\n # SplToken: InitializeAccount\n type SplTokenInitializeAccountInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n mint: Account\n owner: Account\n rentSysvar: Address\n }\n\n # SplToken: InitializeAccount2\n type SplTokenInitializeAccount2Instruction implements TransactionInstruction {\n programId: Address\n account: Account\n mint: Account\n owner: Account\n rentSysvar: Address\n }\n\n # SplToken: InitializeAccount3\n type SplTokenInitializeAccount3Instruction implements TransactionInstruction {\n programId: Address\n account: Account\n mint: Account\n owner: Account\n }\n\n # SplToken: InitializeMultisig\n type SplTokenInitializeMultisigInstruction implements TransactionInstruction {\n programId: Address\n m: BigInt # FIXME:*\n multisig: Account\n rentSysvar: Address\n signers: [Address]\n }\n\n # SplToken: InitializeMultisig2\n type SplTokenInitializeMultisig2Instruction implements TransactionInstruction {\n programId: Address\n m: BigInt # FIXME:*\n multisig: Account\n signers: [Address]\n }\n\n # SplToken: Transfer\n type SplTokenTransferInstruction implements TransactionInstruction {\n programId: Address\n amount: String\n authority: Account\n destination: Account\n multisigAuthority: Account\n source: Account\n }\n\n # SplToken: Approve\n type SplTokenApproveInstruction implements TransactionInstruction {\n programId: Address\n amount: String\n delegate: Account\n multisigOwner: Account\n owner: Account\n source: Account\n }\n\n # SplToken: Revoke\n type SplTokenRevokeInstruction implements TransactionInstruction {\n programId: Address\n multisigOwner: Account\n owner: Account\n source: Account\n }\n\n # SplToken: SetAuthority\n type SplTokenSetAuthorityInstruction implements TransactionInstruction {\n programId: Address\n authority: Account\n authorityType: String\n multisigAuthority: Account\n newAuthority: Account\n }\n\n # SplToken: MintTo\n type SplTokenMintToInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n amount: String\n authority: Account\n mint: Account\n mintAuthority: Account\n multisigMintAuthority: Account\n }\n\n # SplToken: Burn\n type SplTokenBurnInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n amount: String\n authority: Account\n mint: Account\n multisigAuthority: Account\n }\n\n # SplToken: CloseAccount\n type SplTokenCloseAccountInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n destination: Account\n multisigOwner: Account\n owner: Account\n }\n\n # SplToken: FreezeAccount\n type SplTokenFreezeAccountInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n freezeAuthority: Account\n mint: Account\n multisigFreezeAuthority: Account\n }\n\n # SplToken: ThawAccount\n type SplTokenThawAccountInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n freezeAuthority: Account\n mint: Account\n multisigFreezeAuthority: Account\n }\n\n # SplToken: TransferChecked\n type SplTokenTransferCheckedInstruction implements TransactionInstruction {\n programId: Address\n amount: String\n authority: Account\n decimals: BigInt # FIXME:*\n destination: Account\n mint: Account\n multisigAuthority: Account\n source: Account\n tokenAmount: String\n }\n\n # SplToken: ApproveChecked\n type SplTokenApproveCheckedInstruction implements TransactionInstruction {\n programId: Address\n delegate: Account\n mint: Account\n multisigOwner: Account\n owner: Account\n source: Account\n tokenAmount: String\n }\n\n # SplToken: MintToChecked\n type SplTokenMintToCheckedInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n authority: Account\n mint: Account\n mintAuthority: Account\n multisigMintAuthority: Account\n tokenAmount: String\n }\n\n # SplToken: BurnChecked\n type SplTokenBurnCheckedInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n authority: Account\n mint: Account\n multisigAuthority: Account\n tokenAmount: String\n }\n\n # SplToken: SyncNative\n type SplTokenSyncNativeInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n }\n\n # SplToken: GetAccountDataSize\n type SplTokenGetAccountDataSizeInstruction implements TransactionInstruction {\n programId: Address\n extensionTypes: [String]\n mint: Account\n }\n\n # SplToken: InitializeImmutableOwner\n type SplTokenInitializeImmutableOwnerInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n }\n\n # SplToken: AmountToUiAmount\n type SplTokenAmountToUiAmountInstruction implements TransactionInstruction {\n programId: Address\n amount: String\n mint: Account\n }\n\n # SplToken: UiAmountToAmount\n type SplTokenUiAmountToAmountInstruction implements TransactionInstruction {\n programId: Address\n mint: Account\n uiAmount: String\n }\n\n # SplToken: InitializeMintCloseAuthority\n type SplTokenInitializeMintCloseAuthorityInstruction implements TransactionInstruction {\n programId: Address\n mint: Account\n newAuthority: Account\n }\n\n # TODO: Extensions!\n # - TransferFeeExtension\n # - ConfidentialTransferFeeExtension\n # - DefaultAccountStateExtension\n # - Reallocate\n # - MemoTransferExtension\n # - CreateNativeMint\n # - InitializeNonTransferableMint\n # - InterestBearingMintExtension\n # - CpiGuardExtension\n # - InitializePermanentDelegate\n # - TransferHookExtension\n # - ConfidentialTransferFeeExtension\n # - WithdrawExcessLamports\n # - MetadataPointerExtension\n\n type Lockup {\n custodian: Account\n epoch: BigInt\n unixTimestamp: BigInt\n }\n\n # Stake: Initialize\n type StakeInitializeInstructionDataAuthorized {\n staker: Account\n withdrawer: Account\n }\n type StakeInitializeInstruction implements TransactionInstruction {\n programId: Address\n authorized: StakeInitializeInstructionDataAuthorized\n lockup: Lockup\n rentSysvar: Address\n stakeAccount: Account\n }\n\n # Stake: Authorize\n type StakeAuthorizeInstruction implements TransactionInstruction {\n programId: Address\n authority: Account\n authorityType: String\n clockSysvar: Address\n custodian: Account\n newAuthority: Account\n stakeAccount: Account\n }\n\n # Stake: DelegateStake\n type StakeDelegateStakeInstruction implements TransactionInstruction {\n programId: Address\n clockSysvar: Address\n stakeAccount: Account\n stakeAuthority: Account\n stakeConfigAccount: Account\n stakeHistorySysvar: Address\n voteAccount: Account\n }\n\n # Stake: Split\n type StakeSplitInstruction implements TransactionInstruction {\n programId: Address\n lamports: BigInt\n newSplitAccount: Account\n stakeAccount: Account\n stakeAuthority: Account\n }\n\n # Stake: Withdraw\n type StakeWithdrawInstruction implements TransactionInstruction {\n programId: Address\n clockSysvar: Address\n destination: Account\n lamports: BigInt\n stakeAccount: Account\n withdrawAuthority: Account\n }\n\n # Stake: Deactivate\n type StakeDeactivateInstruction implements TransactionInstruction {\n programId: Address\n clockSysvar: Address\n stakeAccount: Account\n stakeAuthority: Account\n }\n\n # Stake: SetLockup\n type StakeSetLockupInstruction implements TransactionInstruction {\n programId: Address\n custodian: Account\n lockup: Lockup\n stakeAccount: Account\n }\n\n # Stake: Merge\n type StakeMergeInstruction implements TransactionInstruction {\n programId: Address\n clockSysvar: Address\n destination: Account\n source: Account\n stakeAuthority: Account\n stakeHistorySysvar: Address\n }\n\n # Stake: AuthorizeWithSeed\n type StakeAuthorizeWithSeedInstruction implements TransactionInstruction {\n programId: Address\n authorityBase: Account\n authorityOwner: Account\n authoritySeed: String\n authorityType: String\n clockSysvar: Address\n custodian: Account\n newAuthorized: Account\n stakeAccount: Account\n }\n\n # Stake: InitializeChecked\n type StakeInitializeCheckedInstructionDataAuthorized {\n staker: Account\n withdrawer: Account\n }\n type StakeInitializeCheckedInstruction implements TransactionInstruction {\n programId: Address\n authorized: StakeInitializeCheckedInstructionDataAuthorized\n lockup: Lockup\n rentSysvar: Address\n stakeAccount: Account\n }\n\n # Stake: AuthorizeChecked\n type StakeAuthorizeCheckedInstruction implements TransactionInstruction {\n programId: Address\n authority: Account\n authorityType: String\n clockSysvar: Address\n custodian: Account\n newAuthority: Account\n stakeAccount: Account\n }\n\n # Stake: AuthorizeCheckedWithSeed\n type StakeAuthorizeCheckedWithSeedInstruction implements TransactionInstruction {\n programId: Address\n authorityBase: Account\n authorityOwner: Account\n authoritySeed: String\n authorityType: String\n clockSysvar: Address\n custodian: Account\n newAuthorized: Account\n stakeAccount: Account\n }\n\n # Stake: SetLockupChecked\n type StakeSetLockupCheckedInstruction implements TransactionInstruction {\n programId: Address\n custodian: Account\n lockup: Lockup\n stakeAccount: Account\n }\n\n # Stake: DeactivateDelinquent\n type StakeDeactivateDelinquentInstruction implements TransactionInstruction {\n programId: Address\n referenceVoteAccount: Account\n stakeAccount: Account\n voteAccount: Account\n }\n\n # Stake: Redelegate\n type StakeRedelegateInstruction implements TransactionInstruction {\n programId: Address\n newStakeAccount: Account\n stakeAccount: Account\n stakeAuthority: Account\n stakeConfigAccount: Account\n voteAccount: Account\n }\n\n # System: CreateAccount\n type CreateAccountInstruction implements TransactionInstruction {\n programId: Address\n lamports: BigInt\n newAccount: Account\n owner: Account\n source: Account\n space: BigInt\n }\n\n # System: Assign\n type AssignInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n owner: Account\n }\n\n # System: Transfer\n type TransferInstruction implements TransactionInstruction {\n programId: Address\n destination: Account\n lamports: BigInt\n source: Account\n }\n\n # System: CreateAccountWithSeed\n type CreateAccountWithSeedInstruction implements TransactionInstruction {\n programId: Address\n base: Account\n lamports: BigInt\n owner: Account\n seed: String\n space: BigInt\n }\n\n # System: AdvanceNonceAccount\n type AdvanceNonceAccountInstruction implements TransactionInstruction {\n programId: Address\n nonceAccount: Account\n nonceAuthority: Account\n recentBlockhashesSysvar: Address\n }\n\n # System: WithdrawNonceAccount\n type WithdrawNonceAccountInstruction implements TransactionInstruction {\n programId: Address\n destination: Account\n lamports: BigInt\n nonceAccount: Account\n nonceAuthority: Account\n recentBlockhashesSysvar: Address\n rentSysvar: Address\n }\n\n # System: InitializeNonceAccount\n type InitializeNonceAccountInstruction implements TransactionInstruction {\n programId: Address\n nonceAccount: Account\n nonceAuthority: Account\n recentBlockhashesSysvar: Address\n rentSysvar: Address\n }\n\n # System: AuthorizeNonceAccount\n type AuthorizeNonceAccountInstruction implements TransactionInstruction {\n programId: Address\n newAuthorized: Account\n nonceAccount: Account\n nonceAuthority: Account\n }\n\n # System: UpgradeNonceAccount\n type UpgradeNonceAccountInstruction implements TransactionInstruction {\n programId: Address\n nonceAccount: Account\n nonceAuthority: Account\n }\n\n # System: Allocate\n type AllocateInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n space: BigInt\n }\n\n # System: AllocateWithSeed\n type AllocateWithSeedInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n base: Address\n owner: Account\n seed: String\n space: BigInt\n }\n\n # System: AssignWithSeed\n type AssignWithSeedInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n base: Address\n owner: Account\n seed: String\n }\n\n # System: TransferWithSeed\n type TransferWithSeedInstruction implements TransactionInstruction {\n programId: Address\n destination: Account\n lamports: BigInt\n source: Account\n sourceBase: Address\n sourceOwner: Account\n sourceSeed: String\n }\n\n # Vote: InitializeAccount\n type VoteInitializeAccountInstruction implements TransactionInstruction {\n programId: Address\n authorizedVoter: Account\n authorizedWithdrawer: Account\n clockSysvar: Address\n commission: BigInt # FIXME:*\n node: Account\n rentSysvar: Address\n voteAccount: Account\n }\n\n # Vote: Authorize\n type VoteAuthorizeInstruction implements TransactionInstruction {\n programId: Address\n authority: Account\n authorityType: String\n clockSysvar: Address\n newAuthority: Account\n voteAccount: Account\n }\n\n # Vote: AuthorizeWithSeed\n type VoteAuthorizeWithSeedInstruction implements TransactionInstruction {\n programId: Address\n authorityBaseKey: String\n authorityOwner: Account\n authoritySeed: String\n authorityType: String\n clockSysvar: Address\n newAuthority: Account\n voteAccount: Account\n }\n\n # Vote: AuthorizeCheckedWithSeed\n type VoteAuthorizeCheckedWithSeedInstruction implements TransactionInstruction {\n programId: Address\n authorityBaseKey: String\n authorityOwner: Account\n authoritySeed: String\n authorityType: String\n clockSysvar: Address\n newAuthority: Account\n voteAccount: Account\n }\n\n type Vote {\n hash: String\n slots: [BigInt]\n timestamp: BigInt\n }\n\n # Vote: Vote\n type VoteVoteInstruction implements TransactionInstruction {\n programId: Address\n clockSysvar: Address\n slotHashesSysvar: Address\n vote: Vote\n voteAccount: Account\n voteAuthority: Account\n }\n\n type VoteStateUpdateLockout {\n confirmationCount: BigInt # FIXME:*\n slot: BigInt\n }\n type VoteStateUpdate {\n hash: String\n lockouts: [VoteStateUpdateLockout]\n root: BigInt\n timestamp: BigInt\n }\n\n # Vote: UpdateVoteState\n type VoteUpdateVoteStateInstruction implements TransactionInstruction {\n programId: Address\n hash: String\n voteAccount: Account\n voteAuthority: Account\n voteStateUpdate: VoteStateUpdate\n }\n\n # Vote: UpdateVoteStateSwitch\n type VoteUpdateVoteStateSwitchInstruction implements TransactionInstruction {\n programId: Address\n hash: String\n voteAccount: Account\n voteAuthority: Account\n voteStateUpdate: VoteStateUpdate\n }\n\n # Vote: CompactUpdateVoteState\n type VoteCompactUpdateVoteStateInstruction implements TransactionInstruction {\n programId: Address\n hash: String\n voteAccount: Account\n voteAuthority: Account\n voteStateUpdate: VoteStateUpdate\n }\n\n # Vote: CompactUpdateVoteStateSwitch\n type VoteCompactUpdateVoteStateSwitchInstruction implements TransactionInstruction {\n programId: Address\n hash: String\n voteAccount: Account\n voteAuthority: Account\n voteStateUpdate: VoteStateUpdate\n }\n\n # Vote: Withdraw\n type VoteWithdrawInstruction implements TransactionInstruction {\n programId: Address\n destination: Account\n lamports: BigInt\n voteAccount: Account\n withdrawAuthority: Account\n }\n\n # Vote: UpdateValidatorIdentity\n type VoteUpdateValidatorIdentityInstruction implements TransactionInstruction {\n programId: Address\n newValidatorIdentity: Account\n voteAccount: Account\n withdrawAuthority: Account\n }\n\n # Vote: UpdateCommission\n type VoteUpdateCommissionInstruction implements TransactionInstruction {\n programId: Address\n commission: BigInt # FIXME:*\n voteAccount: Account\n withdrawAuthority: Account\n }\n\n # Vote: VoteSwitch\n type VoteVoteSwitchInstruction implements TransactionInstruction {\n programId: Address\n clockSysvar: Address\n hash: String\n slotHashesSysvar: Address\n vote: Vote\n voteAccount: Account\n voteAuthority: Account\n }\n\n # Vote: AuthorizeChecked\n type VoteAuthorizeCheckedInstruction implements TransactionInstruction {\n programId: Address\n authority: Account\n authorityType: String\n clockSysvar: Address\n newAuthority: Account\n voteAccount: Account\n }\n";
2
2
  export declare const instructionResolvers: {
3
3
  TransactionInstruction: {
4
4
  __resolveType(instruction: {
5
- meta: {
6
- program: string;
7
- type: string;
8
- };
5
+ programName: string;
6
+ instructionType: string;
9
7
  }): "CreateLookupTableInstruction" | "FreezeLookupTableInstruction" | "ExtendLookupTableInstruction" | "DeactivateLookupTableInstruction" | "CloseLookupTableInstruction" | "BpfLoaderWriteInstruction" | "BpfLoaderFinalizeInstruction" | "BpfUpgradeableLoaderInitializeBufferInstruction" | "BpfUpgradeableLoaderWriteInstruction" | "BpfUpgradeableLoaderDeployWithMaxDataLenInstruction" | "BpfUpgradeableLoaderUpgradeInstruction" | "BpfUpgradeableLoaderSetAuthorityInstruction" | "BpfUpgradeableLoaderSetAuthorityCheckedInstruction" | "BpfUpgradeableLoaderCloseInstruction" | "BpfUpgradeableLoaderExtendProgramInstruction" | "SplAssociatedTokenCreateInstruction" | "SplAssociatedTokenCreateIdempotentInstruction" | "SplAssociatedTokenRecoverNestedInstruction" | "SplMemoInstruction" | "SplTokenInitializeMintInstruction" | "SplTokenInitializeMint2Instruction" | "SplTokenInitializeAccountInstruction" | "SplTokenInitializeAccount2Instruction" | "SplTokenInitializeAccount3Instruction" | "SplTokenInitializeMultisigInstruction" | "SplTokenInitializeMultisig2Instruction" | "SplTokenTransferInstruction" | "SplTokenApproveInstruction" | "SplTokenRevokeInstruction" | "SplTokenSetAuthorityInstruction" | "SplTokenMintToInstruction" | "SplTokenBurnInstruction" | "SplTokenCloseAccountInstruction" | "SplTokenFreezeAccountInstruction" | "SplTokenThawAccountInstruction" | "SplTokenTransferCheckedInstruction" | "SplTokenApproveCheckedInstruction" | "SplTokenMintToCheckedInstruction" | "SplTokenBurnCheckedInstruction" | "SplTokenSyncNativeInstruction" | "SplTokenGetAccountDataSizeInstruction" | "SplTokenInitializeImmutableOwnerInstruction" | "SplTokenAmountToUiAmountInstruction" | "SplTokenUiAmountToAmountInstruction" | "SplTokenInitializeMintCloseAuthorityInstruction" | "StakeInitializeInstruction" | "StakeAuthorizeInstruction" | "StakeDelegateStakeInstruction" | "StakeSplitInstruction" | "StakeWithdrawInstruction" | "StakeDeactivateInstruction" | "StakeSetLockupInstruction" | "StakeMergeInstruction" | "StakeAuthorizeWithSeedInstruction" | "StakeInitializeCheckedInstruction" | "StakeAuthorizeCheckedInstruction" | "StakeAuthorizeCheckedWithSeedInstruction" | "StakeSetLockupCheckedInstruction" | "StakeDeactivateDelinquentInstruction" | "StakeRedelegateInstruction" | "CreateAccountInstruction" | "AssignInstruction" | "TransferInstruction" | "CreateAccountWithSeedInstruction" | "AdvanceNonceAccountInstruction" | "WithdrawNonceAccountInstruction" | "InitializeNonceAccountInstruction" | "AuthorizeNonceAccountInstruction" | "UpgradeNonceAccountInstruction" | "AllocateInstruction" | "AllocateWithSeedInstruction" | "AssignWithSeedInstruction" | "TransferWithSeedInstruction" | "VoteInitializeAccountInstruction" | "VoteAuthorizeInstruction" | "VoteAuthorizeWithSeedInstruction" | "VoteAuthorizeCheckedWithSeedInstruction" | "VoteVoteInstruction" | "VoteUpdateVoteStateInstruction" | "VoteUpdateVoteStateSwitchInstruction" | "VoteCompactUpdateVoteStateInstruction" | "VoteCompactUpdateVoteStateSwitchInstruction" | "VoteWithdrawInstruction" | "VoteUpdateValidatorIdentityInstruction" | "VoteUpdateCommissionInstruction" | "VoteVoteSwitchInstruction" | "VoteAuthorizeCheckedInstruction" | "GenericInstruction";
10
8
  };
11
- CreateLookupTableInstructionData: {
9
+ CreateLookupTableInstruction: {
12
10
  lookupTableAccount: (parent: {
13
11
  [x: string]: import("@solana/addresses").Address;
14
12
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -22,7 +20,7 @@ export declare const instructionResolvers: {
22
20
  [x: string]: import("@solana/addresses").Address;
23
21
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
24
22
  };
25
- ExtendLookupTableInstructionData: {
23
+ ExtendLookupTableInstruction: {
26
24
  lookupTableAccount: (parent: {
27
25
  [x: string]: import("@solana/addresses").Address;
28
26
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -36,7 +34,7 @@ export declare const instructionResolvers: {
36
34
  [x: string]: import("@solana/addresses").Address;
37
35
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
38
36
  };
39
- FreezeLookupTableInstructionData: {
37
+ FreezeLookupTableInstruction: {
40
38
  lookupTableAccount: (parent: {
41
39
  [x: string]: import("@solana/addresses").Address;
42
40
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -44,7 +42,7 @@ export declare const instructionResolvers: {
44
42
  [x: string]: import("@solana/addresses").Address;
45
43
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
46
44
  };
47
- DeactivateLookupTableInstructionData: {
45
+ DeactivateLookupTableInstruction: {
48
46
  lookupTableAccount: (parent: {
49
47
  [x: string]: import("@solana/addresses").Address;
50
48
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -52,7 +50,7 @@ export declare const instructionResolvers: {
52
50
  [x: string]: import("@solana/addresses").Address;
53
51
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
54
52
  };
55
- CloseLookupTableInstructionData: {
53
+ CloseLookupTableInstruction: {
56
54
  lookupTableAccount: (parent: {
57
55
  [x: string]: import("@solana/addresses").Address;
58
56
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -63,22 +61,22 @@ export declare const instructionResolvers: {
63
61
  [x: string]: import("@solana/addresses").Address;
64
62
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
65
63
  };
66
- BpfLoaderWriteInstructionData: {
64
+ BpfLoaderWriteInstruction: {
67
65
  account: (parent: {
68
66
  [x: string]: import("@solana/addresses").Address;
69
67
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
70
68
  };
71
- BpfLoaderFinalizeInstructionData: {
69
+ BpfLoaderFinalizeInstruction: {
72
70
  account: (parent: {
73
71
  [x: string]: import("@solana/addresses").Address;
74
72
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
75
73
  };
76
- BpfUpgradeableLoaderInitializeBufferInstructionData: {
74
+ BpfUpgradeableLoaderInitializeBufferInstruction: {
77
75
  account: (parent: {
78
76
  [x: string]: import("@solana/addresses").Address;
79
77
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
80
78
  };
81
- BpfUpgradeableLoaderWriteInstructionData: {
79
+ BpfUpgradeableLoaderWriteInstruction: {
82
80
  account: (parent: {
83
81
  [x: string]: import("@solana/addresses").Address;
84
82
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -86,7 +84,7 @@ export declare const instructionResolvers: {
86
84
  [x: string]: import("@solana/addresses").Address;
87
85
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
88
86
  };
89
- BpfUpgradeableLoaderDeployWithMaxDataLenInstructionData: {
87
+ BpfUpgradeableLoaderDeployWithMaxDataLenInstruction: {
90
88
  authority: (parent: {
91
89
  [x: string]: import("@solana/addresses").Address;
92
90
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -103,7 +101,7 @@ export declare const instructionResolvers: {
103
101
  [x: string]: import("@solana/addresses").Address;
104
102
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
105
103
  };
106
- BpfUpgradeableLoaderUpgradeInstructionData: {
104
+ BpfUpgradeableLoaderUpgradeInstruction: {
107
105
  authority: (parent: {
108
106
  [x: string]: import("@solana/addresses").Address;
109
107
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -117,7 +115,7 @@ export declare const instructionResolvers: {
117
115
  [x: string]: import("@solana/addresses").Address;
118
116
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
119
117
  };
120
- BpfUpgradeableLoaderSetAuthorityInstructionData: {
118
+ BpfUpgradeableLoaderSetAuthorityInstruction: {
121
119
  account: (parent: {
122
120
  [x: string]: import("@solana/addresses").Address;
123
121
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -128,7 +126,7 @@ export declare const instructionResolvers: {
128
126
  [x: string]: import("@solana/addresses").Address;
129
127
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
130
128
  };
131
- BpfUpgradeableLoaderSetAuthorityCheckedInstructionData: {
129
+ BpfUpgradeableLoaderSetAuthorityCheckedInstruction: {
132
130
  account: (parent: {
133
131
  [x: string]: import("@solana/addresses").Address;
134
132
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -139,7 +137,7 @@ export declare const instructionResolvers: {
139
137
  [x: string]: import("@solana/addresses").Address;
140
138
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
141
139
  };
142
- BpfUpgradeableLoaderCloseInstructionData: {
140
+ BpfUpgradeableLoaderCloseInstruction: {
143
141
  account: (parent: {
144
142
  [x: string]: import("@solana/addresses").Address;
145
143
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -153,7 +151,7 @@ export declare const instructionResolvers: {
153
151
  [x: string]: import("@solana/addresses").Address;
154
152
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
155
153
  };
156
- BpfUpgradeableLoaderExtendProgramInstructionData: {
154
+ BpfUpgradeableLoaderExtendProgramInstruction: {
157
155
  payerAccount: (parent: {
158
156
  [x: string]: import("@solana/addresses").Address;
159
157
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -167,7 +165,7 @@ export declare const instructionResolvers: {
167
165
  [x: string]: import("@solana/addresses").Address;
168
166
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
169
167
  };
170
- SplAssociatedTokenCreateInstructionData: {
168
+ SplAssociatedTokenCreateInstruction: {
171
169
  account: (parent: {
172
170
  [x: string]: import("@solana/addresses").Address;
173
171
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -187,7 +185,7 @@ export declare const instructionResolvers: {
187
185
  [x: string]: import("@solana/addresses").Address;
188
186
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
189
187
  };
190
- SplAssociatedTokenCreateIdempotentInstructionData: {
188
+ SplAssociatedTokenCreateIdempotentInstruction: {
191
189
  account: (parent: {
192
190
  [x: string]: import("@solana/addresses").Address;
193
191
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -207,7 +205,7 @@ export declare const instructionResolvers: {
207
205
  [x: string]: import("@solana/addresses").Address;
208
206
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
209
207
  };
210
- SplAssociatedTokenRecoverNestedInstructionData: {
208
+ SplAssociatedTokenRecoverNestedInstruction: {
211
209
  destination: (parent: {
212
210
  [x: string]: import("@solana/addresses").Address;
213
211
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -230,7 +228,7 @@ export declare const instructionResolvers: {
230
228
  [x: string]: import("@solana/addresses").Address;
231
229
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
232
230
  };
233
- SplTokenInitializeMintInstructionData: {
231
+ SplTokenInitializeMintInstruction: {
234
232
  freezeAuthority: (parent: {
235
233
  [x: string]: import("@solana/addresses").Address;
236
234
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -241,7 +239,7 @@ export declare const instructionResolvers: {
241
239
  [x: string]: import("@solana/addresses").Address;
242
240
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
243
241
  };
244
- SplTokenInitializeMint2InstructionData: {
242
+ SplTokenInitializeMint2Instruction: {
245
243
  freezeAuthority: (parent: {
246
244
  [x: string]: import("@solana/addresses").Address;
247
245
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -252,7 +250,7 @@ export declare const instructionResolvers: {
252
250
  [x: string]: import("@solana/addresses").Address;
253
251
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
254
252
  };
255
- SplTokenInitializeAccountInstructionData: {
253
+ SplTokenInitializeAccountInstruction: {
256
254
  account: (parent: {
257
255
  [x: string]: import("@solana/addresses").Address;
258
256
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -263,7 +261,7 @@ export declare const instructionResolvers: {
263
261
  [x: string]: import("@solana/addresses").Address;
264
262
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
265
263
  };
266
- SplTokenInitializeAccount2InstructionData: {
264
+ SplTokenInitializeAccount2Instruction: {
267
265
  account: (parent: {
268
266
  [x: string]: import("@solana/addresses").Address;
269
267
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -274,7 +272,7 @@ export declare const instructionResolvers: {
274
272
  [x: string]: import("@solana/addresses").Address;
275
273
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
276
274
  };
277
- SplTokenInitializeAccount3InstructionData: {
275
+ SplTokenInitializeAccount3Instruction: {
278
276
  account: (parent: {
279
277
  [x: string]: import("@solana/addresses").Address;
280
278
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -285,17 +283,17 @@ export declare const instructionResolvers: {
285
283
  [x: string]: import("@solana/addresses").Address;
286
284
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
287
285
  };
288
- SplTokenInitializeMultisigInstructionData: {
286
+ SplTokenInitializeMultisigInstruction: {
289
287
  multisig: (parent: {
290
288
  [x: string]: import("@solana/addresses").Address;
291
289
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
292
290
  };
293
- SplTokenInitializeMultisig2InstructionData: {
291
+ SplTokenInitializeMultisig2Instruction: {
294
292
  multisig: (parent: {
295
293
  [x: string]: import("@solana/addresses").Address;
296
294
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
297
295
  };
298
- SplTokenTransferInstructionData: {
296
+ SplTokenTransferInstruction: {
299
297
  authority: (parent: {
300
298
  [x: string]: import("@solana/addresses").Address;
301
299
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -309,7 +307,7 @@ export declare const instructionResolvers: {
309
307
  [x: string]: import("@solana/addresses").Address;
310
308
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
311
309
  };
312
- SplTokenApproveInstructionData: {
310
+ SplTokenApproveInstruction: {
313
311
  delegate: (parent: {
314
312
  [x: string]: import("@solana/addresses").Address;
315
313
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -323,7 +321,7 @@ export declare const instructionResolvers: {
323
321
  [x: string]: import("@solana/addresses").Address;
324
322
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
325
323
  };
326
- SplTokenRevokeInstructionData: {
324
+ SplTokenRevokeInstruction: {
327
325
  multisigOwner: (parent: {
328
326
  [x: string]: import("@solana/addresses").Address;
329
327
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -334,7 +332,7 @@ export declare const instructionResolvers: {
334
332
  [x: string]: import("@solana/addresses").Address;
335
333
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
336
334
  };
337
- SplTokenSetAuthorityInstructionData: {
335
+ SplTokenSetAuthorityInstruction: {
338
336
  authority: (parent: {
339
337
  [x: string]: import("@solana/addresses").Address;
340
338
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -345,7 +343,7 @@ export declare const instructionResolvers: {
345
343
  [x: string]: import("@solana/addresses").Address;
346
344
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
347
345
  };
348
- SplTokenMintToInstructionData: {
346
+ SplTokenMintToInstruction: {
349
347
  account: (parent: {
350
348
  [x: string]: import("@solana/addresses").Address;
351
349
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -362,7 +360,7 @@ export declare const instructionResolvers: {
362
360
  [x: string]: import("@solana/addresses").Address;
363
361
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
364
362
  };
365
- SplTokenBurnInstructionData: {
363
+ SplTokenBurnInstruction: {
366
364
  account: (parent: {
367
365
  [x: string]: import("@solana/addresses").Address;
368
366
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -376,7 +374,7 @@ export declare const instructionResolvers: {
376
374
  [x: string]: import("@solana/addresses").Address;
377
375
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
378
376
  };
379
- SplTokenCloseAccountInstructionData: {
377
+ SplTokenCloseAccountInstruction: {
380
378
  account: (parent: {
381
379
  [x: string]: import("@solana/addresses").Address;
382
380
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -390,7 +388,7 @@ export declare const instructionResolvers: {
390
388
  [x: string]: import("@solana/addresses").Address;
391
389
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
392
390
  };
393
- SplTokenFreezeAccountInstructionData: {
391
+ SplTokenFreezeAccountInstruction: {
394
392
  account: (parent: {
395
393
  [x: string]: import("@solana/addresses").Address;
396
394
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -404,7 +402,7 @@ export declare const instructionResolvers: {
404
402
  [x: string]: import("@solana/addresses").Address;
405
403
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
406
404
  };
407
- SplTokenThawAccountInstructionData: {
405
+ SplTokenThawAccountInstruction: {
408
406
  account: (parent: {
409
407
  [x: string]: import("@solana/addresses").Address;
410
408
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -418,7 +416,7 @@ export declare const instructionResolvers: {
418
416
  [x: string]: import("@solana/addresses").Address;
419
417
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
420
418
  };
421
- SplTokenTransferCheckedInstructionData: {
419
+ SplTokenTransferCheckedInstruction: {
422
420
  authority: (parent: {
423
421
  [x: string]: import("@solana/addresses").Address;
424
422
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -435,7 +433,7 @@ export declare const instructionResolvers: {
435
433
  [x: string]: import("@solana/addresses").Address;
436
434
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
437
435
  };
438
- SplTokenApproveCheckedInstructionData: {
436
+ SplTokenApproveCheckedInstruction: {
439
437
  delegate: (parent: {
440
438
  [x: string]: import("@solana/addresses").Address;
441
439
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -452,7 +450,7 @@ export declare const instructionResolvers: {
452
450
  [x: string]: import("@solana/addresses").Address;
453
451
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
454
452
  };
455
- SplTokenMintToCheckedInstructionData: {
453
+ SplTokenMintToCheckedInstruction: {
456
454
  account: (parent: {
457
455
  [x: string]: import("@solana/addresses").Address;
458
456
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -469,7 +467,7 @@ export declare const instructionResolvers: {
469
467
  [x: string]: import("@solana/addresses").Address;
470
468
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
471
469
  };
472
- SplTokenBurnCheckedInstructionData: {
470
+ SplTokenBurnCheckedInstruction: {
473
471
  account: (parent: {
474
472
  [x: string]: import("@solana/addresses").Address;
475
473
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -483,27 +481,27 @@ export declare const instructionResolvers: {
483
481
  [x: string]: import("@solana/addresses").Address;
484
482
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
485
483
  };
486
- SplTokenSyncNativeInstructionData: {
484
+ SplTokenSyncNativeInstruction: {
487
485
  account: (parent: {
488
486
  [x: string]: import("@solana/addresses").Address;
489
487
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
490
488
  };
491
- SplTokenGetAccountDataSizeInstructionData: {
489
+ SplTokenGetAccountDataSizeInstruction: {
492
490
  mint: (parent: {
493
491
  [x: string]: import("@solana/addresses").Address;
494
492
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
495
493
  };
496
- SplTokenAmountToUiAmountInstructionData: {
494
+ SplTokenAmountToUiAmountInstruction: {
497
495
  mint: (parent: {
498
496
  [x: string]: import("@solana/addresses").Address;
499
497
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
500
498
  };
501
- SplTokenUiAmountToAmountInstructionData: {
499
+ SplTokenUiAmountToAmountInstruction: {
502
500
  mint: (parent: {
503
501
  [x: string]: import("@solana/addresses").Address;
504
502
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
505
503
  };
506
- SplTokenInitializeMintCloseAuthorityInstructionData: {
504
+ SplTokenInitializeMintCloseAuthorityInstruction: {
507
505
  mint: (parent: {
508
506
  [x: string]: import("@solana/addresses").Address;
509
507
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -524,12 +522,12 @@ export declare const instructionResolvers: {
524
522
  [x: string]: import("@solana/addresses").Address;
525
523
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
526
524
  };
527
- StakeInitializeInstructionData: {
525
+ StakeInitializeInstruction: {
528
526
  stakeAccount: (parent: {
529
527
  [x: string]: import("@solana/addresses").Address;
530
528
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
531
529
  };
532
- StakeAuthorizeInstructionData: {
530
+ StakeAuthorizeInstruction: {
533
531
  authority: (parent: {
534
532
  [x: string]: import("@solana/addresses").Address;
535
533
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -543,7 +541,7 @@ export declare const instructionResolvers: {
543
541
  [x: string]: import("@solana/addresses").Address;
544
542
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
545
543
  };
546
- StakeDelegateStakeInstructionData: {
544
+ StakeDelegateStakeInstruction: {
547
545
  stakeAccount: (parent: {
548
546
  [x: string]: import("@solana/addresses").Address;
549
547
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -557,7 +555,7 @@ export declare const instructionResolvers: {
557
555
  [x: string]: import("@solana/addresses").Address;
558
556
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
559
557
  };
560
- StakeSplitInstructionData: {
558
+ StakeSplitInstruction: {
561
559
  newSplitAccount: (parent: {
562
560
  [x: string]: import("@solana/addresses").Address;
563
561
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -568,7 +566,7 @@ export declare const instructionResolvers: {
568
566
  [x: string]: import("@solana/addresses").Address;
569
567
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
570
568
  };
571
- StakeWithdrawInstructionData: {
569
+ StakeWithdrawInstruction: {
572
570
  destination: (parent: {
573
571
  [x: string]: import("@solana/addresses").Address;
574
572
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -579,7 +577,7 @@ export declare const instructionResolvers: {
579
577
  [x: string]: import("@solana/addresses").Address;
580
578
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
581
579
  };
582
- StakeDeactivateInstructionData: {
580
+ StakeDeactivateInstruction: {
583
581
  stakeAccount: (parent: {
584
582
  [x: string]: import("@solana/addresses").Address;
585
583
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -587,7 +585,7 @@ export declare const instructionResolvers: {
587
585
  [x: string]: import("@solana/addresses").Address;
588
586
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
589
587
  };
590
- StakeSetLockupInstructionData: {
588
+ StakeSetLockupInstruction: {
591
589
  custodian: (parent: {
592
590
  [x: string]: import("@solana/addresses").Address;
593
591
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -595,7 +593,7 @@ export declare const instructionResolvers: {
595
593
  [x: string]: import("@solana/addresses").Address;
596
594
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
597
595
  };
598
- StakeMergeInstructionData: {
596
+ StakeMergeInstruction: {
599
597
  destination: (parent: {
600
598
  [x: string]: import("@solana/addresses").Address;
601
599
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -606,7 +604,7 @@ export declare const instructionResolvers: {
606
604
  [x: string]: import("@solana/addresses").Address;
607
605
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
608
606
  };
609
- StakeAuthorizeWithSeedInstructionData: {
607
+ StakeAuthorizeWithSeedInstruction: {
610
608
  authorityBase: (parent: {
611
609
  [x: string]: import("@solana/addresses").Address;
612
610
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -624,9 +622,6 @@ export declare const instructionResolvers: {
624
622
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
625
623
  };
626
624
  StakeInitializeCheckedInstructionDataAuthorized: {
627
- stakeAccount: (parent: {
628
- [x: string]: import("@solana/addresses").Address;
629
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
630
625
  staker: (parent: {
631
626
  [x: string]: import("@solana/addresses").Address;
632
627
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -634,7 +629,7 @@ export declare const instructionResolvers: {
634
629
  [x: string]: import("@solana/addresses").Address;
635
630
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
636
631
  };
637
- StakeAuthorizeCheckedInstructionData: {
632
+ StakeAuthorizeCheckedInstruction: {
638
633
  authority: (parent: {
639
634
  [x: string]: import("@solana/addresses").Address;
640
635
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -648,7 +643,7 @@ export declare const instructionResolvers: {
648
643
  [x: string]: import("@solana/addresses").Address;
649
644
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
650
645
  };
651
- StakeAuthorizeCheckedWithSeedInstructionData: {
646
+ StakeAuthorizeCheckedWithSeedInstruction: {
652
647
  authorityBase: (parent: {
653
648
  [x: string]: import("@solana/addresses").Address;
654
649
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -665,7 +660,7 @@ export declare const instructionResolvers: {
665
660
  [x: string]: import("@solana/addresses").Address;
666
661
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
667
662
  };
668
- StakeSetLockupCheckedInstructionData: {
663
+ StakeSetLockupCheckedInstruction: {
669
664
  custodian: (parent: {
670
665
  [x: string]: import("@solana/addresses").Address;
671
666
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -673,7 +668,7 @@ export declare const instructionResolvers: {
673
668
  [x: string]: import("@solana/addresses").Address;
674
669
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
675
670
  };
676
- StakeDeactivateDelinquentInstructionData: {
671
+ StakeDeactivateDelinquentInstruction: {
677
672
  referenceVoteAccount: (parent: {
678
673
  [x: string]: import("@solana/addresses").Address;
679
674
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -684,7 +679,7 @@ export declare const instructionResolvers: {
684
679
  [x: string]: import("@solana/addresses").Address;
685
680
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
686
681
  };
687
- StakeRedelegateInstructionData: {
682
+ StakeRedelegateInstruction: {
688
683
  newStakeAccount: (parent: {
689
684
  [x: string]: import("@solana/addresses").Address;
690
685
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -701,7 +696,7 @@ export declare const instructionResolvers: {
701
696
  [x: string]: import("@solana/addresses").Address;
702
697
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
703
698
  };
704
- CreateAccountInstructionData: {
699
+ CreateAccountInstruction: {
705
700
  newAccount: (parent: {
706
701
  [x: string]: import("@solana/addresses").Address;
707
702
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -712,7 +707,7 @@ export declare const instructionResolvers: {
712
707
  [x: string]: import("@solana/addresses").Address;
713
708
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
714
709
  };
715
- AssignInstructionData: {
710
+ AssignInstruction: {
716
711
  account: (parent: {
717
712
  [x: string]: import("@solana/addresses").Address;
718
713
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -720,7 +715,7 @@ export declare const instructionResolvers: {
720
715
  [x: string]: import("@solana/addresses").Address;
721
716
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
722
717
  };
723
- TransferInstructionData: {
718
+ TransferInstruction: {
724
719
  destination: (parent: {
725
720
  [x: string]: import("@solana/addresses").Address;
726
721
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -728,7 +723,7 @@ export declare const instructionResolvers: {
728
723
  [x: string]: import("@solana/addresses").Address;
729
724
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
730
725
  };
731
- CreateAccountWithSeedInstructionData: {
726
+ CreateAccountWithSeedInstruction: {
732
727
  base: (parent: {
733
728
  [x: string]: import("@solana/addresses").Address;
734
729
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -739,7 +734,7 @@ export declare const instructionResolvers: {
739
734
  [x: string]: import("@solana/addresses").Address;
740
735
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
741
736
  };
742
- AdvanceNonceAccountInstructionData: {
737
+ AdvanceNonceAccountInstruction: {
743
738
  nonceAccount: (parent: {
744
739
  [x: string]: import("@solana/addresses").Address;
745
740
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -747,7 +742,7 @@ export declare const instructionResolvers: {
747
742
  [x: string]: import("@solana/addresses").Address;
748
743
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
749
744
  };
750
- WithdrawNonceAccountInstructionData: {
745
+ WithdrawNonceAccountInstruction: {
751
746
  destination: (parent: {
752
747
  [x: string]: import("@solana/addresses").Address;
753
748
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -758,7 +753,7 @@ export declare const instructionResolvers: {
758
753
  [x: string]: import("@solana/addresses").Address;
759
754
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
760
755
  };
761
- InitializeNonceAccountInstructionData: {
756
+ InitializeNonceAccountInstruction: {
762
757
  nonceAccount: (parent: {
763
758
  [x: string]: import("@solana/addresses").Address;
764
759
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -766,7 +761,7 @@ export declare const instructionResolvers: {
766
761
  [x: string]: import("@solana/addresses").Address;
767
762
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
768
763
  };
769
- AuthorizeNonceAccountInstructionData: {
764
+ AuthorizeNonceAccountInstruction: {
770
765
  newAuthorized: (parent: {
771
766
  [x: string]: import("@solana/addresses").Address;
772
767
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -777,7 +772,7 @@ export declare const instructionResolvers: {
777
772
  [x: string]: import("@solana/addresses").Address;
778
773
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
779
774
  };
780
- UpgradeNonceAccountInstructionData: {
775
+ UpgradeNonceAccountInstruction: {
781
776
  nonceAccount: (parent: {
782
777
  [x: string]: import("@solana/addresses").Address;
783
778
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -785,12 +780,12 @@ export declare const instructionResolvers: {
785
780
  [x: string]: import("@solana/addresses").Address;
786
781
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
787
782
  };
788
- AllocateInstructionData: {
783
+ AllocateInstruction: {
789
784
  account: (parent: {
790
785
  [x: string]: import("@solana/addresses").Address;
791
786
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
792
787
  };
793
- AllocateWithSeedInstructionData: {
788
+ AllocateWithSeedInstruction: {
794
789
  account: (parent: {
795
790
  [x: string]: import("@solana/addresses").Address;
796
791
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -798,7 +793,7 @@ export declare const instructionResolvers: {
798
793
  [x: string]: import("@solana/addresses").Address;
799
794
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
800
795
  };
801
- AssignWithSeedInstructionData: {
796
+ AssignWithSeedInstruction: {
802
797
  account: (parent: {
803
798
  [x: string]: import("@solana/addresses").Address;
804
799
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -806,7 +801,7 @@ export declare const instructionResolvers: {
806
801
  [x: string]: import("@solana/addresses").Address;
807
802
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
808
803
  };
809
- TransferWithSeedInstructionData: {
804
+ TransferWithSeedInstruction: {
810
805
  destination: (parent: {
811
806
  [x: string]: import("@solana/addresses").Address;
812
807
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -817,7 +812,7 @@ export declare const instructionResolvers: {
817
812
  [x: string]: import("@solana/addresses").Address;
818
813
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
819
814
  };
820
- VoteInitializeAccountInstructionData: {
815
+ VoteInitializeAccountInstruction: {
821
816
  authorizedVoter: (parent: {
822
817
  [x: string]: import("@solana/addresses").Address;
823
818
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -831,7 +826,7 @@ export declare const instructionResolvers: {
831
826
  [x: string]: import("@solana/addresses").Address;
832
827
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
833
828
  };
834
- VoteAuthorizeInstructionData: {
829
+ VoteAuthorizeInstruction: {
835
830
  authority: (parent: {
836
831
  [x: string]: import("@solana/addresses").Address;
837
832
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -842,7 +837,7 @@ export declare const instructionResolvers: {
842
837
  [x: string]: import("@solana/addresses").Address;
843
838
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
844
839
  };
845
- VoteAuthorizeWithSeedInstructionData: {
840
+ VoteAuthorizeWithSeedInstruction: {
846
841
  authorityOwner: (parent: {
847
842
  [x: string]: import("@solana/addresses").Address;
848
843
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -853,7 +848,7 @@ export declare const instructionResolvers: {
853
848
  [x: string]: import("@solana/addresses").Address;
854
849
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
855
850
  };
856
- VoteAuthorizeCheckedWithSeedInstructionData: {
851
+ VoteAuthorizeCheckedWithSeedInstruction: {
857
852
  authorityOwner: (parent: {
858
853
  [x: string]: import("@solana/addresses").Address;
859
854
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -864,7 +859,7 @@ export declare const instructionResolvers: {
864
859
  [x: string]: import("@solana/addresses").Address;
865
860
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
866
861
  };
867
- VoteVoteInstructionData: {
862
+ VoteVoteInstruction: {
868
863
  voteAccount: (parent: {
869
864
  [x: string]: import("@solana/addresses").Address;
870
865
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -872,7 +867,7 @@ export declare const instructionResolvers: {
872
867
  [x: string]: import("@solana/addresses").Address;
873
868
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
874
869
  };
875
- VoteUpdateVoteStateInstructionData: {
870
+ VoteUpdateVoteStateInstruction: {
876
871
  voteAccount: (parent: {
877
872
  [x: string]: import("@solana/addresses").Address;
878
873
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -880,7 +875,7 @@ export declare const instructionResolvers: {
880
875
  [x: string]: import("@solana/addresses").Address;
881
876
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
882
877
  };
883
- VoteUpdateVoteStateSwitchInstructionData: {
878
+ VoteUpdateVoteStateSwitchInstruction: {
884
879
  voteAccount: (parent: {
885
880
  [x: string]: import("@solana/addresses").Address;
886
881
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -888,7 +883,7 @@ export declare const instructionResolvers: {
888
883
  [x: string]: import("@solana/addresses").Address;
889
884
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
890
885
  };
891
- VoteCompactUpdateVoteStateInstructionData: {
886
+ VoteCompactUpdateVoteStateInstruction: {
892
887
  voteAccount: (parent: {
893
888
  [x: string]: import("@solana/addresses").Address;
894
889
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -896,7 +891,7 @@ export declare const instructionResolvers: {
896
891
  [x: string]: import("@solana/addresses").Address;
897
892
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
898
893
  };
899
- VoteCompactUpdateVoteStateSwitchInstructionData: {
894
+ VoteCompactUpdateVoteStateSwitchInstruction: {
900
895
  voteAccount: (parent: {
901
896
  [x: string]: import("@solana/addresses").Address;
902
897
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -904,7 +899,7 @@ export declare const instructionResolvers: {
904
899
  [x: string]: import("@solana/addresses").Address;
905
900
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
906
901
  };
907
- VoteWithdrawInstructionData: {
902
+ VoteWithdrawInstruction: {
908
903
  voteAccount: (parent: {
909
904
  [x: string]: import("@solana/addresses").Address;
910
905
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -912,7 +907,7 @@ export declare const instructionResolvers: {
912
907
  [x: string]: import("@solana/addresses").Address;
913
908
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
914
909
  };
915
- VoteUpdateValidatorIdentityInstructionData: {
910
+ VoteUpdateValidatorIdentityInstruction: {
916
911
  newValidatorIdentity: (parent: {
917
912
  [x: string]: import("@solana/addresses").Address;
918
913
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -923,7 +918,7 @@ export declare const instructionResolvers: {
923
918
  [x: string]: import("@solana/addresses").Address;
924
919
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
925
920
  };
926
- VoteUpdateCommissionInstructionData: {
921
+ VoteUpdateCommissionInstruction: {
927
922
  voteAccount: (parent: {
928
923
  [x: string]: import("@solana/addresses").Address;
929
924
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -931,7 +926,7 @@ export declare const instructionResolvers: {
931
926
  [x: string]: import("@solana/addresses").Address;
932
927
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
933
928
  };
934
- VoteVoteSwitchInstructionData: {
929
+ VoteVoteSwitchInstruction: {
935
930
  voteAccount: (parent: {
936
931
  [x: string]: import("@solana/addresses").Address;
937
932
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
@@ -939,7 +934,7 @@ export declare const instructionResolvers: {
939
934
  [x: string]: import("@solana/addresses").Address;
940
935
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
941
936
  };
942
- VoteAuthorizeCheckedInstructionData: {
937
+ VoteAuthorizeCheckedInstruction: {
943
938
  authority: (parent: {
944
939
  [x: string]: import("@solana/addresses").Address;
945
940
  }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;