index.d.ts 1014 B

12345678910111213141516171819202122232425262728
  1. /// <reference types="node" />
  2. import { PublicKey } from "@solana/web3.js";
  3. import BN from "bn.js";
  4. export * from "./accounts";
  5. export * from "./instructions";
  6. export * from "./transactions/transactions";
  7. export declare const PROGRAM_ADDRESS =
  8. "WorLD15A7CrDwLcLy4fRqtaTb9fbd8o8iqiEMUDse2n";
  9. export declare const SYSVAR_INSTRUCTIONS_PUBKEY: PublicKey;
  10. export declare const PROGRAM_ID: PublicKey;
  11. export declare function FindWorldRegistryPda(programId?: PublicKey): PublicKey;
  12. export declare function FindWorldPda(
  13. id: BN | string | number | Uint8Array,
  14. programId?: PublicKey
  15. ): PublicKey;
  16. export declare function FindEntityPda(
  17. worldId: BN | string | number | Uint8Array,
  18. entityId: BN | string | number | Uint8Array,
  19. extraSeed?: string,
  20. programId?: PublicKey
  21. ): PublicKey;
  22. export declare function FindComponentPda(
  23. componentProgramId: PublicKey,
  24. entity: PublicKey,
  25. componentId?: string
  26. ): PublicKey;
  27. export declare function SerializeArgs(args?: any): Buffer;
  28. //# sourceMappingURL=index.d.ts.map