@solana/rpc-graphql 2.0.0-experimental.eb5fd16 → 2.0.0-experimental.f46b34c

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 (47) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +1088 -30
  3. package/dist/index.browser.cjs +2964 -10
  4. package/dist/index.browser.cjs.map +1 -1
  5. package/dist/index.browser.js +2965 -11
  6. package/dist/index.browser.js.map +1 -1
  7. package/dist/index.native.js +2965 -11
  8. package/dist/index.native.js.map +1 -1
  9. package/dist/index.node.cjs +2964 -10
  10. package/dist/index.node.cjs.map +1 -1
  11. package/dist/index.node.js +2965 -11
  12. package/dist/index.node.js.map +1 -1
  13. package/dist/types/cache.d.ts.map +1 -0
  14. package/dist/types/context.d.ts +17 -4
  15. package/dist/types/context.d.ts.map +1 -0
  16. package/dist/types/index.d.ts.map +1 -0
  17. package/dist/types/loaders/account.d.ts +14 -0
  18. package/dist/types/loaders/account.d.ts.map +1 -0
  19. package/dist/types/loaders/block.d.ts +6 -0
  20. package/dist/types/loaders/block.d.ts.map +1 -0
  21. package/dist/types/loaders/program-accounts.d.ts +6 -0
  22. package/dist/types/loaders/program-accounts.d.ts.map +1 -0
  23. package/dist/types/loaders/transaction.d.ts +16 -0
  24. package/dist/types/loaders/transaction.d.ts.map +1 -0
  25. package/dist/types/resolvers/account.d.ts +8 -0
  26. package/dist/types/resolvers/account.d.ts.map +1 -0
  27. package/dist/types/rpc.d.ts +7 -2
  28. package/dist/types/rpc.d.ts.map +1 -0
  29. package/dist/types/schema/account.d.ts +124 -0
  30. package/dist/types/schema/account.d.ts.map +1 -0
  31. package/dist/types/schema/block.d.ts +17 -0
  32. package/dist/types/schema/block.d.ts.map +1 -0
  33. package/dist/types/schema/common/inputs.d.ts +10 -0
  34. package/dist/types/schema/common/inputs.d.ts.map +1 -0
  35. package/dist/types/schema/common/scalars.d.ts +13 -0
  36. package/dist/types/schema/common/scalars.d.ts.map +1 -0
  37. package/dist/types/schema/common/types.d.ts +12 -0
  38. package/dist/types/schema/common/types.d.ts.map +1 -0
  39. package/dist/types/schema/index.d.ts +2 -0
  40. package/dist/types/schema/index.d.ts.map +1 -0
  41. package/dist/types/schema/instruction.d.ts +954 -0
  42. package/dist/types/schema/instruction.d.ts.map +1 -0
  43. package/dist/types/schema/program-accounts.d.ts +12 -0
  44. package/dist/types/schema/program-accounts.d.ts.map +1 -0
  45. package/dist/types/schema/transaction.d.ts +16 -0
  46. package/dist/types/schema/transaction.d.ts.map +1 -0
  47. package/package.json +17 -13
@@ -0,0 +1,954 @@
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";
2
+ export declare const instructionResolvers: {
3
+ TransactionInstruction: {
4
+ __resolveType(instruction: {
5
+ meta: {
6
+ program: string;
7
+ type: string;
8
+ };
9
+ }): "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
+ };
11
+ CreateLookupTableInstructionData: {
12
+ lookupTableAccount: (parent: {
13
+ [x: string]: import("@solana/addresses").Address;
14
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
15
+ lookupTableAuthority: (parent: {
16
+ [x: string]: import("@solana/addresses").Address;
17
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
18
+ payerAccount: (parent: {
19
+ [x: string]: import("@solana/addresses").Address;
20
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
21
+ systemProgram: (parent: {
22
+ [x: string]: import("@solana/addresses").Address;
23
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
24
+ };
25
+ ExtendLookupTableInstructionData: {
26
+ lookupTableAccount: (parent: {
27
+ [x: string]: import("@solana/addresses").Address;
28
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
29
+ lookupTableAuthority: (parent: {
30
+ [x: string]: import("@solana/addresses").Address;
31
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
32
+ payerAccount: (parent: {
33
+ [x: string]: import("@solana/addresses").Address;
34
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
35
+ systemProgram: (parent: {
36
+ [x: string]: import("@solana/addresses").Address;
37
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
38
+ };
39
+ FreezeLookupTableInstructionData: {
40
+ lookupTableAccount: (parent: {
41
+ [x: string]: import("@solana/addresses").Address;
42
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
43
+ lookupTableAuthority: (parent: {
44
+ [x: string]: import("@solana/addresses").Address;
45
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
46
+ };
47
+ DeactivateLookupTableInstructionData: {
48
+ lookupTableAccount: (parent: {
49
+ [x: string]: import("@solana/addresses").Address;
50
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
51
+ lookupTableAuthority: (parent: {
52
+ [x: string]: import("@solana/addresses").Address;
53
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
54
+ };
55
+ CloseLookupTableInstructionData: {
56
+ lookupTableAccount: (parent: {
57
+ [x: string]: import("@solana/addresses").Address;
58
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
59
+ lookupTableAuthority: (parent: {
60
+ [x: string]: import("@solana/addresses").Address;
61
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
62
+ recipient: (parent: {
63
+ [x: string]: import("@solana/addresses").Address;
64
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
65
+ };
66
+ BpfLoaderWriteInstructionData: {
67
+ account: (parent: {
68
+ [x: string]: import("@solana/addresses").Address;
69
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
70
+ };
71
+ BpfLoaderFinalizeInstructionData: {
72
+ account: (parent: {
73
+ [x: string]: import("@solana/addresses").Address;
74
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
75
+ };
76
+ BpfUpgradeableLoaderInitializeBufferInstructionData: {
77
+ account: (parent: {
78
+ [x: string]: import("@solana/addresses").Address;
79
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
80
+ };
81
+ BpfUpgradeableLoaderWriteInstructionData: {
82
+ account: (parent: {
83
+ [x: string]: import("@solana/addresses").Address;
84
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
85
+ authority: (parent: {
86
+ [x: string]: import("@solana/addresses").Address;
87
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
88
+ };
89
+ BpfUpgradeableLoaderDeployWithMaxDataLenInstructionData: {
90
+ authority: (parent: {
91
+ [x: string]: import("@solana/addresses").Address;
92
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
93
+ bufferAccount: (parent: {
94
+ [x: string]: import("@solana/addresses").Address;
95
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
96
+ payerAccount: (parent: {
97
+ [x: string]: import("@solana/addresses").Address;
98
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
99
+ programAccount: (parent: {
100
+ [x: string]: import("@solana/addresses").Address;
101
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
102
+ programDataAccount: (parent: {
103
+ [x: string]: import("@solana/addresses").Address;
104
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
105
+ };
106
+ BpfUpgradeableLoaderUpgradeInstructionData: {
107
+ authority: (parent: {
108
+ [x: string]: import("@solana/addresses").Address;
109
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
110
+ bufferAccount: (parent: {
111
+ [x: string]: import("@solana/addresses").Address;
112
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
113
+ programAccount: (parent: {
114
+ [x: string]: import("@solana/addresses").Address;
115
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
116
+ programDataAccount: (parent: {
117
+ [x: string]: import("@solana/addresses").Address;
118
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
119
+ };
120
+ BpfUpgradeableLoaderSetAuthorityInstructionData: {
121
+ account: (parent: {
122
+ [x: string]: import("@solana/addresses").Address;
123
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
124
+ authority: (parent: {
125
+ [x: string]: import("@solana/addresses").Address;
126
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
127
+ newAuthority: (parent: {
128
+ [x: string]: import("@solana/addresses").Address;
129
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
130
+ };
131
+ BpfUpgradeableLoaderSetAuthorityCheckedInstructionData: {
132
+ account: (parent: {
133
+ [x: string]: import("@solana/addresses").Address;
134
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
135
+ authority: (parent: {
136
+ [x: string]: import("@solana/addresses").Address;
137
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
138
+ newAuthority: (parent: {
139
+ [x: string]: import("@solana/addresses").Address;
140
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
141
+ };
142
+ BpfUpgradeableLoaderCloseInstructionData: {
143
+ account: (parent: {
144
+ [x: string]: import("@solana/addresses").Address;
145
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
146
+ authority: (parent: {
147
+ [x: string]: import("@solana/addresses").Address;
148
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
149
+ programAccount: (parent: {
150
+ [x: string]: import("@solana/addresses").Address;
151
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
152
+ recipient: (parent: {
153
+ [x: string]: import("@solana/addresses").Address;
154
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
155
+ };
156
+ BpfUpgradeableLoaderExtendProgramInstructionData: {
157
+ payerAccount: (parent: {
158
+ [x: string]: import("@solana/addresses").Address;
159
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
160
+ programAccount: (parent: {
161
+ [x: string]: import("@solana/addresses").Address;
162
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
163
+ programDataAccount: (parent: {
164
+ [x: string]: import("@solana/addresses").Address;
165
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
166
+ systemProgram: (parent: {
167
+ [x: string]: import("@solana/addresses").Address;
168
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
169
+ };
170
+ SplAssociatedTokenCreateInstructionData: {
171
+ account: (parent: {
172
+ [x: string]: import("@solana/addresses").Address;
173
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
174
+ mint: (parent: {
175
+ [x: string]: import("@solana/addresses").Address;
176
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
177
+ source: (parent: {
178
+ [x: string]: import("@solana/addresses").Address;
179
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
180
+ systemProgram: (parent: {
181
+ [x: string]: import("@solana/addresses").Address;
182
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
183
+ tokenProgram: (parent: {
184
+ [x: string]: import("@solana/addresses").Address;
185
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
186
+ wallet: (parent: {
187
+ [x: string]: import("@solana/addresses").Address;
188
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
189
+ };
190
+ SplAssociatedTokenCreateIdempotentInstructionData: {
191
+ account: (parent: {
192
+ [x: string]: import("@solana/addresses").Address;
193
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
194
+ mint: (parent: {
195
+ [x: string]: import("@solana/addresses").Address;
196
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
197
+ source: (parent: {
198
+ [x: string]: import("@solana/addresses").Address;
199
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
200
+ systemProgram: (parent: {
201
+ [x: string]: import("@solana/addresses").Address;
202
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
203
+ tokenProgram: (parent: {
204
+ [x: string]: import("@solana/addresses").Address;
205
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
206
+ wallet: (parent: {
207
+ [x: string]: import("@solana/addresses").Address;
208
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
209
+ };
210
+ SplAssociatedTokenRecoverNestedInstructionData: {
211
+ destination: (parent: {
212
+ [x: string]: import("@solana/addresses").Address;
213
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
214
+ nestedMint: (parent: {
215
+ [x: string]: import("@solana/addresses").Address;
216
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
217
+ nestedOwner: (parent: {
218
+ [x: string]: import("@solana/addresses").Address;
219
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
220
+ nestedSource: (parent: {
221
+ [x: string]: import("@solana/addresses").Address;
222
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
223
+ ownerMint: (parent: {
224
+ [x: string]: import("@solana/addresses").Address;
225
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
226
+ tokenProgram: (parent: {
227
+ [x: string]: import("@solana/addresses").Address;
228
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
229
+ wallet: (parent: {
230
+ [x: string]: import("@solana/addresses").Address;
231
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
232
+ };
233
+ SplTokenInitializeMintInstructionData: {
234
+ freezeAuthority: (parent: {
235
+ [x: string]: import("@solana/addresses").Address;
236
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
237
+ mint: (parent: {
238
+ [x: string]: import("@solana/addresses").Address;
239
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
240
+ mintAuthority: (parent: {
241
+ [x: string]: import("@solana/addresses").Address;
242
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
243
+ };
244
+ SplTokenInitializeMint2InstructionData: {
245
+ freezeAuthority: (parent: {
246
+ [x: string]: import("@solana/addresses").Address;
247
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
248
+ mint: (parent: {
249
+ [x: string]: import("@solana/addresses").Address;
250
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
251
+ mintAuthority: (parent: {
252
+ [x: string]: import("@solana/addresses").Address;
253
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
254
+ };
255
+ SplTokenInitializeAccountInstructionData: {
256
+ account: (parent: {
257
+ [x: string]: import("@solana/addresses").Address;
258
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
259
+ mint: (parent: {
260
+ [x: string]: import("@solana/addresses").Address;
261
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
262
+ owner: (parent: {
263
+ [x: string]: import("@solana/addresses").Address;
264
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
265
+ };
266
+ SplTokenInitializeAccount2InstructionData: {
267
+ account: (parent: {
268
+ [x: string]: import("@solana/addresses").Address;
269
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
270
+ mint: (parent: {
271
+ [x: string]: import("@solana/addresses").Address;
272
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
273
+ owner: (parent: {
274
+ [x: string]: import("@solana/addresses").Address;
275
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
276
+ };
277
+ SplTokenInitializeAccount3InstructionData: {
278
+ account: (parent: {
279
+ [x: string]: import("@solana/addresses").Address;
280
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
281
+ mint: (parent: {
282
+ [x: string]: import("@solana/addresses").Address;
283
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
284
+ owner: (parent: {
285
+ [x: string]: import("@solana/addresses").Address;
286
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
287
+ };
288
+ SplTokenInitializeMultisigInstructionData: {
289
+ multisig: (parent: {
290
+ [x: string]: import("@solana/addresses").Address;
291
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
292
+ };
293
+ SplTokenInitializeMultisig2InstructionData: {
294
+ multisig: (parent: {
295
+ [x: string]: import("@solana/addresses").Address;
296
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
297
+ };
298
+ SplTokenTransferInstructionData: {
299
+ authority: (parent: {
300
+ [x: string]: import("@solana/addresses").Address;
301
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
302
+ destination: (parent: {
303
+ [x: string]: import("@solana/addresses").Address;
304
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
305
+ multisigAuthority: (parent: {
306
+ [x: string]: import("@solana/addresses").Address;
307
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
308
+ source: (parent: {
309
+ [x: string]: import("@solana/addresses").Address;
310
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
311
+ };
312
+ SplTokenApproveInstructionData: {
313
+ delegate: (parent: {
314
+ [x: string]: import("@solana/addresses").Address;
315
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
316
+ multisigOwner: (parent: {
317
+ [x: string]: import("@solana/addresses").Address;
318
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
319
+ owner: (parent: {
320
+ [x: string]: import("@solana/addresses").Address;
321
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
322
+ source: (parent: {
323
+ [x: string]: import("@solana/addresses").Address;
324
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
325
+ };
326
+ SplTokenRevokeInstructionData: {
327
+ multisigOwner: (parent: {
328
+ [x: string]: import("@solana/addresses").Address;
329
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
330
+ owner: (parent: {
331
+ [x: string]: import("@solana/addresses").Address;
332
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
333
+ source: (parent: {
334
+ [x: string]: import("@solana/addresses").Address;
335
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
336
+ };
337
+ SplTokenSetAuthorityInstructionData: {
338
+ authority: (parent: {
339
+ [x: string]: import("@solana/addresses").Address;
340
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
341
+ multisigAuthority: (parent: {
342
+ [x: string]: import("@solana/addresses").Address;
343
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
344
+ newAuthority: (parent: {
345
+ [x: string]: import("@solana/addresses").Address;
346
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
347
+ };
348
+ SplTokenMintToInstructionData: {
349
+ account: (parent: {
350
+ [x: string]: import("@solana/addresses").Address;
351
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
352
+ authority: (parent: {
353
+ [x: string]: import("@solana/addresses").Address;
354
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
355
+ mint: (parent: {
356
+ [x: string]: import("@solana/addresses").Address;
357
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
358
+ mintAuthority: (parent: {
359
+ [x: string]: import("@solana/addresses").Address;
360
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
361
+ multisigMintAuthority: (parent: {
362
+ [x: string]: import("@solana/addresses").Address;
363
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
364
+ };
365
+ SplTokenBurnInstructionData: {
366
+ account: (parent: {
367
+ [x: string]: import("@solana/addresses").Address;
368
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
369
+ authority: (parent: {
370
+ [x: string]: import("@solana/addresses").Address;
371
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
372
+ mint: (parent: {
373
+ [x: string]: import("@solana/addresses").Address;
374
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
375
+ multisigAuthority: (parent: {
376
+ [x: string]: import("@solana/addresses").Address;
377
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
378
+ };
379
+ SplTokenCloseAccountInstructionData: {
380
+ account: (parent: {
381
+ [x: string]: import("@solana/addresses").Address;
382
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
383
+ destination: (parent: {
384
+ [x: string]: import("@solana/addresses").Address;
385
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
386
+ multisigOwner: (parent: {
387
+ [x: string]: import("@solana/addresses").Address;
388
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
389
+ owner: (parent: {
390
+ [x: string]: import("@solana/addresses").Address;
391
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
392
+ };
393
+ SplTokenFreezeAccountInstructionData: {
394
+ account: (parent: {
395
+ [x: string]: import("@solana/addresses").Address;
396
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
397
+ freezeAuthority: (parent: {
398
+ [x: string]: import("@solana/addresses").Address;
399
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
400
+ mint: (parent: {
401
+ [x: string]: import("@solana/addresses").Address;
402
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
403
+ multisigFreezeAuthority: (parent: {
404
+ [x: string]: import("@solana/addresses").Address;
405
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
406
+ };
407
+ SplTokenThawAccountInstructionData: {
408
+ account: (parent: {
409
+ [x: string]: import("@solana/addresses").Address;
410
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
411
+ freezeAuthority: (parent: {
412
+ [x: string]: import("@solana/addresses").Address;
413
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
414
+ mint: (parent: {
415
+ [x: string]: import("@solana/addresses").Address;
416
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
417
+ multisigFreezeAuthority: (parent: {
418
+ [x: string]: import("@solana/addresses").Address;
419
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
420
+ };
421
+ SplTokenTransferCheckedInstructionData: {
422
+ authority: (parent: {
423
+ [x: string]: import("@solana/addresses").Address;
424
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
425
+ destination: (parent: {
426
+ [x: string]: import("@solana/addresses").Address;
427
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
428
+ mint: (parent: {
429
+ [x: string]: import("@solana/addresses").Address;
430
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
431
+ multisigAuthority: (parent: {
432
+ [x: string]: import("@solana/addresses").Address;
433
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
434
+ source: (parent: {
435
+ [x: string]: import("@solana/addresses").Address;
436
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
437
+ };
438
+ SplTokenApproveCheckedInstructionData: {
439
+ delegate: (parent: {
440
+ [x: string]: import("@solana/addresses").Address;
441
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
442
+ mint: (parent: {
443
+ [x: string]: import("@solana/addresses").Address;
444
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
445
+ multisigOwner: (parent: {
446
+ [x: string]: import("@solana/addresses").Address;
447
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
448
+ owner: (parent: {
449
+ [x: string]: import("@solana/addresses").Address;
450
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
451
+ source: (parent: {
452
+ [x: string]: import("@solana/addresses").Address;
453
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
454
+ };
455
+ SplTokenMintToCheckedInstructionData: {
456
+ account: (parent: {
457
+ [x: string]: import("@solana/addresses").Address;
458
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
459
+ authority: (parent: {
460
+ [x: string]: import("@solana/addresses").Address;
461
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
462
+ mint: (parent: {
463
+ [x: string]: import("@solana/addresses").Address;
464
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
465
+ mintAuthority: (parent: {
466
+ [x: string]: import("@solana/addresses").Address;
467
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
468
+ multisigMintAuthority: (parent: {
469
+ [x: string]: import("@solana/addresses").Address;
470
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
471
+ };
472
+ SplTokenBurnCheckedInstructionData: {
473
+ account: (parent: {
474
+ [x: string]: import("@solana/addresses").Address;
475
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
476
+ authority: (parent: {
477
+ [x: string]: import("@solana/addresses").Address;
478
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
479
+ mint: (parent: {
480
+ [x: string]: import("@solana/addresses").Address;
481
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
482
+ multisigAuthority: (parent: {
483
+ [x: string]: import("@solana/addresses").Address;
484
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
485
+ };
486
+ SplTokenSyncNativeInstructionData: {
487
+ account: (parent: {
488
+ [x: string]: import("@solana/addresses").Address;
489
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
490
+ };
491
+ SplTokenGetAccountDataSizeInstructionData: {
492
+ mint: (parent: {
493
+ [x: string]: import("@solana/addresses").Address;
494
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
495
+ };
496
+ SplTokenAmountToUiAmountInstructionData: {
497
+ mint: (parent: {
498
+ [x: string]: import("@solana/addresses").Address;
499
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
500
+ };
501
+ SplTokenUiAmountToAmountInstructionData: {
502
+ mint: (parent: {
503
+ [x: string]: import("@solana/addresses").Address;
504
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
505
+ };
506
+ SplTokenInitializeMintCloseAuthorityInstructionData: {
507
+ mint: (parent: {
508
+ [x: string]: import("@solana/addresses").Address;
509
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
510
+ newAuthority: (parent: {
511
+ [x: string]: import("@solana/addresses").Address;
512
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
513
+ };
514
+ Lockup: {
515
+ custodian: (parent: {
516
+ [x: string]: import("@solana/addresses").Address;
517
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
518
+ };
519
+ StakeInitializeInstructionDataAuthorized: {
520
+ staker: (parent: {
521
+ [x: string]: import("@solana/addresses").Address;
522
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
523
+ withdrawer: (parent: {
524
+ [x: string]: import("@solana/addresses").Address;
525
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
526
+ };
527
+ StakeInitializeInstructionData: {
528
+ stakeAccount: (parent: {
529
+ [x: string]: import("@solana/addresses").Address;
530
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
531
+ };
532
+ StakeAuthorizeInstructionData: {
533
+ authority: (parent: {
534
+ [x: string]: import("@solana/addresses").Address;
535
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
536
+ custodian: (parent: {
537
+ [x: string]: import("@solana/addresses").Address;
538
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
539
+ newAuthority: (parent: {
540
+ [x: string]: import("@solana/addresses").Address;
541
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
542
+ stakeAccount: (parent: {
543
+ [x: string]: import("@solana/addresses").Address;
544
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
545
+ };
546
+ StakeDelegateStakeInstructionData: {
547
+ stakeAccount: (parent: {
548
+ [x: string]: import("@solana/addresses").Address;
549
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
550
+ stakeAuthority: (parent: {
551
+ [x: string]: import("@solana/addresses").Address;
552
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
553
+ stakeConfigAccount: (parent: {
554
+ [x: string]: import("@solana/addresses").Address;
555
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
556
+ voteAccount: (parent: {
557
+ [x: string]: import("@solana/addresses").Address;
558
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
559
+ };
560
+ StakeSplitInstructionData: {
561
+ newSplitAccount: (parent: {
562
+ [x: string]: import("@solana/addresses").Address;
563
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
564
+ stakeAccount: (parent: {
565
+ [x: string]: import("@solana/addresses").Address;
566
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
567
+ stakeAuthority: (parent: {
568
+ [x: string]: import("@solana/addresses").Address;
569
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
570
+ };
571
+ StakeWithdrawInstructionData: {
572
+ destination: (parent: {
573
+ [x: string]: import("@solana/addresses").Address;
574
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
575
+ stakeAccount: (parent: {
576
+ [x: string]: import("@solana/addresses").Address;
577
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
578
+ withdrawAuthority: (parent: {
579
+ [x: string]: import("@solana/addresses").Address;
580
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
581
+ };
582
+ StakeDeactivateInstructionData: {
583
+ stakeAccount: (parent: {
584
+ [x: string]: import("@solana/addresses").Address;
585
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
586
+ stakeAuthority: (parent: {
587
+ [x: string]: import("@solana/addresses").Address;
588
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
589
+ };
590
+ StakeSetLockupInstructionData: {
591
+ custodian: (parent: {
592
+ [x: string]: import("@solana/addresses").Address;
593
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
594
+ stakeAccount: (parent: {
595
+ [x: string]: import("@solana/addresses").Address;
596
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
597
+ };
598
+ StakeMergeInstructionData: {
599
+ destination: (parent: {
600
+ [x: string]: import("@solana/addresses").Address;
601
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
602
+ source: (parent: {
603
+ [x: string]: import("@solana/addresses").Address;
604
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
605
+ stakeAuthority: (parent: {
606
+ [x: string]: import("@solana/addresses").Address;
607
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
608
+ };
609
+ StakeAuthorizeWithSeedInstructionData: {
610
+ authorityBase: (parent: {
611
+ [x: string]: import("@solana/addresses").Address;
612
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
613
+ authorityOwner: (parent: {
614
+ [x: string]: import("@solana/addresses").Address;
615
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
616
+ custodian: (parent: {
617
+ [x: string]: import("@solana/addresses").Address;
618
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
619
+ newAuthorized: (parent: {
620
+ [x: string]: import("@solana/addresses").Address;
621
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
622
+ stakeAccount: (parent: {
623
+ [x: string]: import("@solana/addresses").Address;
624
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
625
+ };
626
+ 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
+ staker: (parent: {
631
+ [x: string]: import("@solana/addresses").Address;
632
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
633
+ withdrawer: (parent: {
634
+ [x: string]: import("@solana/addresses").Address;
635
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
636
+ };
637
+ StakeAuthorizeCheckedInstructionData: {
638
+ authority: (parent: {
639
+ [x: string]: import("@solana/addresses").Address;
640
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
641
+ custodian: (parent: {
642
+ [x: string]: import("@solana/addresses").Address;
643
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
644
+ newAuthority: (parent: {
645
+ [x: string]: import("@solana/addresses").Address;
646
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
647
+ stakeAccount: (parent: {
648
+ [x: string]: import("@solana/addresses").Address;
649
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
650
+ };
651
+ StakeAuthorizeCheckedWithSeedInstructionData: {
652
+ authorityBase: (parent: {
653
+ [x: string]: import("@solana/addresses").Address;
654
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
655
+ authorityOwner: (parent: {
656
+ [x: string]: import("@solana/addresses").Address;
657
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
658
+ custodian: (parent: {
659
+ [x: string]: import("@solana/addresses").Address;
660
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
661
+ newAuthorized: (parent: {
662
+ [x: string]: import("@solana/addresses").Address;
663
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
664
+ stakeAccount: (parent: {
665
+ [x: string]: import("@solana/addresses").Address;
666
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
667
+ };
668
+ StakeSetLockupCheckedInstructionData: {
669
+ custodian: (parent: {
670
+ [x: string]: import("@solana/addresses").Address;
671
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
672
+ stakeAccount: (parent: {
673
+ [x: string]: import("@solana/addresses").Address;
674
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
675
+ };
676
+ StakeDeactivateDelinquentInstructionData: {
677
+ referenceVoteAccount: (parent: {
678
+ [x: string]: import("@solana/addresses").Address;
679
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
680
+ stakeAccount: (parent: {
681
+ [x: string]: import("@solana/addresses").Address;
682
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
683
+ voteAccount: (parent: {
684
+ [x: string]: import("@solana/addresses").Address;
685
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
686
+ };
687
+ StakeRedelegateInstructionData: {
688
+ newStakeAccount: (parent: {
689
+ [x: string]: import("@solana/addresses").Address;
690
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
691
+ stakeAccount: (parent: {
692
+ [x: string]: import("@solana/addresses").Address;
693
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
694
+ stakeAuthority: (parent: {
695
+ [x: string]: import("@solana/addresses").Address;
696
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
697
+ stakeConfigAccount: (parent: {
698
+ [x: string]: import("@solana/addresses").Address;
699
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
700
+ voteAccount: (parent: {
701
+ [x: string]: import("@solana/addresses").Address;
702
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
703
+ };
704
+ CreateAccountInstructionData: {
705
+ newAccount: (parent: {
706
+ [x: string]: import("@solana/addresses").Address;
707
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
708
+ owner: (parent: {
709
+ [x: string]: import("@solana/addresses").Address;
710
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
711
+ source: (parent: {
712
+ [x: string]: import("@solana/addresses").Address;
713
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
714
+ };
715
+ AssignInstructionData: {
716
+ account: (parent: {
717
+ [x: string]: import("@solana/addresses").Address;
718
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
719
+ owner: (parent: {
720
+ [x: string]: import("@solana/addresses").Address;
721
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
722
+ };
723
+ TransferInstructionData: {
724
+ destination: (parent: {
725
+ [x: string]: import("@solana/addresses").Address;
726
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
727
+ source: (parent: {
728
+ [x: string]: import("@solana/addresses").Address;
729
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
730
+ };
731
+ CreateAccountWithSeedInstructionData: {
732
+ base: (parent: {
733
+ [x: string]: import("@solana/addresses").Address;
734
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
735
+ owner: (parent: {
736
+ [x: string]: import("@solana/addresses").Address;
737
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
738
+ seed: (parent: {
739
+ [x: string]: import("@solana/addresses").Address;
740
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
741
+ };
742
+ AdvanceNonceAccountInstructionData: {
743
+ nonceAccount: (parent: {
744
+ [x: string]: import("@solana/addresses").Address;
745
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
746
+ nonceAuthority: (parent: {
747
+ [x: string]: import("@solana/addresses").Address;
748
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
749
+ };
750
+ WithdrawNonceAccountInstructionData: {
751
+ destination: (parent: {
752
+ [x: string]: import("@solana/addresses").Address;
753
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
754
+ nonceAccount: (parent: {
755
+ [x: string]: import("@solana/addresses").Address;
756
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
757
+ nonceAuthority: (parent: {
758
+ [x: string]: import("@solana/addresses").Address;
759
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
760
+ };
761
+ InitializeNonceAccountInstructionData: {
762
+ nonceAccount: (parent: {
763
+ [x: string]: import("@solana/addresses").Address;
764
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
765
+ nonceAuthority: (parent: {
766
+ [x: string]: import("@solana/addresses").Address;
767
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
768
+ };
769
+ AuthorizeNonceAccountInstructionData: {
770
+ newAuthorized: (parent: {
771
+ [x: string]: import("@solana/addresses").Address;
772
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
773
+ nonceAccount: (parent: {
774
+ [x: string]: import("@solana/addresses").Address;
775
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
776
+ nonceAuthority: (parent: {
777
+ [x: string]: import("@solana/addresses").Address;
778
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
779
+ };
780
+ UpgradeNonceAccountInstructionData: {
781
+ nonceAccount: (parent: {
782
+ [x: string]: import("@solana/addresses").Address;
783
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
784
+ nonceAuthority: (parent: {
785
+ [x: string]: import("@solana/addresses").Address;
786
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
787
+ };
788
+ AllocateInstructionData: {
789
+ account: (parent: {
790
+ [x: string]: import("@solana/addresses").Address;
791
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
792
+ };
793
+ AllocateWithSeedInstructionData: {
794
+ account: (parent: {
795
+ [x: string]: import("@solana/addresses").Address;
796
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
797
+ owner: (parent: {
798
+ [x: string]: import("@solana/addresses").Address;
799
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
800
+ };
801
+ AssignWithSeedInstructionData: {
802
+ account: (parent: {
803
+ [x: string]: import("@solana/addresses").Address;
804
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
805
+ owner: (parent: {
806
+ [x: string]: import("@solana/addresses").Address;
807
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
808
+ };
809
+ TransferWithSeedInstructionData: {
810
+ destination: (parent: {
811
+ [x: string]: import("@solana/addresses").Address;
812
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
813
+ source: (parent: {
814
+ [x: string]: import("@solana/addresses").Address;
815
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
816
+ sourceOwner: (parent: {
817
+ [x: string]: import("@solana/addresses").Address;
818
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
819
+ };
820
+ VoteInitializeAccountInstructionData: {
821
+ authorizedVoter: (parent: {
822
+ [x: string]: import("@solana/addresses").Address;
823
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
824
+ authorizedWithdrawer: (parent: {
825
+ [x: string]: import("@solana/addresses").Address;
826
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
827
+ node: (parent: {
828
+ [x: string]: import("@solana/addresses").Address;
829
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
830
+ voteAccount: (parent: {
831
+ [x: string]: import("@solana/addresses").Address;
832
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
833
+ };
834
+ VoteAuthorizeInstructionData: {
835
+ authority: (parent: {
836
+ [x: string]: import("@solana/addresses").Address;
837
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
838
+ newAuthority: (parent: {
839
+ [x: string]: import("@solana/addresses").Address;
840
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
841
+ voteAccount: (parent: {
842
+ [x: string]: import("@solana/addresses").Address;
843
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
844
+ };
845
+ VoteAuthorizeWithSeedInstructionData: {
846
+ authorityOwner: (parent: {
847
+ [x: string]: import("@solana/addresses").Address;
848
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
849
+ newAuthority: (parent: {
850
+ [x: string]: import("@solana/addresses").Address;
851
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
852
+ voteAccount: (parent: {
853
+ [x: string]: import("@solana/addresses").Address;
854
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
855
+ };
856
+ VoteAuthorizeCheckedWithSeedInstructionData: {
857
+ authorityOwner: (parent: {
858
+ [x: string]: import("@solana/addresses").Address;
859
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
860
+ newAuthority: (parent: {
861
+ [x: string]: import("@solana/addresses").Address;
862
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
863
+ voteAccount: (parent: {
864
+ [x: string]: import("@solana/addresses").Address;
865
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
866
+ };
867
+ VoteVoteInstructionData: {
868
+ voteAccount: (parent: {
869
+ [x: string]: import("@solana/addresses").Address;
870
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
871
+ voteAuthority: (parent: {
872
+ [x: string]: import("@solana/addresses").Address;
873
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
874
+ };
875
+ VoteUpdateVoteStateInstructionData: {
876
+ voteAccount: (parent: {
877
+ [x: string]: import("@solana/addresses").Address;
878
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
879
+ voteAuthority: (parent: {
880
+ [x: string]: import("@solana/addresses").Address;
881
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
882
+ };
883
+ VoteUpdateVoteStateSwitchInstructionData: {
884
+ voteAccount: (parent: {
885
+ [x: string]: import("@solana/addresses").Address;
886
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
887
+ voteAuthority: (parent: {
888
+ [x: string]: import("@solana/addresses").Address;
889
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
890
+ };
891
+ VoteCompactUpdateVoteStateInstructionData: {
892
+ voteAccount: (parent: {
893
+ [x: string]: import("@solana/addresses").Address;
894
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
895
+ voteAuthority: (parent: {
896
+ [x: string]: import("@solana/addresses").Address;
897
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
898
+ };
899
+ VoteCompactUpdateVoteStateSwitchInstructionData: {
900
+ voteAccount: (parent: {
901
+ [x: string]: import("@solana/addresses").Address;
902
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
903
+ voteAuthority: (parent: {
904
+ [x: string]: import("@solana/addresses").Address;
905
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
906
+ };
907
+ VoteWithdrawInstructionData: {
908
+ voteAccount: (parent: {
909
+ [x: string]: import("@solana/addresses").Address;
910
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
911
+ withdrawAuthority: (parent: {
912
+ [x: string]: import("@solana/addresses").Address;
913
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
914
+ };
915
+ VoteUpdateValidatorIdentityInstructionData: {
916
+ newValidatorIdentity: (parent: {
917
+ [x: string]: import("@solana/addresses").Address;
918
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
919
+ voteAccount: (parent: {
920
+ [x: string]: import("@solana/addresses").Address;
921
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
922
+ withdrawAuthority: (parent: {
923
+ [x: string]: import("@solana/addresses").Address;
924
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
925
+ };
926
+ VoteUpdateCommissionInstructionData: {
927
+ voteAccount: (parent: {
928
+ [x: string]: import("@solana/addresses").Address;
929
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
930
+ withdrawAuthority: (parent: {
931
+ [x: string]: import("@solana/addresses").Address;
932
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
933
+ };
934
+ VoteVoteSwitchInstructionData: {
935
+ voteAccount: (parent: {
936
+ [x: string]: import("@solana/addresses").Address;
937
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
938
+ voteAuthority: (parent: {
939
+ [x: string]: import("@solana/addresses").Address;
940
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
941
+ };
942
+ VoteAuthorizeCheckedInstructionData: {
943
+ authority: (parent: {
944
+ [x: string]: import("@solana/addresses").Address;
945
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
946
+ newAuthority: (parent: {
947
+ [x: string]: import("@solana/addresses").Address;
948
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
949
+ voteAccount: (parent: {
950
+ [x: string]: import("@solana/addresses").Address;
951
+ }, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<any> | null;
952
+ };
953
+ };
954
+ //# sourceMappingURL=instruction.d.ts.map