@solana/rpc-graphql 2.0.0-experimental.f46b34c → 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 (52) hide show
  1. package/dist/index.browser.cjs +814 -1200
  2. package/dist/index.browser.cjs.map +1 -1
  3. package/dist/index.browser.js +809 -1200
  4. package/dist/index.browser.js.map +1 -1
  5. package/dist/index.native.js +809 -1196
  6. package/dist/index.native.js.map +1 -1
  7. package/dist/index.node.cjs +814 -1196
  8. package/dist/index.node.cjs.map +1 -1
  9. package/dist/index.node.js +809 -1196
  10. package/dist/index.node.js.map +1 -1
  11. package/dist/types/context.d.ts +17 -15
  12. package/dist/types/context.d.ts.map +1 -1
  13. package/dist/types/index.d.ts +1 -1
  14. package/dist/types/loaders/account.d.ts +4 -11
  15. package/dist/types/loaders/account.d.ts.map +1 -1
  16. package/dist/types/loaders/block.d.ts +5 -4
  17. package/dist/types/loaders/block.d.ts.map +1 -1
  18. package/dist/types/loaders/common/resolve-info.d.ts +3 -0
  19. package/dist/types/loaders/common/resolve-info.d.ts.map +1 -0
  20. package/dist/types/loaders/program-accounts.d.ts +7 -4
  21. package/dist/types/loaders/program-accounts.d.ts.map +1 -1
  22. package/dist/types/loaders/transaction.d.ts +4 -13
  23. package/dist/types/loaders/transaction.d.ts.map +1 -1
  24. package/dist/types/loaders/transformers/account.d.ts +8 -0
  25. package/dist/types/loaders/transformers/account.d.ts.map +1 -0
  26. package/dist/types/loaders/transformers/block.d.ts +6 -0
  27. package/dist/types/loaders/transformers/block.d.ts.map +1 -0
  28. package/dist/types/loaders/transformers/transaction.d.ts +5 -0
  29. package/dist/types/loaders/transformers/transaction.d.ts.map +1 -0
  30. package/dist/types/resolvers/account.d.ts +3 -3
  31. package/dist/types/resolvers/account.d.ts.map +1 -1
  32. package/dist/types/rpc.d.ts +3 -6
  33. package/dist/types/rpc.d.ts.map +1 -1
  34. package/dist/types/schema/account.d.ts +40 -52
  35. package/dist/types/schema/account.d.ts.map +1 -1
  36. package/dist/types/schema/block.d.ts +2 -2
  37. package/dist/types/schema/block.d.ts.map +1 -1
  38. package/dist/types/schema/common/inputs.d.ts +2 -9
  39. package/dist/types/schema/common/inputs.d.ts.map +1 -1
  40. package/dist/types/schema/common/scalars.d.ts +33 -1
  41. package/dist/types/schema/common/scalars.d.ts.map +1 -1
  42. package/dist/types/schema/common/types.d.ts +18 -3
  43. package/dist/types/schema/common/types.d.ts.map +1 -1
  44. package/dist/types/schema/instruction.d.ts +342 -347
  45. package/dist/types/schema/instruction.d.ts.map +1 -1
  46. package/dist/types/schema/program-accounts.d.ts +1 -1
  47. package/dist/types/schema/program-accounts.d.ts.map +1 -1
  48. package/dist/types/schema/transaction.d.ts +1 -1
  49. package/dist/types/schema/transaction.d.ts.map +1 -1
  50. package/package.json +14 -12
  51. package/dist/types/cache.d.ts +0 -7
  52. package/dist/types/cache.d.ts.map +0 -1
@@ -1,954 +1,949 @@
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: String\n }\n\n # Generic transaction instruction\n type GenericInstruction implements TransactionInstruction {\n accounts: [String]\n data: String\n programId: String\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: String\n }\n\n # AddressLookupTable: ExtendLookupTable\n type ExtendLookupTableInstructionData {\n lookupTableAccount: Account\n lookupTableAuthority: Account\n newAddresses: [String]\n payerAccount: Account\n systemProgram: Account\n }\n type ExtendLookupTableInstruction implements TransactionInstruction {\n data: ExtendLookupTableInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\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: String\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: String\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: String\n }\n\n # BpfLoader: Write\n type BpfLoaderWriteInstructionData {\n account: Account\n bytes: String\n offset: BigInt # FIXME:*\n }\n type BpfLoaderWriteInstruction implements TransactionInstruction {\n data: BpfLoaderWriteInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\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: String\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: String\n }\n\n # BpfUpgradeableLoader: Write\n type BpfUpgradeableLoaderWriteInstructionData {\n account: Account\n authority: Account\n bytes: String\n offset: BigInt # FIXME:*\n }\n type BpfUpgradeableLoaderWriteInstruction implements TransactionInstruction {\n data: BpfUpgradeableLoaderWriteInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\n }\n\n # BpfUpgradeableLoader: DeployWithMaxDataLen\n type BpfUpgradeableLoaderDeployWithMaxDataLenInstructionData {\n authority: Account\n bufferAccount: Account\n clockSysvar: String\n maxDataLen: BigInt\n payerAccount: Account\n programAccount: Account\n programDataAccount: Account\n rentSysvar: String\n }\n type BpfUpgradeableLoaderDeployWithMaxDataLenInstruction implements TransactionInstruction {\n data: BpfUpgradeableLoaderDeployWithMaxDataLenInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\n }\n\n # BpfUpgradeableLoader: Upgrade\n type BpfUpgradeableLoaderUpgradeInstructionData {\n authority: Account\n bufferAccount: Account\n clockSysvar: String\n programAccount: Account\n programDataAccount: Account\n rentSysvar: String\n spillAccount: Account\n }\n type BpfUpgradeableLoaderUpgradeInstruction implements TransactionInstruction {\n data: BpfUpgradeableLoaderUpgradeInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\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: String\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: String\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: String\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: String\n }\n\n # SplAssociatedTokenAccount: Create\n type SplAssociatedTokenCreateInstructionData {\n account: Account\n mint: String\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: String\n }\n\n # SplAssociatedTokenAccount: CreateIdempotent\n type SplAssociatedTokenCreateIdempotentInstructionData {\n account: Account\n mint: String\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: String\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: String\n }\n\n # SplMemo\n type SplMemoInstructionData {\n data: String\n }\n type SplMemoInstruction implements TransactionInstruction {\n data: SplMemoInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\n }\n\n # SplToken: InitializeMint\n type SplTokenInitializeMintInstructionData {\n decimals: BigInt # FIXME:*\n freezeAuthority: Account\n mint: Account\n mintAuthority: Account\n rentSysvar: String\n }\n type SplTokenInitializeMintInstruction implements TransactionInstruction {\n data: SplTokenInitializeMintInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\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: String\n }\n\n # SplToken: InitializeAccount\n type SplTokenInitializeAccountInstructionData {\n account: Account\n mint: Account\n owner: Account\n rentSysvar: String\n }\n type SplTokenInitializeAccountInstruction implements TransactionInstruction {\n data: SplTokenInitializeAccountInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\n }\n\n # SplToken: InitializeAccount2\n type SplTokenInitializeAccount2InstructionData {\n account: Account\n mint: Account\n owner: Account\n rentSysvar: String\n }\n type SplTokenInitializeAccount2Instruction implements TransactionInstruction {\n data: SplTokenInitializeAccount2InstructionData\n meta: JsonParsedInstructionMeta\n programId: String\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: String\n }\n\n # SplToken: InitializeMultisig\n type SplTokenInitializeMultisigInstructionData {\n m: BigInt # FIXME:*\n multisig: Account\n rentSysvar: String\n signers: [String]\n }\n type SplTokenInitializeMultisigInstruction implements TransactionInstruction {\n data: SplTokenInitializeMultisigInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\n }\n\n # SplToken: InitializeMultisig2\n type SplTokenInitializeMultisig2InstructionData {\n m: BigInt # FIXME:*\n multisig: Account\n signers: [String]\n }\n type SplTokenInitializeMultisig2Instruction implements TransactionInstruction {\n data: SplTokenInitializeMultisig2InstructionData\n meta: JsonParsedInstructionMeta\n programId: String\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: String\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: String\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: String\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: String\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: String\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: String\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: String\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: String\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: String\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: String\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: String\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: String\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: String\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: String\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: String\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: String\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: String\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: String\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: String\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: String\n stakeAccount: Account\n }\n type StakeInitializeInstruction implements TransactionInstruction {\n data: StakeInitializeInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\n }\n\n # Stake: Authorize\n type StakeAuthorizeInstructionData {\n authority: Account\n authorityType: String\n clockSysvar: String\n custodian: Account\n newAuthority: Account\n stakeAccount: Account\n }\n type StakeAuthorizeInstruction implements TransactionInstruction {\n data: StakeAuthorizeInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\n }\n\n # Stake: DelegateStake\n type StakeDelegateStakeInstructionData {\n clockSysvar: String\n stakeAccount: Account\n stakeAuthority: Account\n stakeConfigAccount: Account\n stakeHistorySysvar: String\n voteAccount: Account\n }\n type StakeDelegateStakeInstruction implements TransactionInstruction {\n data: StakeDelegateStakeInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\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: String\n }\n\n # Stake: Withdraw\n type StakeWithdrawInstructionData {\n clockSysvar: String\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: String\n }\n\n # Stake: Deactivate\n type StakeDeactivateInstructionData {\n clockSysvar: String\n stakeAccount: Account\n stakeAuthority: Account\n }\n type StakeDeactivateInstruction implements TransactionInstruction {\n data: StakeDeactivateInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\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: String\n }\n\n # Stake: Merge\n type StakeMergeInstructionData {\n clockSysvar: String\n destination: Account\n source: Account\n stakeAuthority: Account\n stakeHistorySysvar: String\n }\n type StakeMergeInstruction implements TransactionInstruction {\n data: StakeMergeInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\n }\n\n # Stake: AuthorizeWithSeed\n type StakeAuthorizeWithSeedInstructionData {\n authorityBase: Account\n authorityOwner: Account\n authoritySeed: String\n authorityType: String\n clockSysvar: String\n custodian: Account\n newAuthorized: Account\n stakeAccount: Account\n }\n type StakeAuthorizeWithSeedInstruction implements TransactionInstruction {\n data: StakeAuthorizeWithSeedInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\n }\n\n # Stake: InitializeChecked\n type StakeInitializeCheckedInstructionDataAuthorized {\n rentSysvar: String\n stakeAccount: Account\n staker: Account\n withdrawer: Account\n }\n type StakeInitializeCheckedInstruction implements TransactionInstruction {\n data: StakeInitializeCheckedInstructionDataAuthorized\n meta: JsonParsedInstructionMeta\n programId: String\n }\n\n # Stake: AuthorizeChecked\n type StakeAuthorizeCheckedInstructionData {\n authority: Account\n authorityType: String\n clockSysvar: String\n custodian: Account\n newAuthority: Account\n stakeAccount: Account\n }\n type StakeAuthorizeCheckedInstruction implements TransactionInstruction {\n data: StakeAuthorizeCheckedInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\n }\n\n # Stake: AuthorizeCheckedWithSeed\n type StakeAuthorizeCheckedWithSeedInstructionData {\n authorityBase: Account\n authorityOwner: Account\n authoritySeed: String\n authorityType: String\n clockSysvar: String\n custodian: Account\n newAuthorized: Account\n stakeAccount: Account\n }\n type StakeAuthorizeCheckedWithSeedInstruction implements TransactionInstruction {\n data: StakeAuthorizeCheckedWithSeedInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\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: String\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: String\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: String\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: String\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: String\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: String\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: String\n }\n\n # System: AdvanceNonceAccount\n type AdvanceNonceAccountInstructionData {\n nonceAccount: Account\n nonceAuthority: Account\n recentBlockhashesSysvar: String\n }\n type AdvanceNonceAccountInstruction implements TransactionInstruction {\n data: AdvanceNonceAccountInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\n }\n\n # System: WithdrawNonceAccount\n type WithdrawNonceAccountInstructionData {\n destination: Account\n lamports: BigInt\n nonceAccount: Account\n nonceAuthority: Account\n recentBlockhashesSysvar: String\n rentSysvar: String\n }\n type WithdrawNonceAccountInstruction implements TransactionInstruction {\n data: WithdrawNonceAccountInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\n }\n\n # System: InitializeNonceAccount\n type InitializeNonceAccountInstructionData {\n nonceAccount: Account\n nonceAuthority: Account\n recentBlockhashesSysvar: String\n rentSysvar: String\n }\n type InitializeNonceAccountInstruction implements TransactionInstruction {\n data: InitializeNonceAccountInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\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: String\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: String\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: String\n }\n\n # System: AllocateWithSeed\n type AllocateWithSeedInstructionData {\n account: Account\n base: String\n owner: Account\n seed: String\n space: BigInt\n }\n type AllocateWithSeedInstruction implements TransactionInstruction {\n data: AllocateWithSeedInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\n }\n\n # System: AssignWithSeed\n type AssignWithSeedInstructionData {\n account: Account\n base: String\n owner: Account\n seed: String\n }\n type AssignWithSeedInstruction implements TransactionInstruction {\n data: AssignWithSeedInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\n }\n\n # System: TransferWithSeed\n type TransferWithSeedInstructionData {\n destination: Account\n lamports: BigInt\n source: Account\n sourceBase: String\n sourceOwner: Account\n sourceSeed: String\n }\n type TransferWithSeedInstruction implements TransactionInstruction {\n data: TransferWithSeedInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\n }\n\n # Vote: InitializeAccount\n type VoteInitializeAccountInstructionData {\n authorizedVoter: Account\n authorizedWithdrawer: Account\n clockSysvar: String\n commission: BigInt # FIXME:*\n node: Account\n rentSysvar: String\n voteAccount: Account\n }\n type VoteInitializeAccountInstruction implements TransactionInstruction {\n data: VoteInitializeAccountInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\n }\n\n # Vote: Authorize\n type VoteAuthorizeInstructionData {\n authority: Account\n authorityType: String\n clockSysvar: String\n newAuthority: Account\n voteAccount: Account\n }\n type VoteAuthorizeInstruction implements TransactionInstruction {\n data: VoteAuthorizeInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\n }\n\n # Vote: AuthorizeWithSeed\n type VoteAuthorizeWithSeedInstructionData {\n authorityBaseKey: String\n authorityOwner: Account\n authoritySeed: String\n authorityType: String\n clockSysvar: String\n newAuthority: Account\n voteAccount: Account\n }\n type VoteAuthorizeWithSeedInstruction implements TransactionInstruction {\n data: VoteAuthorizeWithSeedInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\n }\n\n # Vote: AuthorizeCheckedWithSeed\n type VoteAuthorizeCheckedWithSeedInstructionData {\n authorityBaseKey: String\n authorityOwner: Account\n authoritySeed: String\n authorityType: String\n clockSysvar: String\n newAuthority: Account\n voteAccount: Account\n }\n type VoteAuthorizeCheckedWithSeedInstruction implements TransactionInstruction {\n data: VoteAuthorizeCheckedWithSeedInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\n }\n\n type Vote {\n hash: String\n slots: [BigInt]\n timestamp: BigInt\n }\n\n # Vote: Vote\n type VoteVoteInstructionData {\n clockSysvar: String\n slotHashesSysvar: String\n vote: Vote\n voteAccount: Account\n voteAuthority: Account\n }\n type VoteVoteInstruction implements TransactionInstruction {\n data: VoteVoteInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\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: String\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: String\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: String\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: String\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: String\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: String\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: String\n }\n\n # Vote: VoteSwitch\n type VoteVoteSwitchInstructionData {\n clockSysvar: String\n hash: String\n slotHashesSysvar: String\n vote: Vote\n voteAccount: Account\n voteAuthority: Account\n }\n type VoteVoteSwitchInstruction implements TransactionInstruction {\n data: VoteVoteSwitchInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\n }\n\n # Vote: AuthorizeChecked\n type VoteAuthorizeCheckedInstructionData {\n authority: Account\n authorityType: String\n clockSysvar: String\n newAuthority: Account\n voteAccount: Account\n }\n type VoteAuthorizeCheckedInstruction implements TransactionInstruction {\n data: VoteAuthorizeCheckedInstructionData\n meta: JsonParsedInstructionMeta\n programId: String\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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
12
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
15
13
  lookupTableAuthority: (parent: {
16
14
  [x: string]: import("@solana/addresses").Address;
17
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
15
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
18
16
  payerAccount: (parent: {
19
17
  [x: string]: import("@solana/addresses").Address;
20
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
18
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
21
19
  systemProgram: (parent: {
22
20
  [x: string]: import("@solana/addresses").Address;
23
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
26
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
29
27
  lookupTableAuthority: (parent: {
30
28
  [x: string]: import("@solana/addresses").Address;
31
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
29
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
32
30
  payerAccount: (parent: {
33
31
  [x: string]: import("@solana/addresses").Address;
34
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
32
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
35
33
  systemProgram: (parent: {
36
34
  [x: string]: import("@solana/addresses").Address;
37
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
40
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
43
41
  lookupTableAuthority: (parent: {
44
42
  [x: string]: import("@solana/addresses").Address;
45
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
48
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
51
49
  lookupTableAuthority: (parent: {
52
50
  [x: string]: import("@solana/addresses").Address;
53
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
56
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
59
57
  lookupTableAuthority: (parent: {
60
58
  [x: string]: import("@solana/addresses").Address;
61
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
59
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
62
60
  recipient: (parent: {
63
61
  [x: string]: import("@solana/addresses").Address;
64
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
82
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
85
83
  authority: (parent: {
86
84
  [x: string]: import("@solana/addresses").Address;
87
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
90
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
93
91
  bufferAccount: (parent: {
94
92
  [x: string]: import("@solana/addresses").Address;
95
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
93
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
96
94
  payerAccount: (parent: {
97
95
  [x: string]: import("@solana/addresses").Address;
98
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
96
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
99
97
  programAccount: (parent: {
100
98
  [x: string]: import("@solana/addresses").Address;
101
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
99
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
102
100
  programDataAccount: (parent: {
103
101
  [x: string]: import("@solana/addresses").Address;
104
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
107
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
110
108
  bufferAccount: (parent: {
111
109
  [x: string]: import("@solana/addresses").Address;
112
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
110
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
113
111
  programAccount: (parent: {
114
112
  [x: string]: import("@solana/addresses").Address;
115
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
113
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
116
114
  programDataAccount: (parent: {
117
115
  [x: string]: import("@solana/addresses").Address;
118
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
121
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
124
122
  authority: (parent: {
125
123
  [x: string]: import("@solana/addresses").Address;
126
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
124
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
127
125
  newAuthority: (parent: {
128
126
  [x: string]: import("@solana/addresses").Address;
129
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
132
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
135
133
  authority: (parent: {
136
134
  [x: string]: import("@solana/addresses").Address;
137
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
135
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
138
136
  newAuthority: (parent: {
139
137
  [x: string]: import("@solana/addresses").Address;
140
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
143
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
146
144
  authority: (parent: {
147
145
  [x: string]: import("@solana/addresses").Address;
148
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
146
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
149
147
  programAccount: (parent: {
150
148
  [x: string]: import("@solana/addresses").Address;
151
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
149
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
152
150
  recipient: (parent: {
153
151
  [x: string]: import("@solana/addresses").Address;
154
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
157
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
160
158
  programAccount: (parent: {
161
159
  [x: string]: import("@solana/addresses").Address;
162
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
160
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
163
161
  programDataAccount: (parent: {
164
162
  [x: string]: import("@solana/addresses").Address;
165
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
163
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
166
164
  systemProgram: (parent: {
167
165
  [x: string]: import("@solana/addresses").Address;
168
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
171
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
174
172
  mint: (parent: {
175
173
  [x: string]: import("@solana/addresses").Address;
176
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
174
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
177
175
  source: (parent: {
178
176
  [x: string]: import("@solana/addresses").Address;
179
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
177
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
180
178
  systemProgram: (parent: {
181
179
  [x: string]: import("@solana/addresses").Address;
182
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
180
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
183
181
  tokenProgram: (parent: {
184
182
  [x: string]: import("@solana/addresses").Address;
185
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
183
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
186
184
  wallet: (parent: {
187
185
  [x: string]: import("@solana/addresses").Address;
188
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
191
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
194
192
  mint: (parent: {
195
193
  [x: string]: import("@solana/addresses").Address;
196
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
194
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
197
195
  source: (parent: {
198
196
  [x: string]: import("@solana/addresses").Address;
199
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
197
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
200
198
  systemProgram: (parent: {
201
199
  [x: string]: import("@solana/addresses").Address;
202
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
200
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
203
201
  tokenProgram: (parent: {
204
202
  [x: string]: import("@solana/addresses").Address;
205
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
203
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
206
204
  wallet: (parent: {
207
205
  [x: string]: import("@solana/addresses").Address;
208
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
211
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
214
212
  nestedMint: (parent: {
215
213
  [x: string]: import("@solana/addresses").Address;
216
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
214
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
217
215
  nestedOwner: (parent: {
218
216
  [x: string]: import("@solana/addresses").Address;
219
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
217
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
220
218
  nestedSource: (parent: {
221
219
  [x: string]: import("@solana/addresses").Address;
222
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
220
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
223
221
  ownerMint: (parent: {
224
222
  [x: string]: import("@solana/addresses").Address;
225
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
223
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
226
224
  tokenProgram: (parent: {
227
225
  [x: string]: import("@solana/addresses").Address;
228
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
226
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
229
227
  wallet: (parent: {
230
228
  [x: string]: import("@solana/addresses").Address;
231
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
234
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
237
235
  mint: (parent: {
238
236
  [x: string]: import("@solana/addresses").Address;
239
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
237
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
240
238
  mintAuthority: (parent: {
241
239
  [x: string]: import("@solana/addresses").Address;
242
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
245
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
248
246
  mint: (parent: {
249
247
  [x: string]: import("@solana/addresses").Address;
250
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
248
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
251
249
  mintAuthority: (parent: {
252
250
  [x: string]: import("@solana/addresses").Address;
253
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
256
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
259
257
  mint: (parent: {
260
258
  [x: string]: import("@solana/addresses").Address;
261
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
259
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
262
260
  owner: (parent: {
263
261
  [x: string]: import("@solana/addresses").Address;
264
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
267
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
270
268
  mint: (parent: {
271
269
  [x: string]: import("@solana/addresses").Address;
272
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
270
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
273
271
  owner: (parent: {
274
272
  [x: string]: import("@solana/addresses").Address;
275
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
278
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
281
279
  mint: (parent: {
282
280
  [x: string]: import("@solana/addresses").Address;
283
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
281
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
284
282
  owner: (parent: {
285
283
  [x: string]: import("@solana/addresses").Address;
286
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
299
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
302
300
  destination: (parent: {
303
301
  [x: string]: import("@solana/addresses").Address;
304
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
302
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
305
303
  multisigAuthority: (parent: {
306
304
  [x: string]: import("@solana/addresses").Address;
307
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
305
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
308
306
  source: (parent: {
309
307
  [x: string]: import("@solana/addresses").Address;
310
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
313
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
316
314
  multisigOwner: (parent: {
317
315
  [x: string]: import("@solana/addresses").Address;
318
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
316
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
319
317
  owner: (parent: {
320
318
  [x: string]: import("@solana/addresses").Address;
321
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
319
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
322
320
  source: (parent: {
323
321
  [x: string]: import("@solana/addresses").Address;
324
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
327
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
330
328
  owner: (parent: {
331
329
  [x: string]: import("@solana/addresses").Address;
332
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
330
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
333
331
  source: (parent: {
334
332
  [x: string]: import("@solana/addresses").Address;
335
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
338
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
341
339
  multisigAuthority: (parent: {
342
340
  [x: string]: import("@solana/addresses").Address;
343
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
341
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
344
342
  newAuthority: (parent: {
345
343
  [x: string]: import("@solana/addresses").Address;
346
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
349
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
352
350
  authority: (parent: {
353
351
  [x: string]: import("@solana/addresses").Address;
354
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
352
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
355
353
  mint: (parent: {
356
354
  [x: string]: import("@solana/addresses").Address;
357
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
355
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
358
356
  mintAuthority: (parent: {
359
357
  [x: string]: import("@solana/addresses").Address;
360
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
358
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
361
359
  multisigMintAuthority: (parent: {
362
360
  [x: string]: import("@solana/addresses").Address;
363
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
366
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
369
367
  authority: (parent: {
370
368
  [x: string]: import("@solana/addresses").Address;
371
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
369
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
372
370
  mint: (parent: {
373
371
  [x: string]: import("@solana/addresses").Address;
374
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
372
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
375
373
  multisigAuthority: (parent: {
376
374
  [x: string]: import("@solana/addresses").Address;
377
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
380
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
383
381
  destination: (parent: {
384
382
  [x: string]: import("@solana/addresses").Address;
385
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
383
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
386
384
  multisigOwner: (parent: {
387
385
  [x: string]: import("@solana/addresses").Address;
388
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
386
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
389
387
  owner: (parent: {
390
388
  [x: string]: import("@solana/addresses").Address;
391
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
394
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
397
395
  freezeAuthority: (parent: {
398
396
  [x: string]: import("@solana/addresses").Address;
399
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
397
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
400
398
  mint: (parent: {
401
399
  [x: string]: import("@solana/addresses").Address;
402
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
400
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
403
401
  multisigFreezeAuthority: (parent: {
404
402
  [x: string]: import("@solana/addresses").Address;
405
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
408
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
411
409
  freezeAuthority: (parent: {
412
410
  [x: string]: import("@solana/addresses").Address;
413
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
411
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
414
412
  mint: (parent: {
415
413
  [x: string]: import("@solana/addresses").Address;
416
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
414
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
417
415
  multisigFreezeAuthority: (parent: {
418
416
  [x: string]: import("@solana/addresses").Address;
419
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
422
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
425
423
  destination: (parent: {
426
424
  [x: string]: import("@solana/addresses").Address;
427
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
425
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
428
426
  mint: (parent: {
429
427
  [x: string]: import("@solana/addresses").Address;
430
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
428
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
431
429
  multisigAuthority: (parent: {
432
430
  [x: string]: import("@solana/addresses").Address;
433
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
431
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
434
432
  source: (parent: {
435
433
  [x: string]: import("@solana/addresses").Address;
436
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
439
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
442
440
  mint: (parent: {
443
441
  [x: string]: import("@solana/addresses").Address;
444
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
442
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
445
443
  multisigOwner: (parent: {
446
444
  [x: string]: import("@solana/addresses").Address;
447
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
445
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
448
446
  owner: (parent: {
449
447
  [x: string]: import("@solana/addresses").Address;
450
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
448
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
451
449
  source: (parent: {
452
450
  [x: string]: import("@solana/addresses").Address;
453
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
456
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
459
457
  authority: (parent: {
460
458
  [x: string]: import("@solana/addresses").Address;
461
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
459
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
462
460
  mint: (parent: {
463
461
  [x: string]: import("@solana/addresses").Address;
464
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
462
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
465
463
  mintAuthority: (parent: {
466
464
  [x: string]: import("@solana/addresses").Address;
467
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
465
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
468
466
  multisigMintAuthority: (parent: {
469
467
  [x: string]: import("@solana/addresses").Address;
470
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
473
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
476
474
  authority: (parent: {
477
475
  [x: string]: import("@solana/addresses").Address;
478
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
476
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
479
477
  mint: (parent: {
480
478
  [x: string]: import("@solana/addresses").Address;
481
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
479
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
482
480
  multisigAuthority: (parent: {
483
481
  [x: string]: import("@solana/addresses").Address;
484
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
507
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
510
508
  newAuthority: (parent: {
511
509
  [x: string]: import("@solana/addresses").Address;
512
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
510
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
513
511
  };
514
512
  Lockup: {
515
513
  custodian: (parent: {
516
514
  [x: string]: import("@solana/addresses").Address;
517
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
515
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
518
516
  };
519
517
  StakeInitializeInstructionDataAuthorized: {
520
518
  staker: (parent: {
521
519
  [x: string]: import("@solana/addresses").Address;
522
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
520
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
523
521
  withdrawer: (parent: {
524
522
  [x: string]: import("@solana/addresses").Address;
525
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
533
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
536
534
  custodian: (parent: {
537
535
  [x: string]: import("@solana/addresses").Address;
538
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
536
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
539
537
  newAuthority: (parent: {
540
538
  [x: string]: import("@solana/addresses").Address;
541
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
539
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
542
540
  stakeAccount: (parent: {
543
541
  [x: string]: import("@solana/addresses").Address;
544
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
547
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
550
548
  stakeAuthority: (parent: {
551
549
  [x: string]: import("@solana/addresses").Address;
552
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
550
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
553
551
  stakeConfigAccount: (parent: {
554
552
  [x: string]: import("@solana/addresses").Address;
555
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
553
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
556
554
  voteAccount: (parent: {
557
555
  [x: string]: import("@solana/addresses").Address;
558
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
561
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
564
562
  stakeAccount: (parent: {
565
563
  [x: string]: import("@solana/addresses").Address;
566
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
564
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
567
565
  stakeAuthority: (parent: {
568
566
  [x: string]: import("@solana/addresses").Address;
569
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
572
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
575
573
  stakeAccount: (parent: {
576
574
  [x: string]: import("@solana/addresses").Address;
577
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
575
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
578
576
  withdrawAuthority: (parent: {
579
577
  [x: string]: import("@solana/addresses").Address;
580
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
583
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
586
584
  stakeAuthority: (parent: {
587
585
  [x: string]: import("@solana/addresses").Address;
588
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
591
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
594
592
  stakeAccount: (parent: {
595
593
  [x: string]: import("@solana/addresses").Address;
596
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
599
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
602
600
  source: (parent: {
603
601
  [x: string]: import("@solana/addresses").Address;
604
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
602
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
605
603
  stakeAuthority: (parent: {
606
604
  [x: string]: import("@solana/addresses").Address;
607
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
610
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
613
611
  authorityOwner: (parent: {
614
612
  [x: string]: import("@solana/addresses").Address;
615
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
613
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
616
614
  custodian: (parent: {
617
615
  [x: string]: import("@solana/addresses").Address;
618
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
616
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
619
617
  newAuthorized: (parent: {
620
618
  [x: string]: import("@solana/addresses").Address;
621
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
619
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
622
620
  stakeAccount: (parent: {
623
621
  [x: string]: import("@solana/addresses").Address;
624
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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<any> | null;
630
625
  staker: (parent: {
631
626
  [x: string]: import("@solana/addresses").Address;
632
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
627
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
633
628
  withdrawer: (parent: {
634
629
  [x: string]: import("@solana/addresses").Address;
635
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
635
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
641
636
  custodian: (parent: {
642
637
  [x: string]: import("@solana/addresses").Address;
643
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
638
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
644
639
  newAuthority: (parent: {
645
640
  [x: string]: import("@solana/addresses").Address;
646
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
641
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
647
642
  stakeAccount: (parent: {
648
643
  [x: string]: import("@solana/addresses").Address;
649
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
649
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
655
650
  authorityOwner: (parent: {
656
651
  [x: string]: import("@solana/addresses").Address;
657
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
652
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
658
653
  custodian: (parent: {
659
654
  [x: string]: import("@solana/addresses").Address;
660
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
655
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
661
656
  newAuthorized: (parent: {
662
657
  [x: string]: import("@solana/addresses").Address;
663
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
658
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
664
659
  stakeAccount: (parent: {
665
660
  [x: string]: import("@solana/addresses").Address;
666
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
666
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
672
667
  stakeAccount: (parent: {
673
668
  [x: string]: import("@solana/addresses").Address;
674
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
674
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
680
675
  stakeAccount: (parent: {
681
676
  [x: string]: import("@solana/addresses").Address;
682
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
677
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
683
678
  voteAccount: (parent: {
684
679
  [x: string]: import("@solana/addresses").Address;
685
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
685
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
691
686
  stakeAccount: (parent: {
692
687
  [x: string]: import("@solana/addresses").Address;
693
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
688
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
694
689
  stakeAuthority: (parent: {
695
690
  [x: string]: import("@solana/addresses").Address;
696
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
691
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
697
692
  stakeConfigAccount: (parent: {
698
693
  [x: string]: import("@solana/addresses").Address;
699
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
694
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
700
695
  voteAccount: (parent: {
701
696
  [x: string]: import("@solana/addresses").Address;
702
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
702
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
708
703
  owner: (parent: {
709
704
  [x: string]: import("@solana/addresses").Address;
710
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
705
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
711
706
  source: (parent: {
712
707
  [x: string]: import("@solana/addresses").Address;
713
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
713
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
719
714
  owner: (parent: {
720
715
  [x: string]: import("@solana/addresses").Address;
721
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
721
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
727
722
  source: (parent: {
728
723
  [x: string]: import("@solana/addresses").Address;
729
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
729
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
735
730
  owner: (parent: {
736
731
  [x: string]: import("@solana/addresses").Address;
737
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
732
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
738
733
  seed: (parent: {
739
734
  [x: string]: import("@solana/addresses").Address;
740
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
740
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
746
741
  nonceAuthority: (parent: {
747
742
  [x: string]: import("@solana/addresses").Address;
748
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
748
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
754
749
  nonceAccount: (parent: {
755
750
  [x: string]: import("@solana/addresses").Address;
756
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
751
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
757
752
  nonceAuthority: (parent: {
758
753
  [x: string]: import("@solana/addresses").Address;
759
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
759
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
765
760
  nonceAuthority: (parent: {
766
761
  [x: string]: import("@solana/addresses").Address;
767
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
767
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
773
768
  nonceAccount: (parent: {
774
769
  [x: string]: import("@solana/addresses").Address;
775
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
770
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
776
771
  nonceAuthority: (parent: {
777
772
  [x: string]: import("@solana/addresses").Address;
778
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
778
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
784
779
  nonceAuthority: (parent: {
785
780
  [x: string]: import("@solana/addresses").Address;
786
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
791
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
797
792
  owner: (parent: {
798
793
  [x: string]: import("@solana/addresses").Address;
799
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
799
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
805
800
  owner: (parent: {
806
801
  [x: string]: import("@solana/addresses").Address;
807
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
807
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
813
808
  source: (parent: {
814
809
  [x: string]: import("@solana/addresses").Address;
815
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
810
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
816
811
  sourceOwner: (parent: {
817
812
  [x: string]: import("@solana/addresses").Address;
818
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
818
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
824
819
  authorizedWithdrawer: (parent: {
825
820
  [x: string]: import("@solana/addresses").Address;
826
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
821
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
827
822
  node: (parent: {
828
823
  [x: string]: import("@solana/addresses").Address;
829
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
824
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
830
825
  voteAccount: (parent: {
831
826
  [x: string]: import("@solana/addresses").Address;
832
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
832
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
838
833
  newAuthority: (parent: {
839
834
  [x: string]: import("@solana/addresses").Address;
840
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
835
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
841
836
  voteAccount: (parent: {
842
837
  [x: string]: import("@solana/addresses").Address;
843
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
843
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
849
844
  newAuthority: (parent: {
850
845
  [x: string]: import("@solana/addresses").Address;
851
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
846
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
852
847
  voteAccount: (parent: {
853
848
  [x: string]: import("@solana/addresses").Address;
854
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
854
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
860
855
  newAuthority: (parent: {
861
856
  [x: string]: import("@solana/addresses").Address;
862
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
857
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
863
858
  voteAccount: (parent: {
864
859
  [x: string]: import("@solana/addresses").Address;
865
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
865
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
871
866
  voteAuthority: (parent: {
872
867
  [x: string]: import("@solana/addresses").Address;
873
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
873
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
879
874
  voteAuthority: (parent: {
880
875
  [x: string]: import("@solana/addresses").Address;
881
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
881
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
887
882
  voteAuthority: (parent: {
888
883
  [x: string]: import("@solana/addresses").Address;
889
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
889
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
895
890
  voteAuthority: (parent: {
896
891
  [x: string]: import("@solana/addresses").Address;
897
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
897
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
903
898
  voteAuthority: (parent: {
904
899
  [x: string]: import("@solana/addresses").Address;
905
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
905
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
911
906
  withdrawAuthority: (parent: {
912
907
  [x: string]: import("@solana/addresses").Address;
913
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
913
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
919
914
  voteAccount: (parent: {
920
915
  [x: string]: import("@solana/addresses").Address;
921
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
916
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
922
917
  withdrawAuthority: (parent: {
923
918
  [x: string]: import("@solana/addresses").Address;
924
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
924
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
930
925
  withdrawAuthority: (parent: {
931
926
  [x: string]: import("@solana/addresses").Address;
932
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
932
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
938
933
  voteAuthority: (parent: {
939
934
  [x: string]: import("@solana/addresses").Address;
940
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
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
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
940
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
946
941
  newAuthority: (parent: {
947
942
  [x: string]: import("@solana/addresses").Address;
948
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
943
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
949
944
  voteAccount: (parent: {
950
945
  [x: string]: import("@solana/addresses").Address;
951
- }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
946
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
952
947
  };
953
948
  };
954
949
  //# sourceMappingURL=instruction.d.ts.map