12345678910111213141516171819202122232425262728 |
- /// <reference types="node" />
- import { PublicKey } from "@solana/web3.js";
- import BN from "bn.js";
- export * from "./accounts";
- export * from "./instructions";
- export * from "./transactions/transactions";
- export declare const PROGRAM_ADDRESS =
- "WorLD15A7CrDwLcLy4fRqtaTb9fbd8o8iqiEMUDse2n";
- export declare const SYSVAR_INSTRUCTIONS_PUBKEY: PublicKey;
- export declare const PROGRAM_ID: PublicKey;
- export declare function FindWorldRegistryPda(programId?: PublicKey): PublicKey;
- export declare function FindWorldPda(
- id: BN | string | number | Uint8Array,
- programId?: PublicKey
- ): PublicKey;
- export declare function FindEntityPda(
- worldId: BN | string | number | Uint8Array,
- entityId: BN | string | number | Uint8Array,
- extraSeed?: string,
- programId?: PublicKey
- ): PublicKey;
- export declare function FindComponentPda(
- componentProgramId: PublicKey,
- entity: PublicKey,
- componentId?: string
- ): PublicKey;
- export declare function SerializeArgs(args?: any): Buffer;
- //# sourceMappingURL=index.d.ts.map
|