agentvault 1.0.0
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/.dfx/local/network-id +4 -0
- package/.next/trace +2 -0
- package/.vercel/README.txt +11 -0
- package/.vercel/project.json +1 -0
- package/AGENTS.md +43 -0
- package/CHANGELOG.md +196 -0
- package/LICENSE +21 -0
- package/PLAN_VAULT_INTEGRATION.md +318 -0
- package/README.md +253 -0
- package/backups/agentvault-backup-test-agent-2026-02-12T17-54-28-967Z.json +28 -0
- package/backups/agentvault-backup-test-agent-2026-02-12T17-54-29-032Z.backup +1 -0
- package/backups/agentvault-backup-test-agent-2026-02-12T17-57-42-373Z.json +28 -0
- package/backups/agentvault-backup-test-agent-2026-02-12T17-57-42-428Z.backup +1 -0
- package/backups/agentvault-backup-test-agent-2026-02-12T18-52-25-132Z.json +28 -0
- package/backups/agentvault-backup-test-agent-2026-02-12T18-52-25-247Z.backup +1 -0
- package/backups/agentvault-backup-test-agent-2026-02-12T18-54-09-216Z.json +28 -0
- package/backups/agentvault-backup-test-agent-2026-02-12T18-54-09-283Z.backup +1 -0
- package/backups/agentvault-backup-test-agent-2026-02-12T22-18-22-772Z.backup +1 -0
- package/backups/agentvault-backup-test-agent-2026-02-12T22-18-22-793Z.json +28 -0
- package/backups/test-backup.json +28 -0
- package/dist/cli/commands/approve.d.ts +4 -0
- package/dist/cli/commands/approve.js +232 -0
- package/dist/cli/commands/archive.d.ts +4 -0
- package/dist/cli/commands/archive.js +192 -0
- package/dist/cli/commands/backup.d.ts +4 -0
- package/dist/cli/commands/backup.js +164 -0
- package/dist/cli/commands/cloud-backup.d.ts +4 -0
- package/dist/cli/commands/cloud-backup.js +221 -0
- package/dist/cli/commands/cycles.d.ts +8 -0
- package/dist/cli/commands/cycles.js +83 -0
- package/dist/cli/commands/decrypt.d.ts +16 -0
- package/dist/cli/commands/decrypt.js +101 -0
- package/dist/cli/commands/deploy.d.ts +32 -0
- package/dist/cli/commands/deploy.js +208 -0
- package/dist/cli/commands/exec.d.ts +26 -0
- package/dist/cli/commands/exec.js +109 -0
- package/dist/cli/commands/fetch.d.ts +23 -0
- package/dist/cli/commands/fetch.js +164 -0
- package/dist/cli/commands/health.d.ts +8 -0
- package/dist/cli/commands/health.js +72 -0
- package/dist/cli/commands/identity.d.ts +8 -0
- package/dist/cli/commands/identity.js +140 -0
- package/dist/cli/commands/inference.d.ts +4 -0
- package/dist/cli/commands/inference.js +225 -0
- package/dist/cli/commands/info.d.ts +8 -0
- package/dist/cli/commands/info.js +59 -0
- package/dist/cli/commands/init.d.ts +19 -0
- package/dist/cli/commands/init.js +135 -0
- package/dist/cli/commands/instrument.d.ts +8 -0
- package/dist/cli/commands/instrument.js +35 -0
- package/dist/cli/commands/list.d.ts +36 -0
- package/dist/cli/commands/list.js +173 -0
- package/dist/cli/commands/logs.d.ts +8 -0
- package/dist/cli/commands/logs.js +96 -0
- package/dist/cli/commands/monitor.d.ts +8 -0
- package/dist/cli/commands/monitor.js +84 -0
- package/dist/cli/commands/network.d.ts +14 -0
- package/dist/cli/commands/network.js +258 -0
- package/dist/cli/commands/package.d.ts +36 -0
- package/dist/cli/commands/package.js +188 -0
- package/dist/cli/commands/profile.d.ts +8 -0
- package/dist/cli/commands/profile.js +76 -0
- package/dist/cli/commands/promote.d.ts +8 -0
- package/dist/cli/commands/promote.js +89 -0
- package/dist/cli/commands/rebuild.d.ts +21 -0
- package/dist/cli/commands/rebuild.js +140 -0
- package/dist/cli/commands/rollback.d.ts +8 -0
- package/dist/cli/commands/rollback.js +120 -0
- package/dist/cli/commands/show.d.ts +36 -0
- package/dist/cli/commands/show.js +200 -0
- package/dist/cli/commands/stats.d.ts +8 -0
- package/dist/cli/commands/stats.js +34 -0
- package/dist/cli/commands/status.d.ts +14 -0
- package/dist/cli/commands/status.js +83 -0
- package/dist/cli/commands/test.d.ts +8 -0
- package/dist/cli/commands/test.js +109 -0
- package/dist/cli/commands/tokens.d.ts +8 -0
- package/dist/cli/commands/tokens.js +62 -0
- package/dist/cli/commands/trace.d.ts +8 -0
- package/dist/cli/commands/trace.js +68 -0
- package/dist/cli/commands/wallet-export.d.ts +13 -0
- package/dist/cli/commands/wallet-export.js +140 -0
- package/dist/cli/commands/wallet-history.d.ts +10 -0
- package/dist/cli/commands/wallet-history.js +127 -0
- package/dist/cli/commands/wallet-import.d.ts +10 -0
- package/dist/cli/commands/wallet-import.js +209 -0
- package/dist/cli/commands/wallet-multi-send.d.ts +17 -0
- package/dist/cli/commands/wallet-multi-send.js +195 -0
- package/dist/cli/commands/wallet-process-queue.d.ts +19 -0
- package/dist/cli/commands/wallet-process-queue.js +209 -0
- package/dist/cli/commands/wallet-sign.d.ts +13 -0
- package/dist/cli/commands/wallet-sign.js +207 -0
- package/dist/cli/commands/wallet.d.ts +12 -0
- package/dist/cli/commands/wallet.js +794 -0
- package/dist/cli/index.d.ts +10 -0
- package/dist/cli/index.js +96 -0
- package/dist/vitest.config.d.ts +3 -0
- package/dist/vitest.config.js +14 -0
- package/fixup_1_0_OSS_release.md +136 -0
- package/fixup_REALEASE_PRD.md +136 -0
- package/package.json +79 -0
- package/pnpm-workspace.yaml +5 -0
- package/scripts/dev-dashboard.mjs +84 -0
- package/site/README.md +63 -0
- package/site/docusaurus.config.ts +148 -0
- package/site/package-lock.json +18383 -0
- package/site/package.json +47 -0
- package/site/sidebars.ts +86 -0
- package/site/static/.gitkeep +0 -0
- package/site/static/img/logo.svg +28 -0
- package/site/static/img/og-image.svg +35 -0
- package/src/archival/archive-manager.ts +372 -0
- package/src/archival/arweave-client.ts +289 -0
- package/src/archival/index.ts +8 -0
- package/src/backup/backup.ts +315 -0
- package/src/backup/index.ts +7 -0
- package/src/cloud-storage/cloud-sync.ts +461 -0
- package/src/cloud-storage/index.ts +11 -0
- package/src/cloud-storage/provider-detector.ts +198 -0
- package/src/cloud-storage/types.ts +104 -0
- package/src/debugging/index.ts +6 -0
- package/src/debugging/logs.ts +193 -0
- package/src/debugging/types.ts +100 -0
- package/src/deployment/deployer.ts +274 -0
- package/src/deployment/icpClient.ts +620 -0
- package/src/deployment/index.ts +46 -0
- package/src/deployment/promotion.ts +161 -0
- package/src/deployment/types.ts +111 -0
- package/src/icp/batch.ts +374 -0
- package/src/icp/cycles.ts +50 -0
- package/src/icp/environment.ts +215 -0
- package/src/icp/icpcli.ts +438 -0
- package/src/icp/icwasm.ts +222 -0
- package/src/icp/identity.ts +77 -0
- package/src/icp/index.ts +94 -0
- package/src/icp/optimization.ts +242 -0
- package/src/icp/tokens.ts +36 -0
- package/src/icp/tool-detector.ts +110 -0
- package/src/icp/types.ts +574 -0
- package/src/index.ts +25 -0
- package/src/inference/bittensor-client.ts +304 -0
- package/src/inference/index.ts +8 -0
- package/src/inference/inference-manager.ts +327 -0
- package/src/metrics/index.ts +7 -0
- package/src/metrics/metrics.ts +186 -0
- package/src/monitoring/alerting.ts +190 -0
- package/src/monitoring/health.ts +197 -0
- package/src/monitoring/index.ts +38 -0
- package/src/monitoring/info.ts +114 -0
- package/src/monitoring/types.ts +99 -0
- package/src/network/index.ts +5 -0
- package/src/network/network-config.ts +129 -0
- package/src/packaging/compiler.ts +647 -0
- package/src/packaging/config-persistence.ts +135 -0
- package/src/packaging/config-schemas.ts +156 -0
- package/src/packaging/detector.ts +220 -0
- package/src/packaging/index.ts +90 -0
- package/src/packaging/packager.ts +118 -0
- package/src/packaging/parsers/clawdbot.ts +278 -0
- package/src/packaging/parsers/cline.ts +223 -0
- package/src/packaging/parsers/generic.ts +266 -0
- package/src/packaging/parsers/goose.ts +214 -0
- package/src/packaging/parsers/index.ts +11 -0
- package/src/packaging/serializer.ts +260 -0
- package/src/packaging/types.ts +144 -0
- package/src/packaging/wasmedge-compiler.ts +406 -0
- package/src/security/index.ts +17 -0
- package/src/security/multisig.ts +415 -0
- package/src/security/types.ts +416 -0
- package/src/security/vetkeys.ts +655 -0
- package/src/testing/index.ts +6 -0
- package/src/testing/local-runner.ts +264 -0
- package/src/testing/types.ts +104 -0
- package/src/wallet/cbor-serializer.ts +323 -0
- package/src/wallet/chain-dispatcher.ts +313 -0
- package/src/wallet/cross-chain-aggregator.ts +346 -0
- package/src/wallet/index.ts +76 -0
- package/src/wallet/key-derivation.ts +425 -0
- package/src/wallet/providers/base-provider.ts +154 -0
- package/src/wallet/providers/cketh-provider.ts +434 -0
- package/src/wallet/providers/polkadot-provider.ts +503 -0
- package/src/wallet/providers/solana-provider.ts +490 -0
- package/src/wallet/transaction-queue.ts +284 -0
- package/src/wallet/types.ts +178 -0
- package/src/wallet/vetkeys-adapter.ts +431 -0
- package/src/wallet/wallet-manager.ts +597 -0
- package/src/wallet/wallet-storage.ts +380 -0
- package/vercel.json +8 -0
package/README.md
ADDED
|
@@ -0,0 +1,253 @@
|
|
|
1
|
+
# AgentVault
|
|
2
|
+
|
|
3
|
+
**Persistent On-Chain AI Agent Platform - Sovereign, Reconstructible, Autonomous**
|
|
4
|
+
|
|
5
|
+
AgentVault is an open-source CLI and canister system that enables true autonomy for local AI agents. Deploy agents to Internet Computer (ICP) canisters for persistent, 24/7 execution without browser dependencies.
|
|
6
|
+
|
|
7
|
+
## Features
|
|
8
|
+
|
|
9
|
+
- **Agent Packaging**: Compile TypeScript agents to WASM
|
|
10
|
+
- **Canister Deployment**: Deploy to ICP local replica or mainnet
|
|
11
|
+
- **State Management**: Query, fetch, and reconstruct agent state
|
|
12
|
+
- **Multi-Chain Wallets**: ICP, Ethereum, Polkadot, Solana support
|
|
13
|
+
- **VetKeys Integration**: Threshold key derivation for secure secrets
|
|
14
|
+
- **Monitoring**: Health checks, metrics, and alerting
|
|
15
|
+
- **Archival**: Arweave integration for permanent storage
|
|
16
|
+
- **AI Inference**: Bittensor network integration
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
|
|
20
|
+
### From npm (Recommended)
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
npm install -g agentvault
|
|
24
|
+
agentvault --help
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
### From Source
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
git clone https://github.com/anomalyco/agentvault.git
|
|
31
|
+
cd agentvault
|
|
32
|
+
npm install
|
|
33
|
+
npm run build
|
|
34
|
+
node dist/cli/index.js --help
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### Prerequisites
|
|
38
|
+
|
|
39
|
+
- Node.js 18+
|
|
40
|
+
- dfx (Internet Computer SDK) - for canister deployment
|
|
41
|
+
- TypeScript 5.7+
|
|
42
|
+
|
|
43
|
+
## Quick Start
|
|
44
|
+
|
|
45
|
+
### 1. Initialize a New Agent Project
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
agentvault init my-agent
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
This creates a `.agentvault/` directory with agent configuration.
|
|
52
|
+
|
|
53
|
+
### 2. Package Your Agent
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
agentvault package ./my-agent
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
Compiles your agent to WASM and generates deployment artifacts.
|
|
60
|
+
|
|
61
|
+
### 3. Start Local ICP Replica
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
dfx start --background
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
### 4. Deploy to Canister
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
agentvault deploy --network local
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
### 5. Execute Agent
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
agentvault exec --canister-id <your-canister-id> "your task"
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
### 6. Query Agent State
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
agentvault show --canister-id <your-canister-id>
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### 7. Fetch State for Local Rebuild
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
agentvault fetch --canister-id <your-canister-id>
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
## CLI Commands
|
|
92
|
+
|
|
93
|
+
### Core Commands
|
|
94
|
+
|
|
95
|
+
| Command | Description |
|
|
96
|
+
|---------|-------------|
|
|
97
|
+
| `init` | Initialize a new AgentVault project |
|
|
98
|
+
| `package` | Package agent directory to WASM |
|
|
99
|
+
| `deploy` | Deploy agent to ICP canister |
|
|
100
|
+
| `exec` | Execute task on canister |
|
|
101
|
+
| `show` | Show agent state |
|
|
102
|
+
| `fetch` | Download agent state from canister |
|
|
103
|
+
| `status` | Display project status |
|
|
104
|
+
| `list` | List all agents |
|
|
105
|
+
|
|
106
|
+
### Wallet Commands
|
|
107
|
+
|
|
108
|
+
| Command | Description |
|
|
109
|
+
|---------|-------------|
|
|
110
|
+
| `wallet` | Manage agent wallets |
|
|
111
|
+
| `identity` | Manage ICP identities |
|
|
112
|
+
| `cycles` | Manage canister cycles |
|
|
113
|
+
| `tokens` | Query token balances |
|
|
114
|
+
|
|
115
|
+
### Monitoring Commands
|
|
116
|
+
|
|
117
|
+
| Command | Description |
|
|
118
|
+
|---------|-------------|
|
|
119
|
+
| `monitor` | Monitor canister health |
|
|
120
|
+
| `health` | Run health checks |
|
|
121
|
+
| `info` | Get canister information |
|
|
122
|
+
| `stats` | View canister statistics |
|
|
123
|
+
| `logs` | View canister logs |
|
|
124
|
+
|
|
125
|
+
### Advanced Commands
|
|
126
|
+
|
|
127
|
+
| Command | Description | Status |
|
|
128
|
+
|---------|-------------|--------|
|
|
129
|
+
| `backup` | Backup agent data | Stable |
|
|
130
|
+
| `rebuild` | Rebuild agent from state | Stable |
|
|
131
|
+
| `promote` | Promote canister between environments | Stable |
|
|
132
|
+
| `rollback` | Rollback canister deployment | Stable |
|
|
133
|
+
| `inference` | Query AI inference services | Experimental |
|
|
134
|
+
| `archive` | Archive to Arweave | Experimental |
|
|
135
|
+
| `approve` | Multi-signature approvals | Experimental |
|
|
136
|
+
| `profile` | Profile canister performance | Experimental |
|
|
137
|
+
| `trace` | View execution traces | Experimental |
|
|
138
|
+
|
|
139
|
+
## Environment Variables
|
|
140
|
+
|
|
141
|
+
### ICP Configuration
|
|
142
|
+
|
|
143
|
+
```bash
|
|
144
|
+
ICP_LOCAL_URL=http://127.0.0.1:4943 # Local replica URL
|
|
145
|
+
ICP_MAINNET_URL=https://ic0.app # Mainnet URL
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
### RPC Endpoints
|
|
149
|
+
|
|
150
|
+
```bash
|
|
151
|
+
# Ethereum
|
|
152
|
+
ETHEREUM_RPC_URL=https://eth.example.com
|
|
153
|
+
INFURA_API_KEY=your-key
|
|
154
|
+
ETHERSCAN_API_KEY=your-key
|
|
155
|
+
|
|
156
|
+
# Solana
|
|
157
|
+
SOLANA_RPC_URL=https://api.mainnet-beta.solana.com
|
|
158
|
+
SOLANA_MAINNET_RPC_URL=https://api.mainnet-beta.solana.com
|
|
159
|
+
SOLANA_DEVNET_RPC_URL=https://api.devnet.solana.com
|
|
160
|
+
|
|
161
|
+
# Polkadot
|
|
162
|
+
POLKADOT_RPC_URL=wss://rpc.polkadot.io
|
|
163
|
+
KUSAMA_RPC_URL=wss://kusama-rpc.polkadot.io
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
## Project Structure
|
|
167
|
+
|
|
168
|
+
```
|
|
169
|
+
agentvault/
|
|
170
|
+
├── src/ # Core TypeScript library
|
|
171
|
+
│ ├── deployment/ # ICP client and deployment
|
|
172
|
+
│ ├── packaging/ # WASM compilation
|
|
173
|
+
│ ├── canister/ # Actor bindings
|
|
174
|
+
│ ├── wallet/ # Multi-chain wallet
|
|
175
|
+
│ ├── security/ # VetKeys and encryption
|
|
176
|
+
│ ├── monitoring/ # Health and metrics
|
|
177
|
+
│ ├── archival/ # Arweave client
|
|
178
|
+
│ └── inference/ # Bittensor client
|
|
179
|
+
├── cli/ # CLI commands
|
|
180
|
+
├── canister/ # Motoko canister code
|
|
181
|
+
├── webapp/ # Next.js dashboard
|
|
182
|
+
├── tests/ # Test suite (508 tests)
|
|
183
|
+
└── examples/ # Sample agents
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
## Documentation (v1.0)
|
|
187
|
+
|
|
188
|
+
- **Website**: https://agentvault.cloud
|
|
189
|
+
- [Documentation index](docs/user/index-v1.0.md)
|
|
190
|
+
- [Comprehensive tutorial](docs/user/tutorial-v1.0.md)
|
|
191
|
+
- [Clawdbot/Claude skill runbook](docs/user/clawdbot-claude-skill.md)
|
|
192
|
+
|
|
193
|
+
## Development
|
|
194
|
+
|
|
195
|
+
```bash
|
|
196
|
+
npm run dev # Development mode with watch
|
|
197
|
+
npm run dev:dashboard # Run core + web dashboard together
|
|
198
|
+
npm run dev:webapp # Run only Next.js dashboard
|
|
199
|
+
npm run build # Build TypeScript
|
|
200
|
+
npm run test # Run test suite
|
|
201
|
+
npm run test:watch # Run tests in watch mode
|
|
202
|
+
npm run typecheck # TypeScript type checking
|
|
203
|
+
npm run typecheck:webapp # Dashboard type checking
|
|
204
|
+
npm run lint # ESLint
|
|
205
|
+
npm run lint:fix # ESLint with auto-fix
|
|
206
|
+
```
|
|
207
|
+
|
|
208
|
+
## Testing
|
|
209
|
+
|
|
210
|
+
AgentVault has 508 tests covering:
|
|
211
|
+
|
|
212
|
+
- CLI commands (init, deploy, package, status)
|
|
213
|
+
- ICP client (connection, deployment, execution)
|
|
214
|
+
- Packaging (compiler, detector, packager)
|
|
215
|
+
- Integration tests
|
|
216
|
+
|
|
217
|
+
```bash
|
|
218
|
+
npm run test
|
|
219
|
+
```
|
|
220
|
+
|
|
221
|
+
## Known Limitations
|
|
222
|
+
|
|
223
|
+
| Feature | Status |
|
|
224
|
+
|---------|--------|
|
|
225
|
+
| Core flow (init → package → deploy → exec → fetch) | ✅ Working |
|
|
226
|
+
| Wallet crypto (real elliptic curves) | ⚠️ Basic SHA-256 |
|
|
227
|
+
| VetKeys threshold signatures | ⚠️ Simulated |
|
|
228
|
+
| Bittensor inference | ⚠️ Requires API access |
|
|
229
|
+
| Arweave archival | ⚠️ Requires wallet setup |
|
|
230
|
+
| Backup/restore | ⚠️ Manifest only |
|
|
231
|
+
|
|
232
|
+
## Contributing
|
|
233
|
+
|
|
234
|
+
Contributions are welcome! Please:
|
|
235
|
+
|
|
236
|
+
1. Fork the repository
|
|
237
|
+
2. Create a feature branch
|
|
238
|
+
3. Run tests and linting
|
|
239
|
+
4. Submit a pull request
|
|
240
|
+
|
|
241
|
+
## License
|
|
242
|
+
|
|
243
|
+
MIT License - see [LICENSE](./LICENSE).
|
|
244
|
+
|
|
245
|
+
## Resources
|
|
246
|
+
|
|
247
|
+
- **Website**: https://agentvault.cloud
|
|
248
|
+
- **Documentation**: https://agentvault.cloud/docs
|
|
249
|
+
- **npm**: https://www.npmjs.com/package/agentvault
|
|
250
|
+
- [Product Requirements Document](./docs/PRD.md)
|
|
251
|
+
- [Implementation Plan](./AI_DOCS/)
|
|
252
|
+
- [Changelog](./CHANGELOG.md)
|
|
253
|
+
- [ICP Documentation](https://internetcomputer.org/docs/)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0",
|
|
3
|
+
"agentId": "test-agent",
|
|
4
|
+
"exportedAt": 1770918868967,
|
|
5
|
+
"format": "json",
|
|
6
|
+
"wallets": [
|
|
7
|
+
{
|
|
8
|
+
"id": "wallet-1",
|
|
9
|
+
"agentId": "test-agent",
|
|
10
|
+
"chain": "cketh",
|
|
11
|
+
"address": "0x1234567890abcdef1234567890abcdef12345678",
|
|
12
|
+
"privateKey": "0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890",
|
|
13
|
+
"createdAt": 1770918868967,
|
|
14
|
+
"updatedAt": 1770918868967,
|
|
15
|
+
"creationMethod": "private-key"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"id": "wallet-2",
|
|
19
|
+
"agentId": "test-agent",
|
|
20
|
+
"chain": "cketh",
|
|
21
|
+
"address": "0x1234567890abcdef1234567890abcdef12345678",
|
|
22
|
+
"privateKey": "0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890",
|
|
23
|
+
"createdAt": 1770918868967,
|
|
24
|
+
"updatedAt": 1770918868967,
|
|
25
|
+
"creationMethod": "private-key"
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"encrypted":"601fecd19c66b7208418848c25fc5ab223b694d01f3e3a841dedd7c1c8e99a45223092b8b14c8a5bb54e4099944bac5c937725009efa33282d97eed87b5d5f8d2b7a79792b22627b703dff7d8d21d94fe18637acac331c5ef5269af7f57fb3ded7ba073803c04961c7e12a277d9655331afd0e92240701d44dfeae03b584e0f20cf283aadafcdd7997145316792302abcc5400d9a13cef0e74c8b72c9f66be6664a1797757240cd1a84d08329dfa0d254462945b83d6bb55e4c7f37b2fcee1db39630df81320f8d2e5e38ed2af7bb0ee750357233d9c86289f13afcf549b945e41f944607a36d440c5a0310cf373777385aa98c3aa5af83f53766c2d1e3035f85be4173cc4358132383f06970f16c1d7c2064114284526043cad36533323d7d6b0ddebf4e1de4c3a4eb795dc666c292d7b81bb8e1da78b02c2568ff0fa0608cf52cad455aa02a9c74393fe4a84e996a70de0a02c054f9e41d808ae24bf22692c32a12e7a7b19dc1b5427935c809aa00fd4cc42e063d19674d6427f4b47c3cb5e2fabb1cca37f19104c30497a553f0c4ba74522dea156434ed3172794b3511818a5e2e78e500e0ca25e08eb0bfe07f34fbc819cd3688b4e243a5ea525314824f82b9ab190338ae2e178c4fb0242f776231b3dd97e3e14f7f27e6892.feb08a8a8fd6b9be8bcbd441aa83e67c"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0",
|
|
3
|
+
"agentId": "test-agent",
|
|
4
|
+
"exportedAt": 1770919062374,
|
|
5
|
+
"format": "json",
|
|
6
|
+
"wallets": [
|
|
7
|
+
{
|
|
8
|
+
"id": "wallet-1",
|
|
9
|
+
"agentId": "test-agent",
|
|
10
|
+
"chain": "cketh",
|
|
11
|
+
"address": "0x1234567890abcdef1234567890abcdef12345678",
|
|
12
|
+
"privateKey": "0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890",
|
|
13
|
+
"createdAt": 1770919062373,
|
|
14
|
+
"updatedAt": 1770919062373,
|
|
15
|
+
"creationMethod": "private-key"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"id": "wallet-2",
|
|
19
|
+
"agentId": "test-agent",
|
|
20
|
+
"chain": "cketh",
|
|
21
|
+
"address": "0x1234567890abcdef1234567890abcdef12345678",
|
|
22
|
+
"privateKey": "0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890",
|
|
23
|
+
"createdAt": 1770919062373,
|
|
24
|
+
"updatedAt": 1770919062373,
|
|
25
|
+
"creationMethod": "private-key"
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"encrypted":"24a771888039381d577a63fe00df9329cc4a9146db72eec35f206749f86d4745230bf150284b6c88505c368db132b4c216b70300e9c54aa37a797288e29bd43bebb281fe677fbd2c51202b04d7fac922927b1eda8da57cfc37de77f5765c79eac282e63d8c318346dc42e43864efb9566c12da3a8f66f06bace75bc4791c46c37aca495fb47e256ce0d4310713c093105d458e809673641b0e219b9509dff9811654de30a43e32bb6e333dfc55238e2a7d549deac02d1e2eb3523153eee504e0abc57a801127c8809e7fef3109a68949bff235442c936cae8438fb782508b3213d37880303f1b446b1ddf7d286c8b85d2dd78da37c02b1551acb791aeaa44ebaa5f8e22d1fa85acb28ea69e4588def5259b2caa6ed85cc48e2b74862c3f1d9b8450e43ecc14c8f5345afdc8321ed0cde0255bc60ad80c290ad1a5ade52588b076c0f48d2c0e880f3be83037b10c382348d85e23a89214307ad421b7ceb40086919e5aa0e552a5d4e2e33edba5fd7b4a0be369efe3a64d712ace867d38abe6172ead9c6395f44791b955a2ae0eae1450645cfac5fce67101635bc2ca6cce07ee4afcfe2864500da777fbd425d3e5e7614b22177478012f77826efe682af73e6ed92e479fcf234020ab065483efc6f0318368bdf501eb0bf6250f4dd.7aefcc7265f58c652c096d39067b9806"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0",
|
|
3
|
+
"agentId": "test-agent",
|
|
4
|
+
"exportedAt": 1770922345133,
|
|
5
|
+
"format": "json",
|
|
6
|
+
"wallets": [
|
|
7
|
+
{
|
|
8
|
+
"id": "wallet-1",
|
|
9
|
+
"agentId": "test-agent",
|
|
10
|
+
"chain": "cketh",
|
|
11
|
+
"address": "0x1234567890abcdef1234567890abcdef12345678",
|
|
12
|
+
"privateKey": "0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890",
|
|
13
|
+
"createdAt": 1770922345132,
|
|
14
|
+
"updatedAt": 1770922345132,
|
|
15
|
+
"creationMethod": "private-key"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"id": "wallet-2",
|
|
19
|
+
"agentId": "test-agent",
|
|
20
|
+
"chain": "cketh",
|
|
21
|
+
"address": "0x1234567890abcdef1234567890abcdef12345678",
|
|
22
|
+
"privateKey": "0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890",
|
|
23
|
+
"createdAt": 1770922345132,
|
|
24
|
+
"updatedAt": 1770922345132,
|
|
25
|
+
"creationMethod": "private-key"
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"encrypted":"6327bb22b39ebc91b780f3b3405f99b540aa8b8da54ef348372b333007db38c29cbb90aae4deebb0651c109302c466de03bddfcf14007de39a0ec1fc06467f5b5ea54cb4ac50e55b05ec2219d2492baaeb2fb156cc7a967470332738d411281605b4dc3c6596cd58352715ec865bb0bafcb9c8842e053b32660eaf623acb6098c92b92b088a06b3990c74a2c40045cecbbbc40c215083ff5e0c8a5042f20604c20c38622dd8edb8df09635590fc4e3d7867f1c044d3ae4648fffd25fee767433f393c4e6fed78a82fae705d919566df1e7eac98ba01542e1cba0bd3f5952527b2a7894fe74cd239c1c9953310de8c37beaacff376ad13e8b57829d8daacb2540dfb1e6a4c8a6f0cf866a629879bbca811830f7aa2a109a45a20e4e1996e32b88c76269d348044e9012e69263e358aeedf5c565ef225ada153531cc4cd26f8d195c824c798e4218df62eb69fea4fec2c818db73621957ef85dfa1d48aa0ed0ff8029ca9762fee9520de2163b491412cf1a184fdd890ecfc904b16db92703678a08013064cec3980eaaa564e9e41e1a2635465ab79240ff1137c1d3e0c28516b6277bd7e7d329a0890587ea8f4fa9fedd3fd21e981d167c6f4f509719fddfc98f3a98632a919ecaaea01e984139c5ed9c4d755460d41bf73ca3c4a20.36ed2be30022b68e47c1a001c5ab6633"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0",
|
|
3
|
+
"agentId": "test-agent",
|
|
4
|
+
"exportedAt": 1770922449216,
|
|
5
|
+
"format": "json",
|
|
6
|
+
"wallets": [
|
|
7
|
+
{
|
|
8
|
+
"id": "wallet-1",
|
|
9
|
+
"agentId": "test-agent",
|
|
10
|
+
"chain": "cketh",
|
|
11
|
+
"address": "0x1234567890abcdef1234567890abcdef12345678",
|
|
12
|
+
"privateKey": "0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890",
|
|
13
|
+
"createdAt": 1770922449209,
|
|
14
|
+
"updatedAt": 1770922449209,
|
|
15
|
+
"creationMethod": "private-key"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"id": "wallet-2",
|
|
19
|
+
"agentId": "test-agent",
|
|
20
|
+
"chain": "cketh",
|
|
21
|
+
"address": "0x1234567890abcdef1234567890abcdef12345678",
|
|
22
|
+
"privateKey": "0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890",
|
|
23
|
+
"createdAt": 1770922449209,
|
|
24
|
+
"updatedAt": 1770922449209,
|
|
25
|
+
"creationMethod": "private-key"
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"encrypted":"da6dc94ce5ddc2fa316b86ffc93e33dd5005c73536eb8b970403ce0007ab9a1d5861df815a30bea164d55c71333c7ccead0ad1133365fe94a2b42d63059a8904c3fa8db39ea6021a2f6ffedf961cbcb89ef4e1e6f5d690719e7c244d8ce65477e43b0e1627af287df6d445218e2979abf486d619ed0e1991e403f0c59c010fb016f5ce4d384d873aa2efc33a7418b53b047323e36679cd7e6c81bb75375fbb911da34de78c25e0f7c0a13cc6333719eeb9fb0624d64baf9f1855e2c5ebc7f171e090de6a6985f1eb08de5076251d01f94737d6849de59400305ea0a3325467f690f73ad816d74379c976e67da5623613512bc3bd3908fc30f842d7d47d7df8f535e792b0c7ae5106f1fd0ad6e1b587f9431e302c90ed57554104f82ae0a1e75b7881d85f671d97bc624058017beb26d0cd637ecaed3194acd18c5883152bd925ef3dfcb83ecb6fc22dfdb022f48ba3f8fdd1a702cb6dca202dc48a85079d348e5124e6a8351f87b0119c17e2102c0fee094a9abce58f53d57b28ed20f552a2fc1b7c99537624d67becb12ff196c1c5cd401e2bb3d4fdba6cb6e1ddbe00bfe5c45d8e20426df80fee7e62b520696fec1f0b23b30c861cb6e1b2a89aa7561ec897c22ce02bace4f21be511b76c52900eaed2fe60b8cc45daf488d29f.d7869a1924b7c6f7a65146e053409960"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"encrypted":"2dd98d8fdb2707830c917802d1acde9f94dd31a8ee62612323c5c81f5c4fda15c4764f5ddf7ba7c90048d280d7005656177a8d184d6b60868480821dba3826f582e4d25d8d8c4ffe985da64a56d00c409677ab2e1857cd08f4ef1b0bc5e0a0e31d1d524ab717a4ec25deb9ee0f20e4e423bbf09b8b7d302bf389d6e93a75d5ab1b01b31c8d2e5436cb22e077b07ce69bf3b7fe52c14b757f89bbf6fc62ce687589f494ef5822c9cf22c81c3ce502fab75dc77684b6c1c39c025d7ffba968f80974bf40509a1599342f16b446bff6c001450087cd23d8887bdaa83d4bf0679a5347e064a0f5e49c0a0f138a20c6d722acf56b2245b58f07dc73b49a3e698fbb23681813106ee5e0f9093cd97840e1abc698d817be04e980305c05f38dc60bcb10d5fd1d38384eb831dc629055e4b58ff3a99e08f98da688bfd99fcd723a9c98c054141d7343428d3d3262c06b66ef7b1579804d4318a600e51a5b1cb722248d25dfbd1f7ea2c186d513c7bbbfea29911861ab2aa190f108eab4f9c31a0e8e345048d8dabb1eb4cc818721f74d663111fc9a27ae11cb945ec2a65f7132ed4dde14c28d86bb54b30dd1044b7fc3b7c2a00d1a2b64a9bcacd8c2ffb316214c3d5dfed61f410347eb1ae1828b37c063eb92f8dd44774e907b32aa203c98.0b0e2b98e9d80607a998eb6157697e4c"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0",
|
|
3
|
+
"agentId": "test-agent",
|
|
4
|
+
"exportedAt": 1770934702794,
|
|
5
|
+
"format": "json",
|
|
6
|
+
"wallets": [
|
|
7
|
+
{
|
|
8
|
+
"id": "wallet-1",
|
|
9
|
+
"agentId": "test-agent",
|
|
10
|
+
"chain": "cketh",
|
|
11
|
+
"address": "0x1234567890abcdef1234567890abcdef12345678",
|
|
12
|
+
"privateKey": "0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890",
|
|
13
|
+
"createdAt": 1770934702793,
|
|
14
|
+
"updatedAt": 1770934702793,
|
|
15
|
+
"creationMethod": "private-key"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"id": "wallet-2",
|
|
19
|
+
"agentId": "test-agent",
|
|
20
|
+
"chain": "cketh",
|
|
21
|
+
"address": "0x1234567890abcdef1234567890abcdef12345678",
|
|
22
|
+
"privateKey": "0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890",
|
|
23
|
+
"createdAt": 1770934702793,
|
|
24
|
+
"updatedAt": 1770934702793,
|
|
25
|
+
"creationMethod": "private-key"
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0",
|
|
3
|
+
"agentId": "test-agent",
|
|
4
|
+
"exportedAt": 1771032384251,
|
|
5
|
+
"format": "json",
|
|
6
|
+
"wallets": [
|
|
7
|
+
{
|
|
8
|
+
"id": "wallet-1",
|
|
9
|
+
"agentId": "test-agent",
|
|
10
|
+
"chain": "cketh",
|
|
11
|
+
"address": "0x1234567890abcdef1234567890abcdef12345678",
|
|
12
|
+
"privateKey": "0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890",
|
|
13
|
+
"createdAt": 1771032384247,
|
|
14
|
+
"updatedAt": 1771032384247,
|
|
15
|
+
"creationMethod": "private-key"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"id": "wallet-2",
|
|
19
|
+
"agentId": "test-agent",
|
|
20
|
+
"chain": "cketh",
|
|
21
|
+
"address": "0x1234567890abcdef1234567890abcdef12345678",
|
|
22
|
+
"privateKey": "0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890",
|
|
23
|
+
"createdAt": 1771032384247,
|
|
24
|
+
"updatedAt": 1771032384247,
|
|
25
|
+
"creationMethod": "private-key"
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
}
|