player-map 2.0.22 → 2.0.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/PlayerMapHome.d.ts +1 -0
- package/dist/api/fetchPlayerAliases.d.ts +7 -0
- package/dist/index.es.js +11892 -11808
- package/dist/index.umd.js +376 -363
- package/dist/utils/constants.d.ts +8 -0
- package/package.json +1 -1
|
@@ -12,4 +12,12 @@ export declare const PREDICATES: {
|
|
|
12
12
|
readonly FOLLOWS: "0x8f9b5dc2e7b8bd12f6762c839830672f1d13c08e72b5f09f194cafc153f2df8a";
|
|
13
13
|
readonly CREATED_BY: "0xf08c4615f44c4700519ec874b6d72e4bd990beea9fc301325c91b650784ee971";
|
|
14
14
|
};
|
|
15
|
+
/**
|
|
16
|
+
* Canonical atom IDs for well-known Intuition concepts used across all games.
|
|
17
|
+
* FAIRPLAY: the "fairplay" quality atom — subject of (Account → IS → fairplay) registration triples.
|
|
18
|
+
* This matches PLAYER_QUALITY_1.objectId in PlayerMapGraph.tsx.
|
|
19
|
+
*/
|
|
20
|
+
export declare const ATOMS: {
|
|
21
|
+
readonly FAIRPLAY: "0xe8c70540064241818928054f9d655b79a9fc06fad93967db766347d9ed678795";
|
|
22
|
+
};
|
|
15
23
|
export declare const UNIT_VALUE = 10000000000000000n;
|