pyre-world-kit 3.1.0 → 3.1.1

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/util.js CHANGED
@@ -104,6 +104,9 @@ const DEFAULT_BLACKLIST = [
104
104
  'DkxahcwFnpSTSDpTSzaP8e8fhURXw8wYHes1GqEh9qpy',
105
105
  '7P6yWvgX1BdXnMvutt4FJbfhA8gtzwEFaYjfw1fV2zpy',
106
106
  '2iSsxTATxv1gu6P85fzMcnqidpiVhCokgUea4vkARFpy',
107
+ // wave 6 (devnet cleanup — torchsdk v4.0.1)
108
+ 'N7L7myyBVT4Sw7PsKQNqEf2mcwJygbTELqJcD9TkRpy',
109
+ 'BK9HTWwHvz4VSvr16pH2hTzszQmrEs58WEJMR3cucNpy',
107
110
  ];
108
111
  const BLACKLISTED_MINTS = new Set(DEFAULT_BLACKLIST);
109
112
  /** Add mints to the blacklist (call at startup with old mints) */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pyre-world-kit",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
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",
package/src/util.ts CHANGED
@@ -100,6 +100,9 @@ const DEFAULT_BLACKLIST = [
100
100
  'DkxahcwFnpSTSDpTSzaP8e8fhURXw8wYHes1GqEh9qpy',
101
101
  '7P6yWvgX1BdXnMvutt4FJbfhA8gtzwEFaYjfw1fV2zpy',
102
102
  '2iSsxTATxv1gu6P85fzMcnqidpiVhCokgUea4vkARFpy',
103
+ // wave 6 (devnet cleanup — torchsdk v4.0.1)
104
+ 'N7L7myyBVT4Sw7PsKQNqEf2mcwJygbTELqJcD9TkRpy',
105
+ 'BK9HTWwHvz4VSvr16pH2hTzszQmrEs58WEJMR3cucNpy',
103
106
  ]
104
107
 
105
108
  const BLACKLISTED_MINTS = new Set<string>(DEFAULT_BLACKLIST)