apply5.d.ts 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. import * as beet from "@metaplex-foundation/beet";
  2. import * as web3 from "@solana/web3.js";
  3. export interface Apply5InstructionArgs {
  4. args: Uint8Array;
  5. }
  6. export declare const apply5Struct: beet.FixableBeetArgsStruct<
  7. Apply5InstructionArgs & {
  8. instructionDiscriminator: number[];
  9. }
  10. >;
  11. export interface Apply5InstructionAccounts {
  12. boltSystem: web3.PublicKey;
  13. componentProgram1: web3.PublicKey;
  14. boltComponent1: web3.PublicKey;
  15. componentProgram2: web3.PublicKey;
  16. boltComponent2: web3.PublicKey;
  17. componentProgram3: web3.PublicKey;
  18. boltComponent3: web3.PublicKey;
  19. componentProgram4: web3.PublicKey;
  20. boltComponent4: web3.PublicKey;
  21. componentProgram5: web3.PublicKey;
  22. boltComponent5: web3.PublicKey;
  23. authority?: web3.PublicKey;
  24. instructionSysvarAccount?: web3.PublicKey;
  25. anchorRemainingAccounts?: web3.AccountMeta[];
  26. }
  27. export declare const apply5InstructionDiscriminator: number[];
  28. export declare function createApply5Instruction(
  29. accounts: Apply5InstructionAccounts,
  30. args: Apply5InstructionArgs,
  31. programId?: web3.PublicKey
  32. ): web3.TransactionInstruction;
  33. //# sourceMappingURL=apply5.d.ts.map