@layr-labs/ecloud-sdk 0.0.1-dev-rfc.1 → 0.0.1-dev.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/README.md +6 -2
- package/VERSION +2 -0
- package/dist/index.cjs +1757 -2565
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +694 -82
- package/dist/index.d.ts +694 -82
- package/dist/index.js +1675 -2520
- package/dist/index.js.map +1 -1
- package/package.json +7 -5
- package/tools/kms-client-linux-amd64 +0 -0
- package/tools/tls-keygen-linux-amd64 +0 -0
- package/dist/keys/mainnet-alpha/prod/kms-encryption-public-key.pem +0 -14
- package/dist/keys/mainnet-alpha/prod/kms-signing-public-key.pem +0 -4
- package/dist/keys/sepolia/dev/kms-encryption-public-key.pem +0 -14
- package/dist/keys/sepolia/dev/kms-signing-public-key.pem +0 -4
- package/dist/keys/sepolia/prod/kms-encryption-public-key.pem +0 -14
- package/dist/keys/sepolia/prod/kms-signing-public-key.pem +0 -4
- package/dist/templates/Dockerfile.layered.tmpl +0 -58
- package/dist/templates/compute-source-env.sh.tmpl +0 -110
package/README.md
CHANGED
|
@@ -5,6 +5,7 @@ A TypeScript SDK and CLI for deploying and managing applications on eigenx TEE (
|
|
|
5
5
|
## Overview
|
|
6
6
|
|
|
7
7
|
ECloud SDK enables developers to:
|
|
8
|
+
|
|
8
9
|
- Deploy containerized applications to ecloud TEE
|
|
9
10
|
- Manage application lifecycle (start, stop, terminate)
|
|
10
11
|
- Build and push Docker images with encryption
|
|
@@ -20,6 +21,7 @@ This monorepo contains two main packages:
|
|
|
20
21
|
The core TypeScript SDK for programmatic access to ecloud services.
|
|
21
22
|
|
|
22
23
|
**Features:**
|
|
24
|
+
|
|
23
25
|
- Type-safe client for ecloud operations
|
|
24
26
|
- Docker image building and pushing
|
|
25
27
|
- KMS encryption for secure deployments
|
|
@@ -31,6 +33,7 @@ The core TypeScript SDK for programmatic access to ecloud services.
|
|
|
31
33
|
Command-line interface built with oclif for deploying and managing applications.
|
|
32
34
|
|
|
33
35
|
**Features:**
|
|
36
|
+
|
|
34
37
|
- Deploy applications from Docker images
|
|
35
38
|
- Manage application lifecycle
|
|
36
39
|
- Environment-aware configuration
|
|
@@ -40,7 +43,7 @@ Command-line interface built with oclif for deploying and managing applications.
|
|
|
40
43
|
|
|
41
44
|
### Prerequisites
|
|
42
45
|
|
|
43
|
-
- Node.js 18+
|
|
46
|
+
- Node.js 18+
|
|
44
47
|
- pnpm (recommended) or npm
|
|
45
48
|
- Docker (for building and pushing images)
|
|
46
49
|
|
|
@@ -71,11 +74,13 @@ npx ecloud app deploy \
|
|
|
71
74
|
```
|
|
72
75
|
|
|
73
76
|
**Common Flags:**
|
|
77
|
+
|
|
74
78
|
- `--private-key`: Your Ethereum private key (or set `ECLOUD_PRIVATE_KEY` env var)
|
|
75
79
|
- `--environment`: Target environment (`sepolia` or `mainnet-alpha`)
|
|
76
80
|
- `--rpc-url`: Custom RPC URL (optional, or set `ECLOUD_RPC_URL` env var)
|
|
77
81
|
|
|
78
82
|
**Example:**
|
|
83
|
+
|
|
79
84
|
```bash
|
|
80
85
|
npx ecloud app deploy \
|
|
81
86
|
--private-key 0x... \
|
|
@@ -192,4 +197,3 @@ The deployment process involves several steps:
|
|
|
192
197
|
## Support
|
|
193
198
|
|
|
194
199
|
For issues and questions, please open an issue on GitHub.
|
|
195
|
-
|
package/VERSION
ADDED