SVG Definitions

smart-account status

Check whether a smart account is deployed on a chain.

Checks if a smart account is deployed on a given chain. You can optionally provide a custom RPC URL.

Usage

namera smart-account status [--alias <name>] [--chain <chain>] [--rpc-url <url>]

Aliases:

  • Group alias: namera sa
  • Command alias: none

Flags

  • --alias, -a: Smart account alias
  • --chain: Chain name (must be a supported chain key)
  • --rpc-url: Custom RPC URL for the selected chain

Global flags:

  • --params: Raw JSON parameters for agent-driven execution
  • --output, -o: pretty, json, or ndjson
  • --quite, -q: Suppress output

If --alias or --chain is missing, the CLI will prompt you to select them. --rpc-url is optional.

Params mode (agents)

Use --params with the JSON schema for the command:

namera schema smart-account.status

Expected shape:

{
  "alias": "my-smart",
  "chain": "eth-mainnet",
  "rpcUrl": "https://rpc.ankr.com/eth"
}

rpcUrl is optional. If omitted, the CLI uses its default public RPC.

Output

On success, the command returns:

  • deployed: true or false

Examples

Explicit chain:

namera smart-account status -a my-smart --chain eth-mainnet

Custom RPC:

namera smart-account status --alias my-smart --chain eth-mainnet --rpc-url https://rpc.ankr.com/eth

Params mode (agents):

namera smart-account status --params '{"alias":"my-smart","chain":"eth-mainnet"}'

Short alias group:

namera sa status -a my-smart --chain eth-mainnet

Schema lookup:

namera schema smart-account.status