apply.d.ts 758 B

1234567891011121314151617181920212223
  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. anchorRemainingAccounts?: web3.AccountMeta[];
  16. }
  17. export declare const applyInstructionDiscriminator: number[];
  18. export declare function createApplyInstruction(
  19. accounts: ApplyInstructionAccounts,
  20. args: ApplyInstructionArgs,
  21. programId?: web3.PublicKey
  22. ): web3.TransactionInstruction;
  23. //# sourceMappingURL=apply.d.ts.map