openclaw-overlay-plugin 0.8.13 → 0.8.15

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/index.js CHANGED
@@ -216,7 +216,7 @@ function stopBackgroundService() {
216
216
  }
217
217
  }
218
218
  export function register(api) {
219
- const version = "0.8.12";
219
+ const version = "0.8.15";
220
220
  if (isInitialized)
221
221
  return;
222
222
  isInitialized = true;
@@ -223,7 +223,7 @@ export class BSVAgentWallet {
223
223
  // 6. SQLite storage via knex
224
224
  const filePath = path.join(config.storageDir, `${DEFAULT_DB_NAME}.sqlite`);
225
225
  const knex = knexLib({
226
- client: 'better-sqlite3',
226
+ client: 'sqlite3',
227
227
  connection: { filename: filePath },
228
228
  useNullAsDefault: true,
229
229
  });
package/index.ts CHANGED
@@ -226,7 +226,7 @@ function stopBackgroundService() {
226
226
  }
227
227
 
228
228
  export function register(api: any) {
229
- const version = "0.8.12";
229
+ const version = "0.8.15";
230
230
  if (isInitialized) return;
231
231
  isInitialized = true;
232
232
 
@@ -2,7 +2,7 @@
2
2
  "id": "openclaw-overlay-plugin",
3
3
  "name": "BSV Overlay Network",
4
4
  "description": "OpenClaw Overlay — decentralized agent marketplace with BSV micropayments",
5
- "version": "0.8.13",
5
+ "version": "0.8.14",
6
6
  "skills": [
7
7
  "./SKILL.md"
8
8
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-overlay-plugin",
3
- "version": "0.8.13",
3
+ "version": "0.8.15",
4
4
  "description": "Openclaw BSV Overlay — agent discovery, service marketplace, and micropayments on the BSV blockchain",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -25,12 +25,12 @@
25
25
  "test": "npx tsx src/test/cli.test.ts && npx tsx src/test/taskflow.test.ts && npx tsx src/test/key-derivation.test.ts",
26
26
  "postversion": "node ../sync_versions.js",
27
27
  "lint": "eslint src/**/*.ts",
28
- "postinstall": "node -e \"try{require('better-sqlite3')}catch{console.log('Note: better-sqlite3 requires build tools. If install failed, ensure python3 and a C++ compiler are available.')}\""
28
+ "postinstall": "node -e \"try{require('sqlite3')}catch{console.log('Note: sqlite3 requires build tools if prebuilt binaries are unavailable.')}\""
29
29
  },
30
30
  "dependencies": {
31
31
  "@bsv/sdk": "^2.0.13",
32
32
  "@bsv/wallet-toolbox": "^2.1.18",
33
- "better-sqlite3": "11.3.0",
33
+ "sqlite3": "^5.1.7",
34
34
  "debug": "^4.4.0",
35
35
  "dotenv": "^17.3.1",
36
36
  "knex": "^3.1.0"
@@ -286,7 +286,7 @@ export class BSVAgentWallet {
286
286
  // 6. SQLite storage via knex
287
287
  const filePath = path.join(config.storageDir, `${DEFAULT_DB_NAME}.sqlite`);
288
288
  const knex = knexLib({
289
- client: 'better-sqlite3',
289
+ client: 'sqlite3',
290
290
  connection: { filename: filePath },
291
291
  useNullAsDefault: true,
292
292
  });