Skip to content
This repository was archived by the owner on Mar 30, 2026. It is now read-only.

Releases: NearDeFi/shade-agent-cli

v1.0.2

03 Oct 12:06
9bfe166

Choose a tag to compare

Non Breaking Changes

Fix phala deployment problems and require app name to be over 3 characters

v1.0.0

18 Jul 17:30
4d0a19f

Choose a tag to compare

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