apply.d.ts 833 B

12345678910111213141516171819202122232425
  1. import * as beet from "@metaplex-foundation/beet";
  2. import * as web3 from "@solana/web3.js";
  3. export interface ApplyInstructionArgs {
  4. args: Uint8Array;
  5. }
  6. export declare const applyStruct: beet.FixableBeetArgsStruct<
  7. ApplyInstructionArgs & {
  8. instructionDiscriminator: number[];
  9. }
  10. >;
  11. export interface ApplyInstructionAccounts {
  12. componentProgram: web3.PublicKey;
  13. boltSystem: web3.PublicKey;
  14. boltComponent: web3.PublicKey;
  15. authority?: web3.PublicKey;
  16. instructionSysvarAccount?: web3.PublicKey;
  17. anchorRemainingAccounts?: web3.AccountMeta[];
  18. }
  19. export declare const applyInstructionDiscriminator: number[];
  20. export declare function createApplyInstruction(
  21. accounts: ApplyInstructionAccounts,
  22. args: ApplyInstructionArgs,
  23. programId?: web3.PublicKey
  24. ): web3.TransactionInstruction;
  25. //# sourceMappingURL=apply.d.ts.map