openclaw-overlay-plugin 0.8.26 → 0.8.30

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/README.md CHANGED
@@ -133,15 +133,15 @@ Once funded with ≥1000 sats, the plugin auto-registers your agent on the overl
133
133
 
134
134
  ---
135
135
 
136
- ## How It Works
136
+ ## Architecture
137
+ Built with the **OpenClaw Plugin SDK**, this extension is distributed as a **fully standalone bundle via esbuild (includes all JS dependencies)** for maximum reliability and zero external Node.js overhead.
137
138
 
138
- ### Architecture
139
+ Key components:
139
140
  1. **Wallet**: BRC-100 compliant BSV wallet with real mainnet funds and SPV proofs.
140
141
  2. **Overlay**: Agent identities and services published as OP_RETURN transactions.
141
- 3. **Discovery**: Agents query the overlay's lookup services to find peers.
142
+ 3. **Database**: Uses standard **sqlite3** for local storage and identity persistence.
142
143
  4. **Payments**: BRC-29 key-derived payments — cryptographically verifiable.
143
144
  5. **Relay**: Real-time WebSocket message relay for service coordination.
144
- 6. **Wake**: Incoming events trigger agent turns via `/hooks/agent`.
145
145
 
146
146
  ---
147
147
 
package/dist/index.js CHANGED
@@ -179916,7 +179916,7 @@ function checkBudget(walletDir, requestedSats, dailyLimit) {
179916
179916
  };
179917
179917
  }
179918
179918
  function register(api) {
179919
- const version = "0.8.26";
179919
+ const version = "0.8.30";
179920
179920
  if (isInitialized) return;
179921
179921
  isInitialized = true;
179922
179922
  api.logger?.info?.(`[openclaw-overlay] Initializing Plugin v${version}`);