/** * This code was GENERATED using the solita package. * Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality. * * See: https://github.com/metaplex-foundation/solita */ import * as beet from '@metaplex-foundation/beet'; import * as web3 from '@solana/web3.js'; import { InitRulesetIx } from '../types/InitRulesetIx'; /** * @category Instructions * @category InitRuleset * @category generated */ export declare type InitRulesetInstructionArgs = { initRulesetIx: InitRulesetIx; }; /** * @category Instructions * @category InitRuleset * @category generated */ export declare const InitRulesetStruct: beet.FixableBeetArgsStruct; /** * Accounts required by the _InitRuleset_ instruction * * @property [_writable_] ruleset * @property [**signer**] authority * @property [_writable_, **signer**] payer * @category Instructions * @category InitRuleset * @category generated */ export declare type InitRulesetInstructionAccounts = { ruleset: web3.PublicKey; authority: web3.PublicKey; payer: web3.PublicKey; systemProgram?: web3.PublicKey; }; export declare const initRulesetInstructionDiscriminator = 0; /** * Creates a _InitRuleset_ instruction. * * @param accounts that will be accessed while the instruction is processed * @param args to provide as instruction data to the program * * @category Instructions * @category InitRuleset * @category generated */ export declare function createInitRulesetInstruction(accounts: InitRulesetInstructionAccounts, args: InitRulesetInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction; //# sourceMappingURL=InitRuleset.d.ts.map