initializeComponent.d.ts 833 B

123456789101112131415161718192021
  1. import * as beet from "@metaplex-foundation/beet";
  2. import * as web3 from "@solana/web3.js";
  3. export declare const initializeComponentStruct: beet.BeetArgsStruct<{
  4. instructionDiscriminator: number[];
  5. }>;
  6. export interface InitializeComponentInstructionAccounts {
  7. payer: web3.PublicKey;
  8. data: web3.PublicKey;
  9. entity: web3.PublicKey;
  10. componentProgram: web3.PublicKey;
  11. authority?: web3.PublicKey;
  12. instructionSysvarAccount?: web3.PublicKey;
  13. systemProgram?: web3.PublicKey;
  14. anchorRemainingAccounts?: web3.AccountMeta[];
  15. }
  16. export declare const initializeComponentInstructionDiscriminator: number[];
  17. export declare function createInitializeComponentInstruction(
  18. accounts: InitializeComponentInstructionAccounts,
  19. programId?: web3.PublicKey
  20. ): web3.TransactionInstruction;
  21. //# sourceMappingURL=initializeComponent.d.ts.map