@barzkit/sdk 0.1.4 → 0.1.5
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/CHANGELOG.md +13 -0
- package/README.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.1.5] - 2026-03-02
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- `@barzkit/elizaos` — ElizaOS plugin for AI agent wallets (separate package in `plugins/elizaos/`)
|
|
13
|
+
- 8 actions: SEND_TRANSACTION, CHECK_BALANCE, SWAP_TOKENS, LEND_TOKENS, BATCH_TRANSACTIONS, FREEZE_WALLET, UNFREEZE_WALLET, FETCH_WITH_PAYMENT
|
|
14
|
+
- `BarzService` — ElizaOS service lifecycle for BarzKit smart accounts
|
|
15
|
+
- `walletProvider` — wallet context provider (address, balance, status)
|
|
16
|
+
- ElizaOS plugin documentation (`docs/advanced/elizaos-plugin.md`)
|
|
17
|
+
- `elizaos-agent` example
|
|
18
|
+
- `plugins/` directory structure for all `@barzkit` plugins
|
|
19
|
+
|
|
8
20
|
## [0.1.4] - 2026-03-01
|
|
9
21
|
|
|
10
22
|
### Added
|
|
@@ -101,6 +113,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
101
113
|
- `AgentEvent` type definitions for future event hooks
|
|
102
114
|
- Dual-package build: ESM (`.mjs`) + CJS (`.js`) + DTS (`.d.ts`)
|
|
103
115
|
|
|
116
|
+
[0.1.5]: https://github.com/barzkit/sdk/compare/v0.1.4...v0.1.5
|
|
104
117
|
[0.1.4]: https://github.com/barzkit/sdk/compare/v0.1.3...v0.1.4
|
|
105
118
|
[0.1.3]: https://github.com/barzkit/sdk/compare/v0.1.2...v0.1.3
|
|
106
119
|
[0.1.2]: https://github.com/barzkit/sdk/compare/v0.1.1...v0.1.2
|
package/README.md
CHANGED
|
@@ -159,7 +159,7 @@ See [examples](https://github.com/barzkit/examples) for complete working example
|
|
|
159
159
|
- [x] Multi-chain: Base Sepolia, Base mainnet
|
|
160
160
|
- [x] DeFi actions: swap, lend (Uniswap, Aave)
|
|
161
161
|
- [x] x402 payment handler
|
|
162
|
-
- [
|
|
162
|
+
- [x] ElizaOS plugin
|
|
163
163
|
- [ ] LangChain tool
|
|
164
164
|
- [ ] On-chain permission enforcement via Diamond Facets
|
|
165
165
|
|
package/package.json
CHANGED