@xmtp/agent-sdk 1.1.4 → 1.1.6
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 +10 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -354,6 +354,16 @@ const agent = await Agent.create(signer, {
|
|
|
354
354
|
});
|
|
355
355
|
```
|
|
356
356
|
|
|
357
|
+
## LibXMTP Version
|
|
358
|
+
|
|
359
|
+
[LibXMTP](https://github.com/xmtp/libxmtp/) is a shared library encapsulating the core functionality of the XMTP messaging protocol, such as cryptography, networking, and language bindings. This version of the Agent SDK uses:
|
|
360
|
+
|
|
361
|
+
| XMTP Node SDK Version | LibXMTP Version |
|
|
362
|
+
| --------------------- | --------------- |
|
|
363
|
+
| 4.2.3 | 1.5.4 |
|
|
364
|
+
|
|
365
|
+
To verify which LibXMTP version is installed, run `npm why @xmtp/node-bindings` after installing the Agent SDK.
|
|
366
|
+
|
|
357
367
|
## Debugging
|
|
358
368
|
|
|
359
369
|
- [Debug an agent](https://docs.xmtp.org/agents/debug-agents)
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"@xmtp/content-type-remote-attachment": "^2.0.2",
|
|
9
9
|
"@xmtp/content-type-reply": "^2.0.2",
|
|
10
10
|
"@xmtp/content-type-text": "^2.0.2",
|
|
11
|
-
"@xmtp/node-sdk": "^4.2.
|
|
11
|
+
"@xmtp/node-sdk": "^4.2.3",
|
|
12
12
|
"uint8arrays": "^5.1.0",
|
|
13
13
|
"viem": "^2.37.6"
|
|
14
14
|
},
|
|
@@ -89,5 +89,5 @@
|
|
|
89
89
|
"typecheck": "tsc --noEmit"
|
|
90
90
|
},
|
|
91
91
|
"type": "module",
|
|
92
|
-
"version": "1.1.
|
|
92
|
+
"version": "1.1.6"
|
|
93
93
|
}
|