addEntity.d.ts 821 B

123456789101112131415161718192021222324
  1. import * as beet from "@metaplex-foundation/beet";
  2. import * as web3 from "@solana/web3.js";
  3. export interface AddEntityInstructionArgs {
  4. extraSeed: beet.COption<string>;
  5. }
  6. export declare const addEntityStruct: beet.FixableBeetArgsStruct<
  7. AddEntityInstructionArgs & {
  8. instructionDiscriminator: number[];
  9. }
  10. >;
  11. export interface AddEntityInstructionAccounts {
  12. payer: web3.PublicKey;
  13. entity: web3.PublicKey;
  14. world: web3.PublicKey;
  15. systemProgram?: web3.PublicKey;
  16. anchorRemainingAccounts?: web3.AccountMeta[];
  17. }
  18. export declare const addEntityInstructionDiscriminator: number[];
  19. export declare function createAddEntityInstruction(
  20. accounts: AddEntityInstructionAccounts,
  21. args?: AddEntityInstructionArgs,
  22. programId?: web3.PublicKey
  23. ): web3.TransactionInstruction;
  24. //# sourceMappingURL=addEntity.d.ts.map