@agentlayer.tech/wallet 0.1.69 → 0.1.70

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.
@@ -2,7 +2,7 @@
2
2
  "id": "agent-wallet",
3
3
  "name": "Agent Wallet",
4
4
  "description": "Official OpenClaw plugin bridge for the agent-wallet backends, including Solana, local BTC, and local EVM.",
5
- "version": "0.1.69",
5
+ "version": "0.1.70",
6
6
  "contracts": {
7
7
  "tools": [
8
8
  "agentlayer_autonomous_approve",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentlayertech/agent-wallet-plugin",
3
- "version": "0.1.69",
3
+ "version": "0.1.70",
4
4
  "description": "OpenClaw plugin bridge for the AgentLayer wallet runtime.",
5
5
  "type": "module",
6
6
  "license": "SEE LICENSE IN ../../../LICENSE",
package/CHANGELOG.md CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ - Fixed the npm `files` allowlist dropping `.env.example` for `wdk-evm-wallet`
6
+ and `wdk-btc-wallet`. Both templates are tracked in git and correctly
7
+ un-ignored (`!.env.example` in `.gitignore`), but the root `package.json`
8
+ `files` list enumerated each wdk package's shipped files individually and
9
+ omitted `.env.example` (unlike the `agent-wallet/.env.example` entry, which
10
+ was listed correctly). On a machine with no pre-existing `.env`,
11
+ `run-local.sh`'s self-heal (`cp .env.example .env`) failed under `set -eu`,
12
+ and the Python bridge surfaced this as an opaque "wdk-evm-wallet exited
13
+ before becoming healthy" with no indication that the template file itself
14
+ was missing from the installed package.
15
+ - `package.json`
16
+
5
17
  - Fixed local EVM autostart incorrectly trusting any healthy same-version
6
18
  `wdk-evm-wallet` already listening on the shared localhost port. If a temp or
7
19
  alternate `OPENCLAW_HOME` had left a daemon running, host runtimes could hit
package/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.69
1
+ 0.1.70
@@ -2,7 +2,7 @@
2
2
 
3
3
  # Keep in sync with package.json, pyproject.toml, and the npm installer version.
4
4
  # scripts/check_release_version.mjs enforces this on release.
5
- __version__ = "0.1.69"
5
+ __version__ = "0.1.70"
6
6
 
7
7
  __all__ = [
8
8
  "config",
@@ -2,7 +2,7 @@
2
2
  "id": "agent-wallet",
3
3
  "name": "Agent Wallet",
4
4
  "description": "Plugin-friendly wallet backend for OpenClaw agents with safe wallet tools and runtime instructions across Solana, local BTC, and local EVM.",
5
- "version": "0.1.69",
5
+ "version": "0.1.70",
6
6
  "skills": ["skills/wallet-operator"],
7
7
  "configSchema": {
8
8
  "type": "object",
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "openclaw-agent-wallet"
7
- version = "0.1.69"
7
+ version = "0.1.70"
8
8
  description = "Plugin-friendly wallet backend for OpenClaw agents"
9
9
  requires-python = ">=3.10"
10
10
  dependencies = [
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "agent-wallet",
3
3
  "displayName": "Agent Wallet",
4
- "version": "0.1.69",
4
+ "version": "0.1.70",
5
5
  "description": "Claude Code bridge for the existing AgentLayer wallet runtime. Connects to Solana, Bitcoin, and EVM wallets without creating a new one.",
6
6
  "author": {
7
7
  "name": "AgentLayer"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-wallet",
3
- "version": "0.1.69",
3
+ "version": "0.1.70",
4
4
  "description": "Codex plugin bridge for the AgentLayer wallet runtime.",
5
5
  "author": {
6
6
  "name": "AgentLayer"
@@ -1,5 +1,5 @@
1
1
  name: agent-wallet
2
- version: 0.1.69
2
+ version: 0.1.70
3
3
  description: Thin Hermes Agent bridge to the existing AgentLayer/OpenClaw wallet backend
4
4
  provides_tools:
5
5
  - agent_wallet_tools
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentlayer.tech/wallet",
3
- "version": "0.1.69",
3
+ "version": "0.1.70",
4
4
  "description": "NPM installer for the OpenClaw Agent Wallet local runtime.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -56,12 +56,14 @@
56
56
  "wdk-btc-wallet/README.md",
57
57
  "wdk-btc-wallet/package.json",
58
58
  "wdk-btc-wallet/package-lock.json",
59
+ "wdk-btc-wallet/.env.example",
59
60
  "wdk-evm-wallet/src/",
60
61
  "wdk-evm-wallet/bootstrap.sh",
61
62
  "wdk-evm-wallet/run-local.sh",
62
63
  "wdk-evm-wallet/README.md",
63
64
  "wdk-evm-wallet/package.json",
64
65
  "wdk-evm-wallet/package-lock.json",
66
+ "wdk-evm-wallet/.env.example",
65
67
  "!agent-wallet/**/__pycache__/**",
66
68
  "!agent-wallet/**/*.pyc",
67
69
  "!hermes/**/__pycache__/**",
@@ -0,0 +1,41 @@
1
+ HOST=127.0.0.1
2
+ PORT=8080
3
+
4
+ # Bitcoin network configuration from WDK docs:
5
+ # - bitcoin
6
+ # - testnet
7
+ # - regtest
8
+ # This is the initial active network. It can also be changed later via HTTP.
9
+ WDK_BTC_NETWORK=bitcoin
10
+
11
+ # Address derivation standard:
12
+ # - 84 for Native SegWit (default in current WDK BTC docs)
13
+ # - 44 for legacy compatibility
14
+ WDK_BTC_BIP=84
15
+
16
+ # Per-network Electrum profiles.
17
+ # Docs recommend your own Fulcrum/Electrum server for production.
18
+ WDK_BTC_BITCOIN_ELECTRUM_PROTOCOL=tcp
19
+ WDK_BTC_BITCOIN_ELECTRUM_HOST=electrum.blockstream.info
20
+ WDK_BTC_BITCOIN_ELECTRUM_PORT=50001
21
+
22
+ WDK_BTC_TESTNET_ELECTRUM_PROTOCOL=tcp
23
+ WDK_BTC_TESTNET_ELECTRUM_HOST=blockstream.info
24
+ WDK_BTC_TESTNET_ELECTRUM_PORT=143
25
+
26
+ WDK_BTC_REGTEST_ELECTRUM_PROTOCOL=tcp
27
+ WDK_BTC_REGTEST_ELECTRUM_HOST=127.0.0.1
28
+ WDK_BTC_REGTEST_ELECTRUM_PORT=60401
29
+
30
+ # Local encrypted vault directory for wallet registry + encrypted seed files.
31
+ WDK_BTC_DATA_DIR=
32
+
33
+ # Optional local auth token override.
34
+ # If unset, the service creates and reuses a token file under:
35
+ # ~/.openclaw/wdk-btc-wallet/local-auth-token
36
+ WDK_BTC_LOCAL_TOKEN=
37
+ WDK_BTC_LOCAL_TOKEN_PATH=
38
+
39
+ # How long unlocked wallets stay in memory.
40
+ # 0 means "stay unlocked until explicit lock or process restart".
41
+ WDK_BTC_UNLOCK_TIMEOUT_SECONDS=0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wdk-btc-wallet",
3
- "version": "0.1.69",
3
+ "version": "0.1.70",
4
4
  "private": true,
5
5
  "type": "module",
6
6
  "description": "Separate BTC-only wallet service built on Tether WDK.",
@@ -0,0 +1,29 @@
1
+ HOST=127.0.0.1
2
+ PORT=8081
3
+ WDK_EVM_NETWORK=sepolia
4
+ WDK_EVM_DATA_DIR=
5
+ WDK_EVM_LOCAL_TOKEN=
6
+ WDK_EVM_LOCAL_TOKEN_PATH=
7
+ WDK_EVM_UNLOCK_TIMEOUT_SECONDS=0
8
+ WDK_EVM_TRANSFER_MAX_FEE_WEI=
9
+ WDK_EVM_RPC_PROVIDER_MODE=gateway
10
+ WDK_EVM_RPC_GATEWAY_PROVIDER=alchemy
11
+ PROVIDER_GATEWAY_URL=https://agent-layer-production.up.railway.app
12
+ PROVIDER_GATEWAY_BEARER_TOKEN=
13
+ # Mainnet ethereum/base are forced through provider-gateway -> Alchemy.
14
+ # Direct per-network URLs below are only relevant for testnet-style paths.
15
+ WDK_EVM_ETHEREUM_RPC_URL=
16
+ WDK_EVM_SEPOLIA_RPC_URL=https://sepolia.drpc.org
17
+ WDK_EVM_BASE_RPC_URL=
18
+ WDK_EVM_BASE_SEPOLIA_RPC_URL=https://sepolia.base.org
19
+ MORPHO_API_BASE_URL=https://api.morpho.org/graphql
20
+ # Uniswap Trading API swap provider (ethereum/base, CLASSIC routing).
21
+ # Uniswap Trading API. By default the daemon routes quotes/swaps through the
22
+ # provider gateway (PROVIDER_GATEWAY_URL/v1/evm/uniswap), which holds the Uniswap
23
+ # key and authenticates via the gateway bearer — so no UNISWAP_API_KEY is needed
24
+ # here. Only set UNISWAP_API_KEY + point UNISWAP_TRADING_API_BASE_URL at Uniswap
25
+ # directly (https://trade-api.gateway.uniswap.org/v1) for legacy/offline direct mode.
26
+ UNISWAP_API_KEY=
27
+ # UNISWAP_TRADING_API_BASE_URL= # defaults to PROVIDER_GATEWAY_URL/v1/evm/uniswap
28
+ UNISWAP_ROUTER_VERSION=2.0
29
+ UNISWAP_DEFAULT_SLIPPAGE_BPS=300
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wdk-evm-wallet",
3
- "version": "0.1.69",
3
+ "version": "0.1.70",
4
4
  "private": true,
5
5
  "type": "module",
6
6
  "description": "Separate EVM wallet service built on Tether WDK.",