player-map 1.0.8 → 1.0.9

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.
@@ -1,4 +1,7 @@
1
1
  import { default as React } from 'react';
2
2
 
3
- declare const PlayerMapGraph: React.FC;
3
+ interface PlayerMapGraphProps {
4
+ walletAddress?: string;
5
+ }
6
+ declare const PlayerMapGraph: React.FC<PlayerMapGraphProps>;
4
7
  export default PlayerMapGraph;
@@ -1,2 +1,2 @@
1
- export declare const UNIT_VALUE = 1000000000000000n;
1
+ export declare const UNIT_VALUE = 25000000000000n;
2
2
  export declare const PREDEFINED_CLAIM_IDS: bigint[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "player-map",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -22,7 +22,7 @@
22
22
  "dependencies": {
23
23
  "@0xintuition/graphql": "^0.8.0",
24
24
  "axios": "^1.9.0",
25
- "playermap_graph": "^0.1.3"
25
+ "playermap_graph": "^0.1.4"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/react": "^18.2.0",