This repository was archived by the owner on Mar 30, 2026. It is now read-only.
Releases: NearDeFi/shade-agent-cli
Releases · NearDeFi/shade-agent-cli
v1.0.2
v1.0.0
This new release is compatible with shade-agent-js version 1.0.0.
Breaking changes
This release includes breaking changes that can be resolved by updating your API image hash.
API Image Hash: a86e3a4300b069c08d629a38d61a3d780f7992eaf36aa505e4527e466553e2e5
Non Breaking Changes
This release adds support for:
- Flags
| Option / Flag | Description |
|---|---|
-w, --wasm <string> |
WASM path to deploy custom contract |
-f, --funding <string> |
Funding amount for contract account in NEAR |
-i, --image |
Just build and push the Docker image |
-c, --contract |
Build and push the Docker image, and deploy the contract |
-o, --phala-only |
Just deploy the app to Phala Cloud |
-d, --no-redeploy |
Skip redeploying the contract |
-b, --no-build |
Skip building and pushing the Docker image |
-p, --no-phala |
Skip deploying the app to Phala Cloud |
-e, --no-endpoint |
Skip printing the endpoint of the app |
-s, --no-cache |
Run docker build with --no-cache |
- Custom RPC selection
To use a non default RPC with the CLI create a near-rpc.json file in the same directory as your docker-compose.yaml file
{
"nearRpcProviders": [
{
"connectionInfo": {
"url": "https://neart.lava.build:443"
},
"options": {
"retries": 5,
"backoff": 2,
"wait": 1500
}
},
{
"connectionInfo": {
"url": "https://test.rpc.fastnear.com"
},
"options": {
"retries": 3,
"backoff": 2,
"wait": 1000
}
}
]
}If required you can specify headers under connectionInfo.
- Automatic fetching of the shade agent deployment URL