apply2.d.ts 915 B

123456789101112131415161718192021222324252627
  1. import * as beet from "@metaplex-foundation/beet";
  2. import * as web3 from "@solana/web3.js";
  3. export interface Apply2InstructionArgs {
  4. args: Uint8Array;
  5. }
  6. export declare const apply2Struct: beet.FixableBeetArgsStruct<
  7. Apply2InstructionArgs & {
  8. instructionDiscriminator: number[];
  9. }
  10. >;
  11. export interface Apply2InstructionAccounts {
  12. boltSystem: web3.PublicKey;
  13. componentProgram1: web3.PublicKey;
  14. boltComponent1: web3.PublicKey;
  15. componentProgram2: web3.PublicKey;
  16. boltComponent2: web3.PublicKey;
  17. authority?: web3.PublicKey;
  18. instructionSysvarAccount?: web3.PublicKey;
  19. anchorRemainingAccounts?: web3.AccountMeta[];
  20. }
  21. export declare const apply2InstructionDiscriminator: number[];
  22. export declare function createApply2Instruction(
  23. accounts: Apply2InstructionAccounts,
  24. args: Apply2InstructionArgs,
  25. programId?: web3.PublicKey
  26. ): web3.TransactionInstruction;
  27. //# sourceMappingURL=apply2.d.ts.map