@solana/rpc-graphql 2.0.0-experimental.fb88a79 → 2.0.0-experimental.fbbf6ba
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.browser.cjs +2333 -2056
- package/dist/index.browser.cjs.map +1 -1
- package/dist/index.browser.js +2332 -2055
- package/dist/index.browser.js.map +1 -1
- package/dist/index.native.js +2332 -2055
- package/dist/index.native.js.map +1 -1
- package/dist/index.node.cjs +2333 -2056
- package/dist/index.node.cjs.map +1 -1
- package/dist/index.node.js +2332 -2055
- package/dist/index.node.js.map +1 -1
- package/dist/types/context.d.ts +2 -18
- package/dist/types/context.d.ts.map +1 -1
- package/dist/types/index.d.ts +8 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/loaders/account.d.ts +3 -6
- package/dist/types/loaders/account.d.ts.map +1 -1
- package/dist/types/loaders/block.d.ts +3 -6
- package/dist/types/loaders/block.d.ts.map +1 -1
- package/dist/types/loaders/index.d.ts +6 -0
- package/dist/types/loaders/index.d.ts.map +1 -0
- package/dist/types/loaders/loader.d.ts +63 -0
- package/dist/types/loaders/loader.d.ts.map +1 -0
- package/dist/types/loaders/program-accounts.d.ts +3 -8
- package/dist/types/loaders/program-accounts.d.ts.map +1 -1
- package/dist/types/loaders/transaction.d.ts +3 -6
- package/dist/types/loaders/transaction.d.ts.map +1 -1
- package/dist/types/resolvers/account.d.ts +110 -4
- package/dist/types/resolvers/account.d.ts.map +1 -1
- package/dist/types/resolvers/block.d.ts +20 -0
- package/dist/types/resolvers/block.d.ts.map +1 -0
- package/dist/types/resolvers/index.d.ts +3 -0
- package/dist/types/resolvers/index.d.ts.map +1 -0
- package/dist/types/resolvers/instruction.d.ts +948 -0
- package/dist/types/resolvers/instruction.d.ts.map +1 -0
- package/dist/types/resolvers/program-accounts.d.ts +10 -0
- package/dist/types/resolvers/program-accounts.d.ts.map +1 -0
- package/dist/types/resolvers/resolve-info.d.ts.map +1 -0
- package/dist/types/resolvers/root.d.ts +3 -0
- package/dist/types/resolvers/root.d.ts.map +1 -0
- package/dist/types/resolvers/scalars.d.ts +44 -0
- package/dist/types/resolvers/scalars.d.ts.map +1 -0
- package/dist/types/resolvers/transaction.d.ts +19 -0
- package/dist/types/resolvers/transaction.d.ts.map +1 -0
- package/dist/types/resolvers/types.d.ts +26 -0
- package/dist/types/resolvers/types.d.ts.map +1 -0
- package/dist/types/schema/account.d.ts +1 -111
- package/dist/types/schema/account.d.ts.map +1 -1
- package/dist/types/schema/block.d.ts +1 -16
- package/dist/types/schema/block.d.ts.map +1 -1
- package/dist/types/schema/common/inputs.d.ts +0 -1
- package/dist/types/schema/common/inputs.d.ts.map +1 -1
- package/dist/types/schema/common/scalars.d.ts +0 -43
- package/dist/types/schema/common/scalars.d.ts.map +1 -1
- package/dist/types/schema/common/types.d.ts +0 -25
- package/dist/types/schema/common/types.d.ts.map +1 -1
- package/dist/types/schema/index.d.ts +1 -1
- package/dist/types/schema/index.d.ts.map +1 -1
- package/dist/types/schema/instruction.d.ts +1 -948
- package/dist/types/schema/instruction.d.ts.map +1 -1
- package/dist/types/schema/root.d.ts +2 -0
- package/dist/types/schema/root.d.ts.map +1 -0
- package/dist/types/schema/transaction.d.ts +1 -15
- package/dist/types/schema/transaction.d.ts.map +1 -1
- package/package.json +11 -39
- package/dist/types/loaders/common/resolve-info.d.ts.map +0 -1
- package/dist/types/loaders/transformers/account.d.ts +0 -8
- package/dist/types/loaders/transformers/account.d.ts.map +0 -1
- package/dist/types/loaders/transformers/block.d.ts +0 -6
- package/dist/types/loaders/transformers/block.d.ts.map +0 -1
- package/dist/types/loaders/transformers/transaction.d.ts +0 -5
- package/dist/types/loaders/transformers/transaction.d.ts.map +0 -1
- package/dist/types/rpc.d.ts +0 -15
- package/dist/types/rpc.d.ts.map +0 -1
- package/dist/types/schema/program-accounts.d.ts +0 -12
- package/dist/types/schema/program-accounts.d.ts.map +0 -1
- /package/dist/types/{loaders/common → resolvers}/resolve-info.d.ts +0 -0
|
@@ -1,949 +1,2 @@
|
|
|
1
|
-
export declare const instructionTypeDefs = "\n # Transaction instruction interface\n interface TransactionInstruction {\n programId: Address\n }\n\n # Generic transaction instruction\n type GenericInstruction implements TransactionInstruction {\n accounts: [Address]\n data: Base64EncodedBytes\n programId: Address\n }\n\n # AddressLookupTable: CreateLookupTable\n type CreateLookupTableInstruction implements TransactionInstruction {\n programId: Address\n bumpSeed: BigInt # FIXME:*\n lookupTableAccount: Account\n lookupTableAuthority: Account\n payerAccount: Account\n recentSlot: BigInt\n systemProgram: Account\n }\n\n # AddressLookupTable: ExtendLookupTable\n type ExtendLookupTableInstruction implements TransactionInstruction {\n programId: Address\n lookupTableAccount: Account\n lookupTableAuthority: Account\n newAddresses: [Address]\n payerAccount: Account\n systemProgram: Account\n }\n\n # AddressLookupTable: FreezeLookupTable\n type FreezeLookupTableInstruction implements TransactionInstruction {\n programId: Address\n lookupTableAccount: Account\n lookupTableAuthority: Account\n }\n\n # AddressLookupTable: DeactivateLookupTable\n type DeactivateLookupTableInstruction implements TransactionInstruction {\n programId: Address\n lookupTableAccount: Account\n lookupTableAuthority: Account\n }\n\n # AddressLookupTable: CloseLookupTable\n type CloseLookupTableInstruction implements TransactionInstruction {\n programId: Address\n lookupTableAccount: Account\n lookupTableAuthority: Account\n recipient: Account\n }\n\n # BpfLoader: Write\n type BpfLoaderWriteInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n bytes: Base64EncodedBytes\n offset: BigInt # FIXME:*\n }\n\n # BpfLoader: Finalize\n type BpfLoaderFinalizeInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n }\n\n # BpfUpgradeableLoader: InitializeBuffer\n type BpfUpgradeableLoaderInitializeBufferInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n }\n\n # BpfUpgradeableLoader: Write\n type BpfUpgradeableLoaderWriteInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n authority: Account\n bytes: Base64EncodedBytes\n offset: BigInt # FIXME:*\n }\n\n # BpfUpgradeableLoader: DeployWithMaxDataLen\n type BpfUpgradeableLoaderDeployWithMaxDataLenInstruction implements TransactionInstruction {\n programId: Address\n authority: Account\n bufferAccount: Account\n clockSysvar: Address\n maxDataLen: BigInt\n payerAccount: Account\n programAccount: Account\n programDataAccount: Account\n rentSysvar: Address\n }\n\n # BpfUpgradeableLoader: Upgrade\n type BpfUpgradeableLoaderUpgradeInstruction implements TransactionInstruction {\n programId: Address\n authority: Account\n bufferAccount: Account\n clockSysvar: Address\n programAccount: Account\n programDataAccount: Account\n rentSysvar: Address\n spillAccount: Account\n }\n\n # BpfUpgradeableLoader: SetAuthority\n\n type BpfUpgradeableLoaderSetAuthorityInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n authority: Account\n newAuthority: Account\n }\n\n # BpfUpgradeableLoader: SetAuthorityChecked\n type BpfUpgradeableLoaderSetAuthorityCheckedInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n authority: Account\n newAuthority: Account\n }\n\n # BpfUpgradeableLoader: Close\n type BpfUpgradeableLoaderCloseInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n authority: Account\n programAccount: Account\n recipient: Account\n }\n\n # BpfUpgradeableLoader: ExtendProgram\n type BpfUpgradeableLoaderExtendProgramInstruction implements TransactionInstruction {\n programId: Address\n additionalBytes: BigInt\n payerAccount: Account\n programAccount: Account\n programDataAccount: Account\n systemProgram: Account\n }\n\n # SplAssociatedTokenAccount: Create\n type SplAssociatedTokenCreateInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n mint: Address\n source: Account\n systemProgram: Account\n tokenProgram: Account\n wallet: Account\n }\n\n # SplAssociatedTokenAccount: CreateIdempotent\n type SplAssociatedTokenCreateIdempotentInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n mint: Address\n source: Account\n systemProgram: Account\n tokenProgram: Account\n wallet: Account\n }\n\n # SplAssociatedTokenAccount: RecoverNested\n type SplAssociatedTokenRecoverNestedInstruction implements TransactionInstruction {\n programId: Address\n destination: Account\n nestedMint: Account\n nestedOwner: Account\n nestedSource: Account\n ownerMint: Account\n tokenProgram: Account\n wallet: Account\n }\n\n # SplMemo\n type SplMemoInstruction implements TransactionInstruction {\n programId: Address\n data: String\n }\n\n # SplToken: InitializeMint\n type SplTokenInitializeMintInstruction implements TransactionInstruction {\n programId: Address\n decimals: BigInt # FIXME:*\n freezeAuthority: Account\n mint: Account\n mintAuthority: Account\n rentSysvar: Address\n }\n\n # SplToken: InitializeMint2\n type SplTokenInitializeMint2Instruction implements TransactionInstruction {\n programId: Address\n decimals: BigInt # FIXME:*\n freezeAuthority: Account\n mint: Account\n mintAuthority: Account\n }\n\n # SplToken: InitializeAccount\n type SplTokenInitializeAccountInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n mint: Account\n owner: Account\n rentSysvar: Address\n }\n\n # SplToken: InitializeAccount2\n type SplTokenInitializeAccount2Instruction implements TransactionInstruction {\n programId: Address\n account: Account\n mint: Account\n owner: Account\n rentSysvar: Address\n }\n\n # SplToken: InitializeAccount3\n type SplTokenInitializeAccount3Instruction implements TransactionInstruction {\n programId: Address\n account: Account\n mint: Account\n owner: Account\n }\n\n # SplToken: InitializeMultisig\n type SplTokenInitializeMultisigInstruction implements TransactionInstruction {\n programId: Address\n m: BigInt # FIXME:*\n multisig: Account\n rentSysvar: Address\n signers: [Address]\n }\n\n # SplToken: InitializeMultisig2\n type SplTokenInitializeMultisig2Instruction implements TransactionInstruction {\n programId: Address\n m: BigInt # FIXME:*\n multisig: Account\n signers: [Address]\n }\n\n # SplToken: Transfer\n type SplTokenTransferInstruction implements TransactionInstruction {\n programId: Address\n amount: String\n authority: Account\n destination: Account\n multisigAuthority: Account\n source: Account\n }\n\n # SplToken: Approve\n type SplTokenApproveInstruction implements TransactionInstruction {\n programId: Address\n amount: String\n delegate: Account\n multisigOwner: Account\n owner: Account\n source: Account\n }\n\n # SplToken: Revoke\n type SplTokenRevokeInstruction implements TransactionInstruction {\n programId: Address\n multisigOwner: Account\n owner: Account\n source: Account\n }\n\n # SplToken: SetAuthority\n type SplTokenSetAuthorityInstruction implements TransactionInstruction {\n programId: Address\n authority: Account\n authorityType: String\n multisigAuthority: Account\n newAuthority: Account\n }\n\n # SplToken: MintTo\n type SplTokenMintToInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n amount: String\n authority: Account\n mint: Account\n mintAuthority: Account\n multisigMintAuthority: Account\n }\n\n # SplToken: Burn\n type SplTokenBurnInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n amount: String\n authority: Account\n mint: Account\n multisigAuthority: Account\n }\n\n # SplToken: CloseAccount\n type SplTokenCloseAccountInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n destination: Account\n multisigOwner: Account\n owner: Account\n }\n\n # SplToken: FreezeAccount\n type SplTokenFreezeAccountInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n freezeAuthority: Account\n mint: Account\n multisigFreezeAuthority: Account\n }\n\n # SplToken: ThawAccount\n type SplTokenThawAccountInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n freezeAuthority: Account\n mint: Account\n multisigFreezeAuthority: Account\n }\n\n # SplToken: TransferChecked\n type SplTokenTransferCheckedInstruction implements TransactionInstruction {\n programId: Address\n amount: String\n authority: Account\n decimals: BigInt # FIXME:*\n destination: Account\n mint: Account\n multisigAuthority: Account\n source: Account\n tokenAmount: String\n }\n\n # SplToken: ApproveChecked\n type SplTokenApproveCheckedInstruction implements TransactionInstruction {\n programId: Address\n delegate: Account\n mint: Account\n multisigOwner: Account\n owner: Account\n source: Account\n tokenAmount: String\n }\n\n # SplToken: MintToChecked\n type SplTokenMintToCheckedInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n authority: Account\n mint: Account\n mintAuthority: Account\n multisigMintAuthority: Account\n tokenAmount: String\n }\n\n # SplToken: BurnChecked\n type SplTokenBurnCheckedInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n authority: Account\n mint: Account\n multisigAuthority: Account\n tokenAmount: String\n }\n\n # SplToken: SyncNative\n type SplTokenSyncNativeInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n }\n\n # SplToken: GetAccountDataSize\n type SplTokenGetAccountDataSizeInstruction implements TransactionInstruction {\n programId: Address\n extensionTypes: [String]\n mint: Account\n }\n\n # SplToken: InitializeImmutableOwner\n type SplTokenInitializeImmutableOwnerInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n }\n\n # SplToken: AmountToUiAmount\n type SplTokenAmountToUiAmountInstruction implements TransactionInstruction {\n programId: Address\n amount: String\n mint: Account\n }\n\n # SplToken: UiAmountToAmount\n type SplTokenUiAmountToAmountInstruction implements TransactionInstruction {\n programId: Address\n mint: Account\n uiAmount: String\n }\n\n # SplToken: InitializeMintCloseAuthority\n type SplTokenInitializeMintCloseAuthorityInstruction implements TransactionInstruction {\n programId: Address\n mint: Account\n newAuthority: Account\n }\n\n # TODO: Extensions!\n # - TransferFeeExtension\n # - ConfidentialTransferFeeExtension\n # - DefaultAccountStateExtension\n # - Reallocate\n # - MemoTransferExtension\n # - CreateNativeMint\n # - InitializeNonTransferableMint\n # - InterestBearingMintExtension\n # - CpiGuardExtension\n # - InitializePermanentDelegate\n # - TransferHookExtension\n # - ConfidentialTransferFeeExtension\n # - WithdrawExcessLamports\n # - MetadataPointerExtension\n\n type Lockup {\n custodian: Account\n epoch: BigInt\n unixTimestamp: BigInt\n }\n\n # Stake: Initialize\n type StakeInitializeInstructionDataAuthorized {\n staker: Account\n withdrawer: Account\n }\n type StakeInitializeInstruction implements TransactionInstruction {\n programId: Address\n authorized: StakeInitializeInstructionDataAuthorized\n lockup: Lockup\n rentSysvar: Address\n stakeAccount: Account\n }\n\n # Stake: Authorize\n type StakeAuthorizeInstruction implements TransactionInstruction {\n programId: Address\n authority: Account\n authorityType: String\n clockSysvar: Address\n custodian: Account\n newAuthority: Account\n stakeAccount: Account\n }\n\n # Stake: DelegateStake\n type StakeDelegateStakeInstruction implements TransactionInstruction {\n programId: Address\n clockSysvar: Address\n stakeAccount: Account\n stakeAuthority: Account\n stakeConfigAccount: Account\n stakeHistorySysvar: Address\n voteAccount: Account\n }\n\n # Stake: Split\n type StakeSplitInstruction implements TransactionInstruction {\n programId: Address\n lamports: BigInt\n newSplitAccount: Account\n stakeAccount: Account\n stakeAuthority: Account\n }\n\n # Stake: Withdraw\n type StakeWithdrawInstruction implements TransactionInstruction {\n programId: Address\n clockSysvar: Address\n destination: Account\n lamports: BigInt\n stakeAccount: Account\n withdrawAuthority: Account\n }\n\n # Stake: Deactivate\n type StakeDeactivateInstruction implements TransactionInstruction {\n programId: Address\n clockSysvar: Address\n stakeAccount: Account\n stakeAuthority: Account\n }\n\n # Stake: SetLockup\n type StakeSetLockupInstruction implements TransactionInstruction {\n programId: Address\n custodian: Account\n lockup: Lockup\n stakeAccount: Account\n }\n\n # Stake: Merge\n type StakeMergeInstruction implements TransactionInstruction {\n programId: Address\n clockSysvar: Address\n destination: Account\n source: Account\n stakeAuthority: Account\n stakeHistorySysvar: Address\n }\n\n # Stake: AuthorizeWithSeed\n type StakeAuthorizeWithSeedInstruction implements TransactionInstruction {\n programId: Address\n authorityBase: Account\n authorityOwner: Account\n authoritySeed: String\n authorityType: String\n clockSysvar: Address\n custodian: Account\n newAuthorized: Account\n stakeAccount: Account\n }\n\n # Stake: InitializeChecked\n type StakeInitializeCheckedInstructionDataAuthorized {\n staker: Account\n withdrawer: Account\n }\n type StakeInitializeCheckedInstruction implements TransactionInstruction {\n programId: Address\n authorized: StakeInitializeCheckedInstructionDataAuthorized\n lockup: Lockup\n rentSysvar: Address\n stakeAccount: Account\n }\n\n # Stake: AuthorizeChecked\n type StakeAuthorizeCheckedInstruction implements TransactionInstruction {\n programId: Address\n authority: Account\n authorityType: String\n clockSysvar: Address\n custodian: Account\n newAuthority: Account\n stakeAccount: Account\n }\n\n # Stake: AuthorizeCheckedWithSeed\n type StakeAuthorizeCheckedWithSeedInstruction implements TransactionInstruction {\n programId: Address\n authorityBase: Account\n authorityOwner: Account\n authoritySeed: String\n authorityType: String\n clockSysvar: Address\n custodian: Account\n newAuthorized: Account\n stakeAccount: Account\n }\n\n # Stake: SetLockupChecked\n type StakeSetLockupCheckedInstruction implements TransactionInstruction {\n programId: Address\n custodian: Account\n lockup: Lockup\n stakeAccount: Account\n }\n\n # Stake: DeactivateDelinquent\n type StakeDeactivateDelinquentInstruction implements TransactionInstruction {\n programId: Address\n referenceVoteAccount: Account\n stakeAccount: Account\n voteAccount: Account\n }\n\n # Stake: Redelegate\n type StakeRedelegateInstruction implements TransactionInstruction {\n programId: Address\n newStakeAccount: Account\n stakeAccount: Account\n stakeAuthority: Account\n stakeConfigAccount: Account\n voteAccount: Account\n }\n\n # System: CreateAccount\n type CreateAccountInstruction implements TransactionInstruction {\n programId: Address\n lamports: BigInt\n newAccount: Account\n owner: Account\n source: Account\n space: BigInt\n }\n\n # System: Assign\n type AssignInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n owner: Account\n }\n\n # System: Transfer\n type TransferInstruction implements TransactionInstruction {\n programId: Address\n destination: Account\n lamports: BigInt\n source: Account\n }\n\n # System: CreateAccountWithSeed\n type CreateAccountWithSeedInstruction implements TransactionInstruction {\n programId: Address\n base: Account\n lamports: BigInt\n owner: Account\n seed: String\n space: BigInt\n }\n\n # System: AdvanceNonceAccount\n type AdvanceNonceAccountInstruction implements TransactionInstruction {\n programId: Address\n nonceAccount: Account\n nonceAuthority: Account\n recentBlockhashesSysvar: Address\n }\n\n # System: WithdrawNonceAccount\n type WithdrawNonceAccountInstruction implements TransactionInstruction {\n programId: Address\n destination: Account\n lamports: BigInt\n nonceAccount: Account\n nonceAuthority: Account\n recentBlockhashesSysvar: Address\n rentSysvar: Address\n }\n\n # System: InitializeNonceAccount\n type InitializeNonceAccountInstruction implements TransactionInstruction {\n programId: Address\n nonceAccount: Account\n nonceAuthority: Account\n recentBlockhashesSysvar: Address\n rentSysvar: Address\n }\n\n # System: AuthorizeNonceAccount\n type AuthorizeNonceAccountInstruction implements TransactionInstruction {\n programId: Address\n newAuthorized: Account\n nonceAccount: Account\n nonceAuthority: Account\n }\n\n # System: UpgradeNonceAccount\n type UpgradeNonceAccountInstruction implements TransactionInstruction {\n programId: Address\n nonceAccount: Account\n nonceAuthority: Account\n }\n\n # System: Allocate\n type AllocateInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n space: BigInt\n }\n\n # System: AllocateWithSeed\n type AllocateWithSeedInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n base: Address\n owner: Account\n seed: String\n space: BigInt\n }\n\n # System: AssignWithSeed\n type AssignWithSeedInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n base: Address\n owner: Account\n seed: String\n }\n\n # System: TransferWithSeed\n type TransferWithSeedInstruction implements TransactionInstruction {\n programId: Address\n destination: Account\n lamports: BigInt\n source: Account\n sourceBase: Address\n sourceOwner: Account\n sourceSeed: String\n }\n\n # Vote: InitializeAccount\n type VoteInitializeAccountInstruction implements TransactionInstruction {\n programId: Address\n authorizedVoter: Account\n authorizedWithdrawer: Account\n clockSysvar: Address\n commission: BigInt # FIXME:*\n node: Account\n rentSysvar: Address\n voteAccount: Account\n }\n\n # Vote: Authorize\n type VoteAuthorizeInstruction implements TransactionInstruction {\n programId: Address\n authority: Account\n authorityType: String\n clockSysvar: Address\n newAuthority: Account\n voteAccount: Account\n }\n\n # Vote: AuthorizeWithSeed\n type VoteAuthorizeWithSeedInstruction implements TransactionInstruction {\n programId: Address\n authorityBaseKey: String\n authorityOwner: Account\n authoritySeed: String\n authorityType: String\n clockSysvar: Address\n newAuthority: Account\n voteAccount: Account\n }\n\n # Vote: AuthorizeCheckedWithSeed\n type VoteAuthorizeCheckedWithSeedInstruction implements TransactionInstruction {\n programId: Address\n authorityBaseKey: String\n authorityOwner: Account\n authoritySeed: String\n authorityType: String\n clockSysvar: Address\n newAuthority: Account\n voteAccount: Account\n }\n\n type Vote {\n hash: String\n slots: [BigInt]\n timestamp: BigInt\n }\n\n # Vote: Vote\n type VoteVoteInstruction implements TransactionInstruction {\n programId: Address\n clockSysvar: Address\n slotHashesSysvar: Address\n vote: Vote\n voteAccount: Account\n voteAuthority: Account\n }\n\n type VoteStateUpdateLockout {\n confirmationCount: BigInt # FIXME:*\n slot: BigInt\n }\n type VoteStateUpdate {\n hash: String\n lockouts: [VoteStateUpdateLockout]\n root: BigInt\n timestamp: BigInt\n }\n\n # Vote: UpdateVoteState\n type VoteUpdateVoteStateInstruction implements TransactionInstruction {\n programId: Address\n hash: String\n voteAccount: Account\n voteAuthority: Account\n voteStateUpdate: VoteStateUpdate\n }\n\n # Vote: UpdateVoteStateSwitch\n type VoteUpdateVoteStateSwitchInstruction implements TransactionInstruction {\n programId: Address\n hash: String\n voteAccount: Account\n voteAuthority: Account\n voteStateUpdate: VoteStateUpdate\n }\n\n # Vote: CompactUpdateVoteState\n type VoteCompactUpdateVoteStateInstruction implements TransactionInstruction {\n programId: Address\n hash: String\n voteAccount: Account\n voteAuthority: Account\n voteStateUpdate: VoteStateUpdate\n }\n\n # Vote: CompactUpdateVoteStateSwitch\n type VoteCompactUpdateVoteStateSwitchInstruction implements TransactionInstruction {\n programId: Address\n hash: String\n voteAccount: Account\n voteAuthority: Account\n voteStateUpdate: VoteStateUpdate\n }\n\n # Vote: Withdraw\n type VoteWithdrawInstruction implements TransactionInstruction {\n programId: Address\n destination: Account\n lamports: BigInt\n voteAccount: Account\n withdrawAuthority: Account\n }\n\n # Vote: UpdateValidatorIdentity\n type VoteUpdateValidatorIdentityInstruction implements TransactionInstruction {\n programId: Address\n newValidatorIdentity: Account\n voteAccount: Account\n withdrawAuthority: Account\n }\n\n # Vote: UpdateCommission\n type VoteUpdateCommissionInstruction implements TransactionInstruction {\n programId: Address\n commission: BigInt # FIXME:*\n voteAccount: Account\n withdrawAuthority: Account\n }\n\n # Vote: VoteSwitch\n type VoteVoteSwitchInstruction implements TransactionInstruction {\n programId: Address\n clockSysvar: Address\n hash: String\n slotHashesSysvar: Address\n vote: Vote\n voteAccount: Account\n voteAuthority: Account\n }\n\n # Vote: AuthorizeChecked\n type VoteAuthorizeCheckedInstruction implements TransactionInstruction {\n programId: Address\n authority: Account\n authorityType: String\n clockSysvar: Address\n newAuthority: Account\n voteAccount: Account\n }\n";
|
|
2
|
-
export declare const instructionResolvers: {
|
|
3
|
-
TransactionInstruction: {
|
|
4
|
-
__resolveType(instruction: {
|
|
5
|
-
programName: string;
|
|
6
|
-
instructionType: string;
|
|
7
|
-
}): "CreateLookupTableInstruction" | "FreezeLookupTableInstruction" | "ExtendLookupTableInstruction" | "DeactivateLookupTableInstruction" | "CloseLookupTableInstruction" | "BpfLoaderWriteInstruction" | "BpfLoaderFinalizeInstruction" | "BpfUpgradeableLoaderInitializeBufferInstruction" | "BpfUpgradeableLoaderWriteInstruction" | "BpfUpgradeableLoaderDeployWithMaxDataLenInstruction" | "BpfUpgradeableLoaderUpgradeInstruction" | "BpfUpgradeableLoaderSetAuthorityInstruction" | "BpfUpgradeableLoaderSetAuthorityCheckedInstruction" | "BpfUpgradeableLoaderCloseInstruction" | "BpfUpgradeableLoaderExtendProgramInstruction" | "SplAssociatedTokenCreateInstruction" | "SplAssociatedTokenCreateIdempotentInstruction" | "SplAssociatedTokenRecoverNestedInstruction" | "SplMemoInstruction" | "SplTokenInitializeMintInstruction" | "SplTokenInitializeMint2Instruction" | "SplTokenInitializeAccountInstruction" | "SplTokenInitializeAccount2Instruction" | "SplTokenInitializeAccount3Instruction" | "SplTokenInitializeMultisigInstruction" | "SplTokenInitializeMultisig2Instruction" | "SplTokenTransferInstruction" | "SplTokenApproveInstruction" | "SplTokenRevokeInstruction" | "SplTokenSetAuthorityInstruction" | "SplTokenMintToInstruction" | "SplTokenBurnInstruction" | "SplTokenCloseAccountInstruction" | "SplTokenFreezeAccountInstruction" | "SplTokenThawAccountInstruction" | "SplTokenTransferCheckedInstruction" | "SplTokenApproveCheckedInstruction" | "SplTokenMintToCheckedInstruction" | "SplTokenBurnCheckedInstruction" | "SplTokenSyncNativeInstruction" | "SplTokenGetAccountDataSizeInstruction" | "SplTokenInitializeImmutableOwnerInstruction" | "SplTokenAmountToUiAmountInstruction" | "SplTokenUiAmountToAmountInstruction" | "SplTokenInitializeMintCloseAuthorityInstruction" | "StakeInitializeInstruction" | "StakeAuthorizeInstruction" | "StakeDelegateStakeInstruction" | "StakeSplitInstruction" | "StakeWithdrawInstruction" | "StakeDeactivateInstruction" | "StakeSetLockupInstruction" | "StakeMergeInstruction" | "StakeAuthorizeWithSeedInstruction" | "StakeInitializeCheckedInstruction" | "StakeAuthorizeCheckedInstruction" | "StakeAuthorizeCheckedWithSeedInstruction" | "StakeSetLockupCheckedInstruction" | "StakeDeactivateDelinquentInstruction" | "StakeRedelegateInstruction" | "CreateAccountInstruction" | "AssignInstruction" | "TransferInstruction" | "CreateAccountWithSeedInstruction" | "AdvanceNonceAccountInstruction" | "WithdrawNonceAccountInstruction" | "InitializeNonceAccountInstruction" | "AuthorizeNonceAccountInstruction" | "UpgradeNonceAccountInstruction" | "AllocateInstruction" | "AllocateWithSeedInstruction" | "AssignWithSeedInstruction" | "TransferWithSeedInstruction" | "VoteInitializeAccountInstruction" | "VoteAuthorizeInstruction" | "VoteAuthorizeWithSeedInstruction" | "VoteAuthorizeCheckedWithSeedInstruction" | "VoteVoteInstruction" | "VoteUpdateVoteStateInstruction" | "VoteUpdateVoteStateSwitchInstruction" | "VoteCompactUpdateVoteStateInstruction" | "VoteCompactUpdateVoteStateSwitchInstruction" | "VoteWithdrawInstruction" | "VoteUpdateValidatorIdentityInstruction" | "VoteUpdateCommissionInstruction" | "VoteVoteSwitchInstruction" | "VoteAuthorizeCheckedInstruction" | "GenericInstruction";
|
|
8
|
-
};
|
|
9
|
-
CreateLookupTableInstruction: {
|
|
10
|
-
lookupTableAccount: (parent: {
|
|
11
|
-
[x: string]: import("@solana/addresses").Address;
|
|
12
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
13
|
-
lookupTableAuthority: (parent: {
|
|
14
|
-
[x: string]: import("@solana/addresses").Address;
|
|
15
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
16
|
-
payerAccount: (parent: {
|
|
17
|
-
[x: string]: import("@solana/addresses").Address;
|
|
18
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
19
|
-
systemProgram: (parent: {
|
|
20
|
-
[x: string]: import("@solana/addresses").Address;
|
|
21
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
22
|
-
};
|
|
23
|
-
ExtendLookupTableInstruction: {
|
|
24
|
-
lookupTableAccount: (parent: {
|
|
25
|
-
[x: string]: import("@solana/addresses").Address;
|
|
26
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
27
|
-
lookupTableAuthority: (parent: {
|
|
28
|
-
[x: string]: import("@solana/addresses").Address;
|
|
29
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
30
|
-
payerAccount: (parent: {
|
|
31
|
-
[x: string]: import("@solana/addresses").Address;
|
|
32
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
33
|
-
systemProgram: (parent: {
|
|
34
|
-
[x: string]: import("@solana/addresses").Address;
|
|
35
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
36
|
-
};
|
|
37
|
-
FreezeLookupTableInstruction: {
|
|
38
|
-
lookupTableAccount: (parent: {
|
|
39
|
-
[x: string]: import("@solana/addresses").Address;
|
|
40
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
41
|
-
lookupTableAuthority: (parent: {
|
|
42
|
-
[x: string]: import("@solana/addresses").Address;
|
|
43
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
44
|
-
};
|
|
45
|
-
DeactivateLookupTableInstruction: {
|
|
46
|
-
lookupTableAccount: (parent: {
|
|
47
|
-
[x: string]: import("@solana/addresses").Address;
|
|
48
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
49
|
-
lookupTableAuthority: (parent: {
|
|
50
|
-
[x: string]: import("@solana/addresses").Address;
|
|
51
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
52
|
-
};
|
|
53
|
-
CloseLookupTableInstruction: {
|
|
54
|
-
lookupTableAccount: (parent: {
|
|
55
|
-
[x: string]: import("@solana/addresses").Address;
|
|
56
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
57
|
-
lookupTableAuthority: (parent: {
|
|
58
|
-
[x: string]: import("@solana/addresses").Address;
|
|
59
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
60
|
-
recipient: (parent: {
|
|
61
|
-
[x: string]: import("@solana/addresses").Address;
|
|
62
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
63
|
-
};
|
|
64
|
-
BpfLoaderWriteInstruction: {
|
|
65
|
-
account: (parent: {
|
|
66
|
-
[x: string]: import("@solana/addresses").Address;
|
|
67
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
68
|
-
};
|
|
69
|
-
BpfLoaderFinalizeInstruction: {
|
|
70
|
-
account: (parent: {
|
|
71
|
-
[x: string]: import("@solana/addresses").Address;
|
|
72
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
73
|
-
};
|
|
74
|
-
BpfUpgradeableLoaderInitializeBufferInstruction: {
|
|
75
|
-
account: (parent: {
|
|
76
|
-
[x: string]: import("@solana/addresses").Address;
|
|
77
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
78
|
-
};
|
|
79
|
-
BpfUpgradeableLoaderWriteInstruction: {
|
|
80
|
-
account: (parent: {
|
|
81
|
-
[x: string]: import("@solana/addresses").Address;
|
|
82
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
83
|
-
authority: (parent: {
|
|
84
|
-
[x: string]: import("@solana/addresses").Address;
|
|
85
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
86
|
-
};
|
|
87
|
-
BpfUpgradeableLoaderDeployWithMaxDataLenInstruction: {
|
|
88
|
-
authority: (parent: {
|
|
89
|
-
[x: string]: import("@solana/addresses").Address;
|
|
90
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
91
|
-
bufferAccount: (parent: {
|
|
92
|
-
[x: string]: import("@solana/addresses").Address;
|
|
93
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
94
|
-
payerAccount: (parent: {
|
|
95
|
-
[x: string]: import("@solana/addresses").Address;
|
|
96
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
97
|
-
programAccount: (parent: {
|
|
98
|
-
[x: string]: import("@solana/addresses").Address;
|
|
99
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
100
|
-
programDataAccount: (parent: {
|
|
101
|
-
[x: string]: import("@solana/addresses").Address;
|
|
102
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
103
|
-
};
|
|
104
|
-
BpfUpgradeableLoaderUpgradeInstruction: {
|
|
105
|
-
authority: (parent: {
|
|
106
|
-
[x: string]: import("@solana/addresses").Address;
|
|
107
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
108
|
-
bufferAccount: (parent: {
|
|
109
|
-
[x: string]: import("@solana/addresses").Address;
|
|
110
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
111
|
-
programAccount: (parent: {
|
|
112
|
-
[x: string]: import("@solana/addresses").Address;
|
|
113
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
114
|
-
programDataAccount: (parent: {
|
|
115
|
-
[x: string]: import("@solana/addresses").Address;
|
|
116
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
117
|
-
};
|
|
118
|
-
BpfUpgradeableLoaderSetAuthorityInstruction: {
|
|
119
|
-
account: (parent: {
|
|
120
|
-
[x: string]: import("@solana/addresses").Address;
|
|
121
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
122
|
-
authority: (parent: {
|
|
123
|
-
[x: string]: import("@solana/addresses").Address;
|
|
124
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
125
|
-
newAuthority: (parent: {
|
|
126
|
-
[x: string]: import("@solana/addresses").Address;
|
|
127
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
128
|
-
};
|
|
129
|
-
BpfUpgradeableLoaderSetAuthorityCheckedInstruction: {
|
|
130
|
-
account: (parent: {
|
|
131
|
-
[x: string]: import("@solana/addresses").Address;
|
|
132
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
133
|
-
authority: (parent: {
|
|
134
|
-
[x: string]: import("@solana/addresses").Address;
|
|
135
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
136
|
-
newAuthority: (parent: {
|
|
137
|
-
[x: string]: import("@solana/addresses").Address;
|
|
138
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
139
|
-
};
|
|
140
|
-
BpfUpgradeableLoaderCloseInstruction: {
|
|
141
|
-
account: (parent: {
|
|
142
|
-
[x: string]: import("@solana/addresses").Address;
|
|
143
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
144
|
-
authority: (parent: {
|
|
145
|
-
[x: string]: import("@solana/addresses").Address;
|
|
146
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
147
|
-
programAccount: (parent: {
|
|
148
|
-
[x: string]: import("@solana/addresses").Address;
|
|
149
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
150
|
-
recipient: (parent: {
|
|
151
|
-
[x: string]: import("@solana/addresses").Address;
|
|
152
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
153
|
-
};
|
|
154
|
-
BpfUpgradeableLoaderExtendProgramInstruction: {
|
|
155
|
-
payerAccount: (parent: {
|
|
156
|
-
[x: string]: import("@solana/addresses").Address;
|
|
157
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
158
|
-
programAccount: (parent: {
|
|
159
|
-
[x: string]: import("@solana/addresses").Address;
|
|
160
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
161
|
-
programDataAccount: (parent: {
|
|
162
|
-
[x: string]: import("@solana/addresses").Address;
|
|
163
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
164
|
-
systemProgram: (parent: {
|
|
165
|
-
[x: string]: import("@solana/addresses").Address;
|
|
166
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
167
|
-
};
|
|
168
|
-
SplAssociatedTokenCreateInstruction: {
|
|
169
|
-
account: (parent: {
|
|
170
|
-
[x: string]: import("@solana/addresses").Address;
|
|
171
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
172
|
-
mint: (parent: {
|
|
173
|
-
[x: string]: import("@solana/addresses").Address;
|
|
174
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
175
|
-
source: (parent: {
|
|
176
|
-
[x: string]: import("@solana/addresses").Address;
|
|
177
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
178
|
-
systemProgram: (parent: {
|
|
179
|
-
[x: string]: import("@solana/addresses").Address;
|
|
180
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
181
|
-
tokenProgram: (parent: {
|
|
182
|
-
[x: string]: import("@solana/addresses").Address;
|
|
183
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
184
|
-
wallet: (parent: {
|
|
185
|
-
[x: string]: import("@solana/addresses").Address;
|
|
186
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
187
|
-
};
|
|
188
|
-
SplAssociatedTokenCreateIdempotentInstruction: {
|
|
189
|
-
account: (parent: {
|
|
190
|
-
[x: string]: import("@solana/addresses").Address;
|
|
191
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
192
|
-
mint: (parent: {
|
|
193
|
-
[x: string]: import("@solana/addresses").Address;
|
|
194
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
195
|
-
source: (parent: {
|
|
196
|
-
[x: string]: import("@solana/addresses").Address;
|
|
197
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
198
|
-
systemProgram: (parent: {
|
|
199
|
-
[x: string]: import("@solana/addresses").Address;
|
|
200
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
201
|
-
tokenProgram: (parent: {
|
|
202
|
-
[x: string]: import("@solana/addresses").Address;
|
|
203
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
204
|
-
wallet: (parent: {
|
|
205
|
-
[x: string]: import("@solana/addresses").Address;
|
|
206
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
207
|
-
};
|
|
208
|
-
SplAssociatedTokenRecoverNestedInstruction: {
|
|
209
|
-
destination: (parent: {
|
|
210
|
-
[x: string]: import("@solana/addresses").Address;
|
|
211
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
212
|
-
nestedMint: (parent: {
|
|
213
|
-
[x: string]: import("@solana/addresses").Address;
|
|
214
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
215
|
-
nestedOwner: (parent: {
|
|
216
|
-
[x: string]: import("@solana/addresses").Address;
|
|
217
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
218
|
-
nestedSource: (parent: {
|
|
219
|
-
[x: string]: import("@solana/addresses").Address;
|
|
220
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
221
|
-
ownerMint: (parent: {
|
|
222
|
-
[x: string]: import("@solana/addresses").Address;
|
|
223
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
224
|
-
tokenProgram: (parent: {
|
|
225
|
-
[x: string]: import("@solana/addresses").Address;
|
|
226
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
227
|
-
wallet: (parent: {
|
|
228
|
-
[x: string]: import("@solana/addresses").Address;
|
|
229
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
230
|
-
};
|
|
231
|
-
SplTokenInitializeMintInstruction: {
|
|
232
|
-
freezeAuthority: (parent: {
|
|
233
|
-
[x: string]: import("@solana/addresses").Address;
|
|
234
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
235
|
-
mint: (parent: {
|
|
236
|
-
[x: string]: import("@solana/addresses").Address;
|
|
237
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
238
|
-
mintAuthority: (parent: {
|
|
239
|
-
[x: string]: import("@solana/addresses").Address;
|
|
240
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
241
|
-
};
|
|
242
|
-
SplTokenInitializeMint2Instruction: {
|
|
243
|
-
freezeAuthority: (parent: {
|
|
244
|
-
[x: string]: import("@solana/addresses").Address;
|
|
245
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
246
|
-
mint: (parent: {
|
|
247
|
-
[x: string]: import("@solana/addresses").Address;
|
|
248
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
249
|
-
mintAuthority: (parent: {
|
|
250
|
-
[x: string]: import("@solana/addresses").Address;
|
|
251
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
252
|
-
};
|
|
253
|
-
SplTokenInitializeAccountInstruction: {
|
|
254
|
-
account: (parent: {
|
|
255
|
-
[x: string]: import("@solana/addresses").Address;
|
|
256
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
257
|
-
mint: (parent: {
|
|
258
|
-
[x: string]: import("@solana/addresses").Address;
|
|
259
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
260
|
-
owner: (parent: {
|
|
261
|
-
[x: string]: import("@solana/addresses").Address;
|
|
262
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
263
|
-
};
|
|
264
|
-
SplTokenInitializeAccount2Instruction: {
|
|
265
|
-
account: (parent: {
|
|
266
|
-
[x: string]: import("@solana/addresses").Address;
|
|
267
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
268
|
-
mint: (parent: {
|
|
269
|
-
[x: string]: import("@solana/addresses").Address;
|
|
270
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
271
|
-
owner: (parent: {
|
|
272
|
-
[x: string]: import("@solana/addresses").Address;
|
|
273
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
274
|
-
};
|
|
275
|
-
SplTokenInitializeAccount3Instruction: {
|
|
276
|
-
account: (parent: {
|
|
277
|
-
[x: string]: import("@solana/addresses").Address;
|
|
278
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
279
|
-
mint: (parent: {
|
|
280
|
-
[x: string]: import("@solana/addresses").Address;
|
|
281
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
282
|
-
owner: (parent: {
|
|
283
|
-
[x: string]: import("@solana/addresses").Address;
|
|
284
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
285
|
-
};
|
|
286
|
-
SplTokenInitializeMultisigInstruction: {
|
|
287
|
-
multisig: (parent: {
|
|
288
|
-
[x: string]: import("@solana/addresses").Address;
|
|
289
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
290
|
-
};
|
|
291
|
-
SplTokenInitializeMultisig2Instruction: {
|
|
292
|
-
multisig: (parent: {
|
|
293
|
-
[x: string]: import("@solana/addresses").Address;
|
|
294
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
295
|
-
};
|
|
296
|
-
SplTokenTransferInstruction: {
|
|
297
|
-
authority: (parent: {
|
|
298
|
-
[x: string]: import("@solana/addresses").Address;
|
|
299
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
300
|
-
destination: (parent: {
|
|
301
|
-
[x: string]: import("@solana/addresses").Address;
|
|
302
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
303
|
-
multisigAuthority: (parent: {
|
|
304
|
-
[x: string]: import("@solana/addresses").Address;
|
|
305
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
306
|
-
source: (parent: {
|
|
307
|
-
[x: string]: import("@solana/addresses").Address;
|
|
308
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
309
|
-
};
|
|
310
|
-
SplTokenApproveInstruction: {
|
|
311
|
-
delegate: (parent: {
|
|
312
|
-
[x: string]: import("@solana/addresses").Address;
|
|
313
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
314
|
-
multisigOwner: (parent: {
|
|
315
|
-
[x: string]: import("@solana/addresses").Address;
|
|
316
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
317
|
-
owner: (parent: {
|
|
318
|
-
[x: string]: import("@solana/addresses").Address;
|
|
319
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
320
|
-
source: (parent: {
|
|
321
|
-
[x: string]: import("@solana/addresses").Address;
|
|
322
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
323
|
-
};
|
|
324
|
-
SplTokenRevokeInstruction: {
|
|
325
|
-
multisigOwner: (parent: {
|
|
326
|
-
[x: string]: import("@solana/addresses").Address;
|
|
327
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
328
|
-
owner: (parent: {
|
|
329
|
-
[x: string]: import("@solana/addresses").Address;
|
|
330
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
331
|
-
source: (parent: {
|
|
332
|
-
[x: string]: import("@solana/addresses").Address;
|
|
333
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
334
|
-
};
|
|
335
|
-
SplTokenSetAuthorityInstruction: {
|
|
336
|
-
authority: (parent: {
|
|
337
|
-
[x: string]: import("@solana/addresses").Address;
|
|
338
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
339
|
-
multisigAuthority: (parent: {
|
|
340
|
-
[x: string]: import("@solana/addresses").Address;
|
|
341
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
342
|
-
newAuthority: (parent: {
|
|
343
|
-
[x: string]: import("@solana/addresses").Address;
|
|
344
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
345
|
-
};
|
|
346
|
-
SplTokenMintToInstruction: {
|
|
347
|
-
account: (parent: {
|
|
348
|
-
[x: string]: import("@solana/addresses").Address;
|
|
349
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
350
|
-
authority: (parent: {
|
|
351
|
-
[x: string]: import("@solana/addresses").Address;
|
|
352
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
353
|
-
mint: (parent: {
|
|
354
|
-
[x: string]: import("@solana/addresses").Address;
|
|
355
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
356
|
-
mintAuthority: (parent: {
|
|
357
|
-
[x: string]: import("@solana/addresses").Address;
|
|
358
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
359
|
-
multisigMintAuthority: (parent: {
|
|
360
|
-
[x: string]: import("@solana/addresses").Address;
|
|
361
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
362
|
-
};
|
|
363
|
-
SplTokenBurnInstruction: {
|
|
364
|
-
account: (parent: {
|
|
365
|
-
[x: string]: import("@solana/addresses").Address;
|
|
366
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
367
|
-
authority: (parent: {
|
|
368
|
-
[x: string]: import("@solana/addresses").Address;
|
|
369
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
370
|
-
mint: (parent: {
|
|
371
|
-
[x: string]: import("@solana/addresses").Address;
|
|
372
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
373
|
-
multisigAuthority: (parent: {
|
|
374
|
-
[x: string]: import("@solana/addresses").Address;
|
|
375
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
376
|
-
};
|
|
377
|
-
SplTokenCloseAccountInstruction: {
|
|
378
|
-
account: (parent: {
|
|
379
|
-
[x: string]: import("@solana/addresses").Address;
|
|
380
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
381
|
-
destination: (parent: {
|
|
382
|
-
[x: string]: import("@solana/addresses").Address;
|
|
383
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
384
|
-
multisigOwner: (parent: {
|
|
385
|
-
[x: string]: import("@solana/addresses").Address;
|
|
386
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
387
|
-
owner: (parent: {
|
|
388
|
-
[x: string]: import("@solana/addresses").Address;
|
|
389
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
390
|
-
};
|
|
391
|
-
SplTokenFreezeAccountInstruction: {
|
|
392
|
-
account: (parent: {
|
|
393
|
-
[x: string]: import("@solana/addresses").Address;
|
|
394
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
395
|
-
freezeAuthority: (parent: {
|
|
396
|
-
[x: string]: import("@solana/addresses").Address;
|
|
397
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
398
|
-
mint: (parent: {
|
|
399
|
-
[x: string]: import("@solana/addresses").Address;
|
|
400
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
401
|
-
multisigFreezeAuthority: (parent: {
|
|
402
|
-
[x: string]: import("@solana/addresses").Address;
|
|
403
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
404
|
-
};
|
|
405
|
-
SplTokenThawAccountInstruction: {
|
|
406
|
-
account: (parent: {
|
|
407
|
-
[x: string]: import("@solana/addresses").Address;
|
|
408
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
409
|
-
freezeAuthority: (parent: {
|
|
410
|
-
[x: string]: import("@solana/addresses").Address;
|
|
411
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
412
|
-
mint: (parent: {
|
|
413
|
-
[x: string]: import("@solana/addresses").Address;
|
|
414
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
415
|
-
multisigFreezeAuthority: (parent: {
|
|
416
|
-
[x: string]: import("@solana/addresses").Address;
|
|
417
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
418
|
-
};
|
|
419
|
-
SplTokenTransferCheckedInstruction: {
|
|
420
|
-
authority: (parent: {
|
|
421
|
-
[x: string]: import("@solana/addresses").Address;
|
|
422
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
423
|
-
destination: (parent: {
|
|
424
|
-
[x: string]: import("@solana/addresses").Address;
|
|
425
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
426
|
-
mint: (parent: {
|
|
427
|
-
[x: string]: import("@solana/addresses").Address;
|
|
428
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
429
|
-
multisigAuthority: (parent: {
|
|
430
|
-
[x: string]: import("@solana/addresses").Address;
|
|
431
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
432
|
-
source: (parent: {
|
|
433
|
-
[x: string]: import("@solana/addresses").Address;
|
|
434
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
435
|
-
};
|
|
436
|
-
SplTokenApproveCheckedInstruction: {
|
|
437
|
-
delegate: (parent: {
|
|
438
|
-
[x: string]: import("@solana/addresses").Address;
|
|
439
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
440
|
-
mint: (parent: {
|
|
441
|
-
[x: string]: import("@solana/addresses").Address;
|
|
442
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
443
|
-
multisigOwner: (parent: {
|
|
444
|
-
[x: string]: import("@solana/addresses").Address;
|
|
445
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
446
|
-
owner: (parent: {
|
|
447
|
-
[x: string]: import("@solana/addresses").Address;
|
|
448
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
449
|
-
source: (parent: {
|
|
450
|
-
[x: string]: import("@solana/addresses").Address;
|
|
451
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
452
|
-
};
|
|
453
|
-
SplTokenMintToCheckedInstruction: {
|
|
454
|
-
account: (parent: {
|
|
455
|
-
[x: string]: import("@solana/addresses").Address;
|
|
456
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
457
|
-
authority: (parent: {
|
|
458
|
-
[x: string]: import("@solana/addresses").Address;
|
|
459
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
460
|
-
mint: (parent: {
|
|
461
|
-
[x: string]: import("@solana/addresses").Address;
|
|
462
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
463
|
-
mintAuthority: (parent: {
|
|
464
|
-
[x: string]: import("@solana/addresses").Address;
|
|
465
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
466
|
-
multisigMintAuthority: (parent: {
|
|
467
|
-
[x: string]: import("@solana/addresses").Address;
|
|
468
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
469
|
-
};
|
|
470
|
-
SplTokenBurnCheckedInstruction: {
|
|
471
|
-
account: (parent: {
|
|
472
|
-
[x: string]: import("@solana/addresses").Address;
|
|
473
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
474
|
-
authority: (parent: {
|
|
475
|
-
[x: string]: import("@solana/addresses").Address;
|
|
476
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
477
|
-
mint: (parent: {
|
|
478
|
-
[x: string]: import("@solana/addresses").Address;
|
|
479
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
480
|
-
multisigAuthority: (parent: {
|
|
481
|
-
[x: string]: import("@solana/addresses").Address;
|
|
482
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
483
|
-
};
|
|
484
|
-
SplTokenSyncNativeInstruction: {
|
|
485
|
-
account: (parent: {
|
|
486
|
-
[x: string]: import("@solana/addresses").Address;
|
|
487
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
488
|
-
};
|
|
489
|
-
SplTokenGetAccountDataSizeInstruction: {
|
|
490
|
-
mint: (parent: {
|
|
491
|
-
[x: string]: import("@solana/addresses").Address;
|
|
492
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
493
|
-
};
|
|
494
|
-
SplTokenAmountToUiAmountInstruction: {
|
|
495
|
-
mint: (parent: {
|
|
496
|
-
[x: string]: import("@solana/addresses").Address;
|
|
497
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
498
|
-
};
|
|
499
|
-
SplTokenUiAmountToAmountInstruction: {
|
|
500
|
-
mint: (parent: {
|
|
501
|
-
[x: string]: import("@solana/addresses").Address;
|
|
502
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
503
|
-
};
|
|
504
|
-
SplTokenInitializeMintCloseAuthorityInstruction: {
|
|
505
|
-
mint: (parent: {
|
|
506
|
-
[x: string]: import("@solana/addresses").Address;
|
|
507
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
508
|
-
newAuthority: (parent: {
|
|
509
|
-
[x: string]: import("@solana/addresses").Address;
|
|
510
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
511
|
-
};
|
|
512
|
-
Lockup: {
|
|
513
|
-
custodian: (parent: {
|
|
514
|
-
[x: string]: import("@solana/addresses").Address;
|
|
515
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
516
|
-
};
|
|
517
|
-
StakeInitializeInstructionDataAuthorized: {
|
|
518
|
-
staker: (parent: {
|
|
519
|
-
[x: string]: import("@solana/addresses").Address;
|
|
520
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
521
|
-
withdrawer: (parent: {
|
|
522
|
-
[x: string]: import("@solana/addresses").Address;
|
|
523
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
524
|
-
};
|
|
525
|
-
StakeInitializeInstruction: {
|
|
526
|
-
stakeAccount: (parent: {
|
|
527
|
-
[x: string]: import("@solana/addresses").Address;
|
|
528
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
529
|
-
};
|
|
530
|
-
StakeAuthorizeInstruction: {
|
|
531
|
-
authority: (parent: {
|
|
532
|
-
[x: string]: import("@solana/addresses").Address;
|
|
533
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
534
|
-
custodian: (parent: {
|
|
535
|
-
[x: string]: import("@solana/addresses").Address;
|
|
536
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
537
|
-
newAuthority: (parent: {
|
|
538
|
-
[x: string]: import("@solana/addresses").Address;
|
|
539
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
540
|
-
stakeAccount: (parent: {
|
|
541
|
-
[x: string]: import("@solana/addresses").Address;
|
|
542
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
543
|
-
};
|
|
544
|
-
StakeDelegateStakeInstruction: {
|
|
545
|
-
stakeAccount: (parent: {
|
|
546
|
-
[x: string]: import("@solana/addresses").Address;
|
|
547
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
548
|
-
stakeAuthority: (parent: {
|
|
549
|
-
[x: string]: import("@solana/addresses").Address;
|
|
550
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
551
|
-
stakeConfigAccount: (parent: {
|
|
552
|
-
[x: string]: import("@solana/addresses").Address;
|
|
553
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
554
|
-
voteAccount: (parent: {
|
|
555
|
-
[x: string]: import("@solana/addresses").Address;
|
|
556
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
557
|
-
};
|
|
558
|
-
StakeSplitInstruction: {
|
|
559
|
-
newSplitAccount: (parent: {
|
|
560
|
-
[x: string]: import("@solana/addresses").Address;
|
|
561
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
562
|
-
stakeAccount: (parent: {
|
|
563
|
-
[x: string]: import("@solana/addresses").Address;
|
|
564
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
565
|
-
stakeAuthority: (parent: {
|
|
566
|
-
[x: string]: import("@solana/addresses").Address;
|
|
567
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
568
|
-
};
|
|
569
|
-
StakeWithdrawInstruction: {
|
|
570
|
-
destination: (parent: {
|
|
571
|
-
[x: string]: import("@solana/addresses").Address;
|
|
572
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
573
|
-
stakeAccount: (parent: {
|
|
574
|
-
[x: string]: import("@solana/addresses").Address;
|
|
575
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
576
|
-
withdrawAuthority: (parent: {
|
|
577
|
-
[x: string]: import("@solana/addresses").Address;
|
|
578
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
579
|
-
};
|
|
580
|
-
StakeDeactivateInstruction: {
|
|
581
|
-
stakeAccount: (parent: {
|
|
582
|
-
[x: string]: import("@solana/addresses").Address;
|
|
583
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
584
|
-
stakeAuthority: (parent: {
|
|
585
|
-
[x: string]: import("@solana/addresses").Address;
|
|
586
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
587
|
-
};
|
|
588
|
-
StakeSetLockupInstruction: {
|
|
589
|
-
custodian: (parent: {
|
|
590
|
-
[x: string]: import("@solana/addresses").Address;
|
|
591
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
592
|
-
stakeAccount: (parent: {
|
|
593
|
-
[x: string]: import("@solana/addresses").Address;
|
|
594
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
595
|
-
};
|
|
596
|
-
StakeMergeInstruction: {
|
|
597
|
-
destination: (parent: {
|
|
598
|
-
[x: string]: import("@solana/addresses").Address;
|
|
599
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
600
|
-
source: (parent: {
|
|
601
|
-
[x: string]: import("@solana/addresses").Address;
|
|
602
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
603
|
-
stakeAuthority: (parent: {
|
|
604
|
-
[x: string]: import("@solana/addresses").Address;
|
|
605
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
606
|
-
};
|
|
607
|
-
StakeAuthorizeWithSeedInstruction: {
|
|
608
|
-
authorityBase: (parent: {
|
|
609
|
-
[x: string]: import("@solana/addresses").Address;
|
|
610
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
611
|
-
authorityOwner: (parent: {
|
|
612
|
-
[x: string]: import("@solana/addresses").Address;
|
|
613
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
614
|
-
custodian: (parent: {
|
|
615
|
-
[x: string]: import("@solana/addresses").Address;
|
|
616
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
617
|
-
newAuthorized: (parent: {
|
|
618
|
-
[x: string]: import("@solana/addresses").Address;
|
|
619
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
620
|
-
stakeAccount: (parent: {
|
|
621
|
-
[x: string]: import("@solana/addresses").Address;
|
|
622
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
623
|
-
};
|
|
624
|
-
StakeInitializeCheckedInstructionDataAuthorized: {
|
|
625
|
-
staker: (parent: {
|
|
626
|
-
[x: string]: import("@solana/addresses").Address;
|
|
627
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
628
|
-
withdrawer: (parent: {
|
|
629
|
-
[x: string]: import("@solana/addresses").Address;
|
|
630
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
631
|
-
};
|
|
632
|
-
StakeAuthorizeCheckedInstruction: {
|
|
633
|
-
authority: (parent: {
|
|
634
|
-
[x: string]: import("@solana/addresses").Address;
|
|
635
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
636
|
-
custodian: (parent: {
|
|
637
|
-
[x: string]: import("@solana/addresses").Address;
|
|
638
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
639
|
-
newAuthority: (parent: {
|
|
640
|
-
[x: string]: import("@solana/addresses").Address;
|
|
641
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
642
|
-
stakeAccount: (parent: {
|
|
643
|
-
[x: string]: import("@solana/addresses").Address;
|
|
644
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
645
|
-
};
|
|
646
|
-
StakeAuthorizeCheckedWithSeedInstruction: {
|
|
647
|
-
authorityBase: (parent: {
|
|
648
|
-
[x: string]: import("@solana/addresses").Address;
|
|
649
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
650
|
-
authorityOwner: (parent: {
|
|
651
|
-
[x: string]: import("@solana/addresses").Address;
|
|
652
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
653
|
-
custodian: (parent: {
|
|
654
|
-
[x: string]: import("@solana/addresses").Address;
|
|
655
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
656
|
-
newAuthorized: (parent: {
|
|
657
|
-
[x: string]: import("@solana/addresses").Address;
|
|
658
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
659
|
-
stakeAccount: (parent: {
|
|
660
|
-
[x: string]: import("@solana/addresses").Address;
|
|
661
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
662
|
-
};
|
|
663
|
-
StakeSetLockupCheckedInstruction: {
|
|
664
|
-
custodian: (parent: {
|
|
665
|
-
[x: string]: import("@solana/addresses").Address;
|
|
666
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
667
|
-
stakeAccount: (parent: {
|
|
668
|
-
[x: string]: import("@solana/addresses").Address;
|
|
669
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
670
|
-
};
|
|
671
|
-
StakeDeactivateDelinquentInstruction: {
|
|
672
|
-
referenceVoteAccount: (parent: {
|
|
673
|
-
[x: string]: import("@solana/addresses").Address;
|
|
674
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
675
|
-
stakeAccount: (parent: {
|
|
676
|
-
[x: string]: import("@solana/addresses").Address;
|
|
677
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
678
|
-
voteAccount: (parent: {
|
|
679
|
-
[x: string]: import("@solana/addresses").Address;
|
|
680
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
681
|
-
};
|
|
682
|
-
StakeRedelegateInstruction: {
|
|
683
|
-
newStakeAccount: (parent: {
|
|
684
|
-
[x: string]: import("@solana/addresses").Address;
|
|
685
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
686
|
-
stakeAccount: (parent: {
|
|
687
|
-
[x: string]: import("@solana/addresses").Address;
|
|
688
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
689
|
-
stakeAuthority: (parent: {
|
|
690
|
-
[x: string]: import("@solana/addresses").Address;
|
|
691
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
692
|
-
stakeConfigAccount: (parent: {
|
|
693
|
-
[x: string]: import("@solana/addresses").Address;
|
|
694
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
695
|
-
voteAccount: (parent: {
|
|
696
|
-
[x: string]: import("@solana/addresses").Address;
|
|
697
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
698
|
-
};
|
|
699
|
-
CreateAccountInstruction: {
|
|
700
|
-
newAccount: (parent: {
|
|
701
|
-
[x: string]: import("@solana/addresses").Address;
|
|
702
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
703
|
-
owner: (parent: {
|
|
704
|
-
[x: string]: import("@solana/addresses").Address;
|
|
705
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
706
|
-
source: (parent: {
|
|
707
|
-
[x: string]: import("@solana/addresses").Address;
|
|
708
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
709
|
-
};
|
|
710
|
-
AssignInstruction: {
|
|
711
|
-
account: (parent: {
|
|
712
|
-
[x: string]: import("@solana/addresses").Address;
|
|
713
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
714
|
-
owner: (parent: {
|
|
715
|
-
[x: string]: import("@solana/addresses").Address;
|
|
716
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
717
|
-
};
|
|
718
|
-
TransferInstruction: {
|
|
719
|
-
destination: (parent: {
|
|
720
|
-
[x: string]: import("@solana/addresses").Address;
|
|
721
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
722
|
-
source: (parent: {
|
|
723
|
-
[x: string]: import("@solana/addresses").Address;
|
|
724
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
725
|
-
};
|
|
726
|
-
CreateAccountWithSeedInstruction: {
|
|
727
|
-
base: (parent: {
|
|
728
|
-
[x: string]: import("@solana/addresses").Address;
|
|
729
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
730
|
-
owner: (parent: {
|
|
731
|
-
[x: string]: import("@solana/addresses").Address;
|
|
732
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
733
|
-
seed: (parent: {
|
|
734
|
-
[x: string]: import("@solana/addresses").Address;
|
|
735
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
736
|
-
};
|
|
737
|
-
AdvanceNonceAccountInstruction: {
|
|
738
|
-
nonceAccount: (parent: {
|
|
739
|
-
[x: string]: import("@solana/addresses").Address;
|
|
740
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
741
|
-
nonceAuthority: (parent: {
|
|
742
|
-
[x: string]: import("@solana/addresses").Address;
|
|
743
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
744
|
-
};
|
|
745
|
-
WithdrawNonceAccountInstruction: {
|
|
746
|
-
destination: (parent: {
|
|
747
|
-
[x: string]: import("@solana/addresses").Address;
|
|
748
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
749
|
-
nonceAccount: (parent: {
|
|
750
|
-
[x: string]: import("@solana/addresses").Address;
|
|
751
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
752
|
-
nonceAuthority: (parent: {
|
|
753
|
-
[x: string]: import("@solana/addresses").Address;
|
|
754
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
755
|
-
};
|
|
756
|
-
InitializeNonceAccountInstruction: {
|
|
757
|
-
nonceAccount: (parent: {
|
|
758
|
-
[x: string]: import("@solana/addresses").Address;
|
|
759
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
760
|
-
nonceAuthority: (parent: {
|
|
761
|
-
[x: string]: import("@solana/addresses").Address;
|
|
762
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
763
|
-
};
|
|
764
|
-
AuthorizeNonceAccountInstruction: {
|
|
765
|
-
newAuthorized: (parent: {
|
|
766
|
-
[x: string]: import("@solana/addresses").Address;
|
|
767
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
768
|
-
nonceAccount: (parent: {
|
|
769
|
-
[x: string]: import("@solana/addresses").Address;
|
|
770
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
771
|
-
nonceAuthority: (parent: {
|
|
772
|
-
[x: string]: import("@solana/addresses").Address;
|
|
773
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
774
|
-
};
|
|
775
|
-
UpgradeNonceAccountInstruction: {
|
|
776
|
-
nonceAccount: (parent: {
|
|
777
|
-
[x: string]: import("@solana/addresses").Address;
|
|
778
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
779
|
-
nonceAuthority: (parent: {
|
|
780
|
-
[x: string]: import("@solana/addresses").Address;
|
|
781
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
782
|
-
};
|
|
783
|
-
AllocateInstruction: {
|
|
784
|
-
account: (parent: {
|
|
785
|
-
[x: string]: import("@solana/addresses").Address;
|
|
786
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
787
|
-
};
|
|
788
|
-
AllocateWithSeedInstruction: {
|
|
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<unknown> | null;
|
|
792
|
-
owner: (parent: {
|
|
793
|
-
[x: string]: import("@solana/addresses").Address;
|
|
794
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
795
|
-
};
|
|
796
|
-
AssignWithSeedInstruction: {
|
|
797
|
-
account: (parent: {
|
|
798
|
-
[x: string]: import("@solana/addresses").Address;
|
|
799
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
800
|
-
owner: (parent: {
|
|
801
|
-
[x: string]: import("@solana/addresses").Address;
|
|
802
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
803
|
-
};
|
|
804
|
-
TransferWithSeedInstruction: {
|
|
805
|
-
destination: (parent: {
|
|
806
|
-
[x: string]: import("@solana/addresses").Address;
|
|
807
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
808
|
-
source: (parent: {
|
|
809
|
-
[x: string]: import("@solana/addresses").Address;
|
|
810
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
811
|
-
sourceOwner: (parent: {
|
|
812
|
-
[x: string]: import("@solana/addresses").Address;
|
|
813
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
814
|
-
};
|
|
815
|
-
VoteInitializeAccountInstruction: {
|
|
816
|
-
authorizedVoter: (parent: {
|
|
817
|
-
[x: string]: import("@solana/addresses").Address;
|
|
818
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
819
|
-
authorizedWithdrawer: (parent: {
|
|
820
|
-
[x: string]: import("@solana/addresses").Address;
|
|
821
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
822
|
-
node: (parent: {
|
|
823
|
-
[x: string]: import("@solana/addresses").Address;
|
|
824
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
825
|
-
voteAccount: (parent: {
|
|
826
|
-
[x: string]: import("@solana/addresses").Address;
|
|
827
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
828
|
-
};
|
|
829
|
-
VoteAuthorizeInstruction: {
|
|
830
|
-
authority: (parent: {
|
|
831
|
-
[x: string]: import("@solana/addresses").Address;
|
|
832
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
833
|
-
newAuthority: (parent: {
|
|
834
|
-
[x: string]: import("@solana/addresses").Address;
|
|
835
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
836
|
-
voteAccount: (parent: {
|
|
837
|
-
[x: string]: import("@solana/addresses").Address;
|
|
838
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
839
|
-
};
|
|
840
|
-
VoteAuthorizeWithSeedInstruction: {
|
|
841
|
-
authorityOwner: (parent: {
|
|
842
|
-
[x: string]: import("@solana/addresses").Address;
|
|
843
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
844
|
-
newAuthority: (parent: {
|
|
845
|
-
[x: string]: import("@solana/addresses").Address;
|
|
846
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
847
|
-
voteAccount: (parent: {
|
|
848
|
-
[x: string]: import("@solana/addresses").Address;
|
|
849
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
850
|
-
};
|
|
851
|
-
VoteAuthorizeCheckedWithSeedInstruction: {
|
|
852
|
-
authorityOwner: (parent: {
|
|
853
|
-
[x: string]: import("@solana/addresses").Address;
|
|
854
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
855
|
-
newAuthority: (parent: {
|
|
856
|
-
[x: string]: import("@solana/addresses").Address;
|
|
857
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
858
|
-
voteAccount: (parent: {
|
|
859
|
-
[x: string]: import("@solana/addresses").Address;
|
|
860
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
861
|
-
};
|
|
862
|
-
VoteVoteInstruction: {
|
|
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<unknown> | null;
|
|
866
|
-
voteAuthority: (parent: {
|
|
867
|
-
[x: string]: import("@solana/addresses").Address;
|
|
868
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
869
|
-
};
|
|
870
|
-
VoteUpdateVoteStateInstruction: {
|
|
871
|
-
voteAccount: (parent: {
|
|
872
|
-
[x: string]: import("@solana/addresses").Address;
|
|
873
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
874
|
-
voteAuthority: (parent: {
|
|
875
|
-
[x: string]: import("@solana/addresses").Address;
|
|
876
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
877
|
-
};
|
|
878
|
-
VoteUpdateVoteStateSwitchInstruction: {
|
|
879
|
-
voteAccount: (parent: {
|
|
880
|
-
[x: string]: import("@solana/addresses").Address;
|
|
881
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
882
|
-
voteAuthority: (parent: {
|
|
883
|
-
[x: string]: import("@solana/addresses").Address;
|
|
884
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
885
|
-
};
|
|
886
|
-
VoteCompactUpdateVoteStateInstruction: {
|
|
887
|
-
voteAccount: (parent: {
|
|
888
|
-
[x: string]: import("@solana/addresses").Address;
|
|
889
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
890
|
-
voteAuthority: (parent: {
|
|
891
|
-
[x: string]: import("@solana/addresses").Address;
|
|
892
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
893
|
-
};
|
|
894
|
-
VoteCompactUpdateVoteStateSwitchInstruction: {
|
|
895
|
-
voteAccount: (parent: {
|
|
896
|
-
[x: string]: import("@solana/addresses").Address;
|
|
897
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
898
|
-
voteAuthority: (parent: {
|
|
899
|
-
[x: string]: import("@solana/addresses").Address;
|
|
900
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
901
|
-
};
|
|
902
|
-
VoteWithdrawInstruction: {
|
|
903
|
-
voteAccount: (parent: {
|
|
904
|
-
[x: string]: import("@solana/addresses").Address;
|
|
905
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
906
|
-
withdrawAuthority: (parent: {
|
|
907
|
-
[x: string]: import("@solana/addresses").Address;
|
|
908
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
909
|
-
};
|
|
910
|
-
VoteUpdateValidatorIdentityInstruction: {
|
|
911
|
-
newValidatorIdentity: (parent: {
|
|
912
|
-
[x: string]: import("@solana/addresses").Address;
|
|
913
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
914
|
-
voteAccount: (parent: {
|
|
915
|
-
[x: string]: import("@solana/addresses").Address;
|
|
916
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
917
|
-
withdrawAuthority: (parent: {
|
|
918
|
-
[x: string]: import("@solana/addresses").Address;
|
|
919
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
920
|
-
};
|
|
921
|
-
VoteUpdateCommissionInstruction: {
|
|
922
|
-
voteAccount: (parent: {
|
|
923
|
-
[x: string]: import("@solana/addresses").Address;
|
|
924
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
925
|
-
withdrawAuthority: (parent: {
|
|
926
|
-
[x: string]: import("@solana/addresses").Address;
|
|
927
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
928
|
-
};
|
|
929
|
-
VoteVoteSwitchInstruction: {
|
|
930
|
-
voteAccount: (parent: {
|
|
931
|
-
[x: string]: import("@solana/addresses").Address;
|
|
932
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
933
|
-
voteAuthority: (parent: {
|
|
934
|
-
[x: string]: import("@solana/addresses").Address;
|
|
935
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
936
|
-
};
|
|
937
|
-
VoteAuthorizeCheckedInstruction: {
|
|
938
|
-
authority: (parent: {
|
|
939
|
-
[x: string]: import("@solana/addresses").Address;
|
|
940
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
941
|
-
newAuthority: (parent: {
|
|
942
|
-
[x: string]: import("@solana/addresses").Address;
|
|
943
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
944
|
-
voteAccount: (parent: {
|
|
945
|
-
[x: string]: import("@solana/addresses").Address;
|
|
946
|
-
}, args: import("./account").AccountQueryArgs, context: import("../context").RpcGraphQLContext, info: import("graphql").GraphQLResolveInfo | undefined) => Promise<unknown> | null;
|
|
947
|
-
};
|
|
948
|
-
};
|
|
1
|
+
export declare const instructionTypeDefs = "\n \"\"\"\n Transaction instruction interface\n \"\"\"\n interface TransactionInstruction {\n programId: Address\n }\n\n \"\"\"\n Generic transaction instruction\n \"\"\"\n type GenericInstruction implements TransactionInstruction {\n accounts: [Address]\n data: Base64EncodedBytes\n programId: Address\n }\n\n \"\"\"\n AddressLookupTable: CreateLookupTable instruction\n \"\"\"\n type CreateLookupTableInstruction implements TransactionInstruction {\n programId: Address\n bumpSeed: BigInt # FIXME:*\n lookupTableAccount: Account\n lookupTableAuthority: Account\n payerAccount: Account\n recentSlot: BigInt\n systemProgram: Account\n }\n\n \"\"\"\n AddressLookupTable: ExtendLookupTable instruction\n \"\"\"\n type ExtendLookupTableInstruction implements TransactionInstruction {\n programId: Address\n lookupTableAccount: Account\n lookupTableAuthority: Account\n newAddresses: [Address]\n payerAccount: Account\n systemProgram: Account\n }\n\n \"\"\"\n AddressLookupTable: FreezeLookupTable instruction\n \"\"\"\n type FreezeLookupTableInstruction implements TransactionInstruction {\n programId: Address\n lookupTableAccount: Account\n lookupTableAuthority: Account\n }\n\n \"\"\"\n AddressLookupTable: DeactivateLookupTable instruction\n \"\"\"\n type DeactivateLookupTableInstruction implements TransactionInstruction {\n programId: Address\n lookupTableAccount: Account\n lookupTableAuthority: Account\n }\n\n \"\"\"\n AddressLookupTable: CloseLookupTable instruction\n \"\"\"\n type CloseLookupTableInstruction implements TransactionInstruction {\n programId: Address\n lookupTableAccount: Account\n lookupTableAuthority: Account\n recipient: Account\n }\n\n \"\"\"\n BpfLoader: Write instruction\n \"\"\"\n type BpfLoaderWriteInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n bytes: Base64EncodedBytes\n offset: BigInt # FIXME:*\n }\n\n \"\"\"\n BpfLoader: Finalize instruction\n \"\"\"\n type BpfLoaderFinalizeInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n }\n\n \"\"\"\n BpfUpgradeableLoader: InitializeBuffer instruction\n \"\"\"\n type BpfUpgradeableLoaderInitializeBufferInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n }\n\n \"\"\"\n BpfUpgradeableLoader: Write instruction\n \"\"\"\n type BpfUpgradeableLoaderWriteInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n authority: Account\n bytes: Base64EncodedBytes\n offset: BigInt # FIXME:*\n }\n\n \"\"\"\n BpfUpgradeableLoader: DeployWithMaxDataLen instruction\n \"\"\"\n type BpfUpgradeableLoaderDeployWithMaxDataLenInstruction implements TransactionInstruction {\n programId: Address\n authority: Account\n bufferAccount: Account\n clockSysvar: Address\n maxDataLen: BigInt\n payerAccount: Account\n programAccount: Account\n programDataAccount: Account\n rentSysvar: Address\n }\n\n \"\"\"\n BpfUpgradeableLoader: Upgrade instruction\n \"\"\"\n type BpfUpgradeableLoaderUpgradeInstruction implements TransactionInstruction {\n programId: Address\n authority: Account\n bufferAccount: Account\n clockSysvar: Address\n programAccount: Account\n programDataAccount: Account\n rentSysvar: Address\n spillAccount: Account\n }\n\n \"\"\"\n BpfUpgradeableLoader: SetAuthority instruction\n \"\"\"\n type BpfUpgradeableLoaderSetAuthorityInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n authority: Account\n newAuthority: Account\n }\n\n \"\"\"\n BpfUpgradeableLoader: SetAuthorityChecked instruction\n \"\"\"\n type BpfUpgradeableLoaderSetAuthorityCheckedInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n authority: Account\n newAuthority: Account\n }\n\n \"\"\"\n BpfUpgradeableLoader: Close instruction\n \"\"\"\n type BpfUpgradeableLoaderCloseInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n authority: Account\n programAccount: Account\n recipient: Account\n }\n\n \"\"\"\n BpfUpgradeableLoader: ExtendProgram instruction\n \"\"\"\n type BpfUpgradeableLoaderExtendProgramInstruction implements TransactionInstruction {\n programId: Address\n additionalBytes: BigInt\n payerAccount: Account\n programAccount: Account\n programDataAccount: Account\n systemProgram: Account\n }\n\n \"\"\"\n SplAssociatedTokenAccount: Create instruction\n \"\"\"\n type SplAssociatedTokenCreateInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n mint: Address\n source: Account\n systemProgram: Account\n tokenProgram: Account\n wallet: Account\n }\n\n \"\"\"\n SplAssociatedTokenAccount: CreateIdempotent instruction\n \"\"\"\n type SplAssociatedTokenCreateIdempotentInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n mint: Address\n source: Account\n systemProgram: Account\n tokenProgram: Account\n wallet: Account\n }\n\n \"\"\"\n SplAssociatedTokenAccount: RecoverNested instruction\n \"\"\"\n type SplAssociatedTokenRecoverNestedInstruction implements TransactionInstruction {\n programId: Address\n destination: Account\n nestedMint: Account\n nestedOwner: Account\n nestedSource: Account\n ownerMint: Account\n tokenProgram: Account\n wallet: Account\n }\n\n \"\"\"\n SplMemo instruction\n \"\"\"\n type SplMemoInstruction implements TransactionInstruction {\n programId: Address\n memo: String\n }\n\n \"\"\"\n SplToken: InitializeMint instruction\n \"\"\"\n type SplTokenInitializeMintInstruction implements TransactionInstruction {\n programId: Address\n decimals: BigInt # FIXME:*\n freezeAuthority: Account\n mint: Account\n mintAuthority: Account\n rentSysvar: Address\n }\n\n \"\"\"\n SplToken: InitializeMint2 instruction\n \"\"\"\n type SplTokenInitializeMint2Instruction implements TransactionInstruction {\n programId: Address\n decimals: BigInt # FIXME:*\n freezeAuthority: Account\n mint: Account\n mintAuthority: Account\n }\n\n \"\"\"\n SplToken: InitializeAccount instruction\n \"\"\"\n type SplTokenInitializeAccountInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n mint: Account\n owner: Account\n rentSysvar: Address\n }\n\n \"\"\"\n SplToken: InitializeAccount2 instruction\n \"\"\"\n type SplTokenInitializeAccount2Instruction implements TransactionInstruction {\n programId: Address\n account: Account\n mint: Account\n owner: Account\n rentSysvar: Address\n }\n\n \"\"\"\n SplToken: InitializeAccount3 instruction\n \"\"\"\n type SplTokenInitializeAccount3Instruction implements TransactionInstruction {\n programId: Address\n account: Account\n mint: Account\n owner: Account\n }\n\n \"\"\"\n SplToken: InitializeMultisig instruction\n \"\"\"\n type SplTokenInitializeMultisigInstruction implements TransactionInstruction {\n programId: Address\n m: BigInt # FIXME:*\n multisig: Account\n rentSysvar: Address\n signers: [Address]\n }\n\n \"\"\"\n SplToken: InitializeMultisig2 instruction\n \"\"\"\n type SplTokenInitializeMultisig2Instruction implements TransactionInstruction {\n programId: Address\n m: BigInt # FIXME:*\n multisig: Account\n signers: [Address]\n }\n\n \"\"\"\n SplToken: Transfer instruction\n \"\"\"\n type SplTokenTransferInstruction implements TransactionInstruction {\n programId: Address\n amount: String\n authority: Account\n destination: Account\n multisigAuthority: Account\n source: Account\n }\n\n \"\"\"\n SplToken: Approve instruction\n \"\"\"\n type SplTokenApproveInstruction implements TransactionInstruction {\n programId: Address\n amount: String\n delegate: Account\n multisigOwner: Account\n owner: Account\n source: Account\n }\n\n \"\"\"\n SplToken: Revoke instruction\n \"\"\"\n type SplTokenRevokeInstruction implements TransactionInstruction {\n programId: Address\n multisigOwner: Account\n owner: Account\n source: Account\n }\n\n \"\"\"\n SplToken: SetAuthority instruction\n \"\"\"\n type SplTokenSetAuthorityInstruction implements TransactionInstruction {\n programId: Address\n authority: Account\n authorityType: String\n multisigAuthority: Account\n newAuthority: Account\n }\n\n \"\"\"\n SplToken: MintTo instruction\n \"\"\"\n type SplTokenMintToInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n amount: String\n authority: Account\n mint: Account\n mintAuthority: Account\n multisigMintAuthority: Account\n }\n\n \"\"\"\n SplToken: Burn instruction\n \"\"\"\n type SplTokenBurnInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n amount: String\n authority: Account\n mint: Account\n multisigAuthority: Account\n }\n\n \"\"\"\n SplToken: CloseAccount instruction\n \"\"\"\n type SplTokenCloseAccountInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n destination: Account\n multisigOwner: Account\n owner: Account\n }\n\n \"\"\"\n SplToken: FreezeAccount instruction\n \"\"\"\n type SplTokenFreezeAccountInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n freezeAuthority: Account\n mint: Account\n multisigFreezeAuthority: Account\n }\n\n \"\"\"\n SplToken: ThawAccount instruction\n \"\"\"\n type SplTokenThawAccountInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n freezeAuthority: Account\n mint: Account\n multisigFreezeAuthority: Account\n }\n\n \"\"\"\n SplToken: TransferChecked instruction\n \"\"\"\n type SplTokenTransferCheckedInstruction implements TransactionInstruction {\n programId: Address\n amount: String\n authority: Account\n decimals: BigInt # FIXME:*\n destination: Account\n mint: Account\n multisigAuthority: Account\n source: Account\n tokenAmount: String\n }\n\n \"\"\"\n SplToken: ApproveChecked instruction\n \"\"\"\n type SplTokenApproveCheckedInstruction implements TransactionInstruction {\n programId: Address\n delegate: Account\n mint: Account\n multisigOwner: Account\n owner: Account\n source: Account\n tokenAmount: String\n }\n\n \"\"\"\n SplToken: MintToChecked instruction\n \"\"\"\n type SplTokenMintToCheckedInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n authority: Account\n mint: Account\n mintAuthority: Account\n multisigMintAuthority: Account\n tokenAmount: String\n }\n\n \"\"\"\n SplToken: BurnChecked instruction\n \"\"\"\n type SplTokenBurnCheckedInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n authority: Account\n mint: Account\n multisigAuthority: Account\n tokenAmount: String\n }\n\n \"\"\"\n SplToken: SyncNative instruction\n \"\"\"\n type SplTokenSyncNativeInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n }\n\n \"\"\"\n SplToken: GetAccountDataSize instruction\n \"\"\"\n type SplTokenGetAccountDataSizeInstruction implements TransactionInstruction {\n programId: Address\n extensionTypes: [String]\n mint: Account\n }\n\n \"\"\"\n SplToken: InitializeImmutableOwner instruction\n \"\"\"\n type SplTokenInitializeImmutableOwnerInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n }\n\n \"\"\"\n SplToken: AmountToUiAmount instruction\n \"\"\"\n type SplTokenAmountToUiAmountInstruction implements TransactionInstruction {\n programId: Address\n amount: String\n mint: Account\n }\n\n \"\"\"\n SplToken: UiAmountToAmount instruction\n \"\"\"\n type SplTokenUiAmountToAmountInstruction implements TransactionInstruction {\n programId: Address\n mint: Account\n uiAmount: String\n }\n\n \"\"\"\n SplToken: InitializeMintCloseAuthority instruction\n \"\"\"\n type SplTokenInitializeMintCloseAuthorityInstruction implements TransactionInstruction {\n programId: Address\n mint: Account\n newAuthority: Account\n }\n\n # TODO: Extensions!\n # - TransferFeeExtension\n # - ConfidentialTransferFeeExtension\n # - DefaultAccountStateExtension\n # - Reallocate\n # - MemoTransferExtension\n # - CreateNativeMint\n # - InitializeNonTransferableMint\n # - InterestBearingMintExtension\n # - CpiGuardExtension\n # - InitializePermanentDelegate\n # - TransferHookExtension\n # - ConfidentialTransferFeeExtension\n # - WithdrawExcessLamports\n # - MetadataPointerExtension\n\n type Lockup {\n custodian: Account\n epoch: BigInt\n unixTimestamp: BigInt\n }\n\n \"\"\"\n Stake: Initialize instruction\n \"\"\"\n type StakeInitializeInstructionDataAuthorized {\n staker: Account\n withdrawer: Account\n }\n type StakeInitializeInstruction implements TransactionInstruction {\n programId: Address\n authorized: StakeInitializeInstructionDataAuthorized\n lockup: Lockup\n rentSysvar: Address\n stakeAccount: Account\n }\n\n \"\"\"\n Stake: Authorize instruction\n \"\"\"\n type StakeAuthorizeInstruction implements TransactionInstruction {\n programId: Address\n authority: Account\n authorityType: String\n clockSysvar: Address\n custodian: Account\n newAuthority: Account\n stakeAccount: Account\n }\n\n \"\"\"\n Stake: DelegateStake instruction\n \"\"\"\n type StakeDelegateStakeInstruction implements TransactionInstruction {\n programId: Address\n clockSysvar: Address\n stakeAccount: Account\n stakeAuthority: Account\n stakeConfigAccount: Account\n stakeHistorySysvar: Address\n voteAccount: Account\n }\n\n \"\"\"\n Stake: Split instruction\n \"\"\"\n type StakeSplitInstruction implements TransactionInstruction {\n programId: Address\n lamports: BigInt\n newSplitAccount: Account\n stakeAccount: Account\n stakeAuthority: Account\n }\n\n \"\"\"\n Stake: Withdraw instruction\n \"\"\"\n type StakeWithdrawInstruction implements TransactionInstruction {\n programId: Address\n clockSysvar: Address\n destination: Account\n lamports: BigInt\n stakeAccount: Account\n withdrawAuthority: Account\n }\n\n \"\"\"\n Stake: Deactivate instruction\n \"\"\"\n type StakeDeactivateInstruction implements TransactionInstruction {\n programId: Address\n clockSysvar: Address\n stakeAccount: Account\n stakeAuthority: Account\n }\n\n \"\"\"\n Stake: SetLockup instruction\n \"\"\"\n type StakeSetLockupInstruction implements TransactionInstruction {\n programId: Address\n custodian: Account\n lockup: Lockup\n stakeAccount: Account\n }\n\n \"\"\"\n Stake: Merge instruction\n \"\"\"\n type StakeMergeInstruction implements TransactionInstruction {\n programId: Address\n clockSysvar: Address\n destination: Account\n source: Account\n stakeAuthority: Account\n stakeHistorySysvar: Address\n }\n\n \"\"\"\n Stake: AuthorizeWithSeed instruction\n \"\"\"\n type StakeAuthorizeWithSeedInstruction implements TransactionInstruction {\n programId: Address\n authorityBase: Account\n authorityOwner: Account\n authoritySeed: String\n authorityType: String\n clockSysvar: Address\n custodian: Account\n newAuthorized: Account\n stakeAccount: Account\n }\n\n \"\"\"\n Stake: InitializeChecked instruction\n \"\"\"\n type StakeInitializeCheckedInstructionDataAuthorized {\n staker: Account\n withdrawer: Account\n }\n type StakeInitializeCheckedInstruction implements TransactionInstruction {\n programId: Address\n authorized: StakeInitializeCheckedInstructionDataAuthorized\n lockup: Lockup\n rentSysvar: Address\n stakeAccount: Account\n }\n\n \"\"\"\n Stake: AuthorizeChecked instruction\n \"\"\"\n type StakeAuthorizeCheckedInstruction implements TransactionInstruction {\n programId: Address\n authority: Account\n authorityType: String\n clockSysvar: Address\n custodian: Account\n newAuthority: Account\n stakeAccount: Account\n }\n\n \"\"\"\n Stake: AuthorizeCheckedWithSeed instruction\n \"\"\"\n type StakeAuthorizeCheckedWithSeedInstruction implements TransactionInstruction {\n programId: Address\n authorityBase: Account\n authorityOwner: Account\n authoritySeed: String\n authorityType: String\n clockSysvar: Address\n custodian: Account\n newAuthorized: Account\n stakeAccount: Account\n }\n\n \"\"\"\n Stake: SetLockupChecked instruction\n \"\"\"\n type StakeSetLockupCheckedInstruction implements TransactionInstruction {\n programId: Address\n custodian: Account\n lockup: Lockup\n stakeAccount: Account\n }\n\n \"\"\"\n Stake: DeactivateDelinquent instruction\n \"\"\"\n type StakeDeactivateDelinquentInstruction implements TransactionInstruction {\n programId: Address\n referenceVoteAccount: Account\n stakeAccount: Account\n voteAccount: Account\n }\n\n \"\"\"\n Stake: Redelegate instruction\n \"\"\"\n type StakeRedelegateInstruction implements TransactionInstruction {\n programId: Address\n newStakeAccount: Account\n stakeAccount: Account\n stakeAuthority: Account\n stakeConfigAccount: Account\n voteAccount: Account\n }\n\n \"\"\"\n System: CreateAccount instruction\n \"\"\"\n type CreateAccountInstruction implements TransactionInstruction {\n programId: Address\n lamports: BigInt\n newAccount: Account\n owner: Account\n source: Account\n space: BigInt\n }\n\n \"\"\"\n System: Assign instruction\n \"\"\"\n type AssignInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n owner: Account\n }\n\n \"\"\"\n System: Transfer instruction\n \"\"\"\n type TransferInstruction implements TransactionInstruction {\n programId: Address\n destination: Account\n lamports: BigInt\n source: Account\n }\n\n \"\"\"\n System: CreateAccountWithSeed instruction\n \"\"\"\n type CreateAccountWithSeedInstruction implements TransactionInstruction {\n programId: Address\n base: Account\n lamports: BigInt\n owner: Account\n seed: String\n space: BigInt\n }\n\n \"\"\"\n System: AdvanceNonceAccount instruction\n \"\"\"\n type AdvanceNonceAccountInstruction implements TransactionInstruction {\n programId: Address\n nonceAccount: Account\n nonceAuthority: Account\n recentBlockhashesSysvar: Address\n }\n\n \"\"\"\n System: WithdrawNonceAccount instruction\n \"\"\"\n type WithdrawNonceAccountInstruction implements TransactionInstruction {\n programId: Address\n destination: Account\n lamports: BigInt\n nonceAccount: Account\n nonceAuthority: Account\n recentBlockhashesSysvar: Address\n rentSysvar: Address\n }\n\n \"\"\"\n System: InitializeNonceAccount instruction\n \"\"\"\n type InitializeNonceAccountInstruction implements TransactionInstruction {\n programId: Address\n nonceAccount: Account\n nonceAuthority: Account\n recentBlockhashesSysvar: Address\n rentSysvar: Address\n }\n\n \"\"\"\n System: AuthorizeNonceAccount instruction\n \"\"\"\n type AuthorizeNonceAccountInstruction implements TransactionInstruction {\n programId: Address\n newAuthorized: Account\n nonceAccount: Account\n nonceAuthority: Account\n }\n\n \"\"\"\n System: UpgradeNonceAccount instruction\n \"\"\"\n type UpgradeNonceAccountInstruction implements TransactionInstruction {\n programId: Address\n nonceAccount: Account\n nonceAuthority: Account\n }\n\n \"\"\"\n System: Allocate instruction\n \"\"\"\n type AllocateInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n space: BigInt\n }\n\n \"\"\"\n System: AllocateWithSeed instruction\n \"\"\"\n type AllocateWithSeedInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n base: Address\n owner: Account\n seed: String\n space: BigInt\n }\n\n \"\"\"\n System: AssignWithSeed instruction\n \"\"\"\n type AssignWithSeedInstruction implements TransactionInstruction {\n programId: Address\n account: Account\n base: Address\n owner: Account\n seed: String\n }\n\n \"\"\"\n System: TransferWithSeed instruction\n \"\"\"\n type TransferWithSeedInstruction implements TransactionInstruction {\n programId: Address\n destination: Account\n lamports: BigInt\n source: Account\n sourceBase: Address\n sourceOwner: Account\n sourceSeed: String\n }\n\n \"\"\"\n Vote: InitializeAccount instruction\n \"\"\"\n type VoteInitializeAccountInstruction implements TransactionInstruction {\n programId: Address\n authorizedVoter: Account\n authorizedWithdrawer: Account\n clockSysvar: Address\n commission: BigInt # FIXME:*\n node: Account\n rentSysvar: Address\n voteAccount: Account\n }\n\n \"\"\"\n Vote: Authorize instruction\n \"\"\"\n type VoteAuthorizeInstruction implements TransactionInstruction {\n programId: Address\n authority: Account\n authorityType: String\n clockSysvar: Address\n newAuthority: Account\n voteAccount: Account\n }\n\n \"\"\"\n Vote: AuthorizeWithSeed instruction\n \"\"\"\n type VoteAuthorizeWithSeedInstruction implements TransactionInstruction {\n programId: Address\n authorityBaseKey: String\n authorityOwner: Account\n authoritySeed: String\n authorityType: String\n clockSysvar: Address\n newAuthority: Account\n voteAccount: Account\n }\n\n \"\"\"\n Vote: AuthorizeCheckedWithSeed instruction\n \"\"\"\n type VoteAuthorizeCheckedWithSeedInstruction implements TransactionInstruction {\n programId: Address\n authorityBaseKey: String\n authorityOwner: Account\n authoritySeed: String\n authorityType: String\n clockSysvar: Address\n newAuthority: Account\n voteAccount: Account\n }\n\n type Vote {\n hash: String\n slots: [BigInt]\n timestamp: BigInt\n }\n\n \"\"\"\n Vote: Vote instruction\n \"\"\"\n type VoteVoteInstruction implements TransactionInstruction {\n programId: Address\n clockSysvar: Address\n slotHashesSysvar: Address\n vote: Vote\n voteAccount: Account\n voteAuthority: Account\n }\n\n type VoteStateUpdateLockout {\n confirmationCount: BigInt # FIXME:*\n slot: BigInt\n }\n type VoteStateUpdate {\n hash: String\n lockouts: [VoteStateUpdateLockout]\n root: BigInt\n timestamp: BigInt\n }\n\n \"\"\"\n Vote: UpdateVoteState instruction\n \"\"\"\n type VoteUpdateVoteStateInstruction implements TransactionInstruction {\n programId: Address\n hash: String\n voteAccount: Account\n voteAuthority: Account\n voteStateUpdate: VoteStateUpdate\n }\n\n \"\"\"\n Vote: UpdateVoteStateSwitch instruction\n \"\"\"\n type VoteUpdateVoteStateSwitchInstruction implements TransactionInstruction {\n programId: Address\n hash: String\n voteAccount: Account\n voteAuthority: Account\n voteStateUpdate: VoteStateUpdate\n }\n\n \"\"\"\n Vote: CompactUpdateVoteState instruction\n \"\"\"\n type VoteCompactUpdateVoteStateInstruction implements TransactionInstruction {\n programId: Address\n hash: String\n voteAccount: Account\n voteAuthority: Account\n voteStateUpdate: VoteStateUpdate\n }\n\n \"\"\"\n Vote: CompactUpdateVoteStateSwitch instruction\n \"\"\"\n type VoteCompactUpdateVoteStateSwitchInstruction implements TransactionInstruction {\n programId: Address\n hash: String\n voteAccount: Account\n voteAuthority: Account\n voteStateUpdate: VoteStateUpdate\n }\n\n \"\"\"\n Vote: Withdraw instruction\n \"\"\"\n type VoteWithdrawInstruction implements TransactionInstruction {\n programId: Address\n destination: Account\n lamports: BigInt\n voteAccount: Account\n withdrawAuthority: Account\n }\n\n \"\"\"\n Vote: UpdateValidatorIdentity instruction\n \"\"\"\n type VoteUpdateValidatorIdentityInstruction implements TransactionInstruction {\n programId: Address\n newValidatorIdentity: Account\n voteAccount: Account\n withdrawAuthority: Account\n }\n\n \"\"\"\n Vote: UpdateCommission instruction\n \"\"\"\n type VoteUpdateCommissionInstruction implements TransactionInstruction {\n programId: Address\n commission: BigInt # FIXME:*\n voteAccount: Account\n withdrawAuthority: Account\n }\n\n \"\"\"\n Vote: VoteSwitch instruction\n \"\"\"\n type VoteVoteSwitchInstruction implements TransactionInstruction {\n programId: Address\n clockSysvar: Address\n hash: String\n slotHashesSysvar: Address\n vote: Vote\n voteAccount: Account\n voteAuthority: Account\n }\n\n \"\"\"\n Vote: AuthorizeChecked instruction\n \"\"\"\n type VoteAuthorizeCheckedInstruction implements TransactionInstruction {\n programId: Address\n authority: Account\n authorityType: String\n clockSysvar: Address\n newAuthority: Account\n voteAccount: Account\n }\n";
|
|
949
2
|
//# sourceMappingURL=instruction.d.ts.map
|