apply4.d.ts 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. import * as beet from "@metaplex-foundation/beet";
  2. import * as web3 from "@solana/web3.js";
  3. export interface Apply4InstructionArgs {
  4. args: Uint8Array;
  5. }
  6. export declare const apply4Struct: beet.FixableBeetArgsStruct<
  7. Apply4InstructionArgs & {
  8. instructionDiscriminator: number[];
  9. }
  10. >;
  11. export interface Apply4InstructionAccounts {
  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. authority?: web3.PublicKey;
  22. instructionSysvarAccount?: web3.PublicKey;
  23. anchorRemainingAccounts?: web3.AccountMeta[];
  24. }
  25. export declare const apply4InstructionDiscriminator: number[];
  26. export declare function createApply4Instruction(
  27. accounts: Apply4InstructionAccounts,
  28. args: Apply4InstructionArgs,
  29. programId?: web3.PublicKey
  30. ): web3.TransactionInstruction;
  31. //# sourceMappingURL=apply4.d.ts.map