apply3.d.ts 986 B

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