indelible-mcp 2.8.0 → 2.8.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/package.json +1 -1
- package/src/index.js +2 -2
- package/src/lib/spv.js +5 -4
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -223,7 +223,7 @@ Commands:
|
|
|
223
223
|
|
|
224
224
|
function printHelp() {
|
|
225
225
|
console.log(`
|
|
226
|
-
Indelible MCP — Blockchain memory for Claude Code (v2.8.
|
|
226
|
+
Indelible MCP — Blockchain memory for Claude Code (v2.8.1)
|
|
227
227
|
|
|
228
228
|
Setup:
|
|
229
229
|
indelible-mcp setup --wif=KEY --pin=PIN Import and encrypt your private key
|
|
@@ -324,7 +324,7 @@ function readStdin() {
|
|
|
324
324
|
|
|
325
325
|
const SERVER_INFO = {
|
|
326
326
|
name: 'indelible',
|
|
327
|
-
version: '2.8.
|
|
327
|
+
version: '2.8.1',
|
|
328
328
|
description: 'Blockchain-backed memory and code storage for Claude Code'
|
|
329
329
|
}
|
|
330
330
|
|
package/src/lib/spv.js
CHANGED
|
@@ -11,10 +11,11 @@ import { Transaction, P2PKH, PrivateKey, SatoshisPerKilobyte, LockingScript, OP
|
|
|
11
11
|
import { loadConfig } from './config.js'
|
|
12
12
|
|
|
13
13
|
const DEFAULT_SPV_BRIDGES = [
|
|
14
|
-
{ url: 'http://45.76.19.199:8080', name: 'SPV
|
|
15
|
-
{ url: 'http://144.202.50.135:8080', name: 'SPV
|
|
16
|
-
{ url: 'http://155.138.254.224:8080', name: '
|
|
17
|
-
{ url: 'http://107.191.49.18:8080', name: '
|
|
14
|
+
{ url: 'http://45.76.19.199:8080', name: 'SPV Relay 1' },
|
|
15
|
+
{ url: 'http://144.202.50.135:8080', name: 'SPV Relay 2' },
|
|
16
|
+
{ url: 'http://155.138.254.224:8080', name: 'SPV Relay 3' },
|
|
17
|
+
{ url: 'http://107.191.49.18:8080', name: 'SPV Relay 4' },
|
|
18
|
+
{ url: 'http://155.138.216.126:8080', name: 'SPV Relay 5' },
|
|
18
19
|
]
|
|
19
20
|
|
|
20
21
|
function getBridges() {
|