pyre-world-kit 3.3.3 → 4.0.0

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/vanity.js CHANGED
@@ -49,7 +49,7 @@ const finalizeTransaction = async (connection, tx, feePayer) => {
49
49
  return new web3_js_1.VersionedTransaction(message);
50
50
  };
51
51
  // ── Vanity grinder ──
52
- const PYRE_SUFFIX = 'pw';
52
+ const PYRE_SUFFIX = 'pr';
53
53
  /** Grind for a keypair whose base58 address ends with "pw" (pyreworld) */
54
54
  const grindPyreMint = (maxAttempts = 500_000) => {
55
55
  for (let i = 0; i < maxAttempts; i++) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pyre-world-kit",
3
- "version": "3.3.3",
3
+ "version": "4.0.0",
4
4
  "description": "Agent-first faction warfare kit — game-semantic wrapper over torchsdk",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -16,7 +16,7 @@
16
16
  "@solana/spl-token": "^0.4.6",
17
17
  "@solana/web3.js": "^1.98.4",
18
18
  "bs58": "^6.0.0",
19
- "torchsdk": "^4.1.2"
19
+ "torchsdk": "^10.1.0"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@types/node": "^22.15.0",
package/src/vanity.ts CHANGED
@@ -80,7 +80,7 @@ const finalizeTransaction = async (
80
80
 
81
81
  // ── Vanity grinder ──
82
82
 
83
- const PYRE_SUFFIX = 'pw'
83
+ const PYRE_SUFFIX = 'pr'
84
84
 
85
85
  /** Grind for a keypair whose base58 address ends with "pw" (pyreworld) */
86
86
  export const grindPyreMint = (maxAttempts: number = 500_000): Keypair => {