apply2.d.ts 840 B

12345678910111213141516171819202122232425
  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. anchorRemainingAccounts?: web3.AccountMeta[];
  18. }
  19. export declare const apply2InstructionDiscriminator: number[];
  20. export declare function createApply2Instruction(
  21. accounts: Apply2InstructionAccounts,
  22. args: Apply2InstructionArgs,
  23. programId?: web3.PublicKey
  24. ): web3.TransactionInstruction;
  25. //# sourceMappingURL=apply2.d.ts.map