Dubhe CLI for Sui
Before getting started with Dubhe CLI, please install the required dependencies:
pnpm install -D @0xobelisk/sui-cli @0xobelisk/sui-commonNote: @0xobelisk/sui-common contains essential configuration type definitions like DubheConfig.
The Dubhe CLI
The Dubhe CLI is a development toolkit for building and managing Dubhe projects on the Sui blockchain.
Core features:
generate: Generate Move code automatically from yourdubhe.config.tspublish: Deploy your Dubhe projects to any Sui network (mainnet/testnet/devnet/localnet)upgrade: Upgrade your Dubhe Move contractsnode: Manage local Sui node for developmentfaucet: Interface with Sui faucets to fund addresses on testnet/devnet/localnetgenerate-key: Generate a new account key pair and save it to a .env filecheck-balance: Check the balance of the accountstore-config: Store configuration for the Dubhe projectbuild: Build Dubhe Move contractstest: Run tests for Dubhe contractsdoctor: Check development environment and install required toolswait: Wait for services to be readywatch: Watch configuration file for changesswitch-env: Switch between different network environmentsconvert-json: Convert Dubhe config to JSON formatload-metadata: Load package metadatainfo: Display account and network information
Installation
The CLI should be installed as a project dependency rather than globally. When you create a new project using pnpm create dubhe, the CLI is automatically added as a dev dependency.
Using the CLI
Some commands expect a dubhe config in the same folder where the CLI is being executed. This includes generate and publish.
faucet and node can be executed anywhere.
Commands
generate
Generate Move code from a dubhe.config.ts file. See the Store Config and generate documentation in the Store section for more details.
Backward compat:
dubhe schemagenis a deprecated alias fordubhe generateand will continue to work.
dubhe generate [--config-path <path>] [--network <network>]
Options:
--config-path Path to config file (default: "dubhe.config.ts")
--network Target network (mainnet/testnet/devnet/localnet)publish
Deploy Dubhe contracts to Sui network. This tool will use the dubhe.config.ts to detect all systems and schemas to deploy them to the specified network.
Before deploying the contract, please ensure:
- You have sufficient tokens in your account for deployment fees
- For testnet/devnet/localnet deployments, you can get test tokens via
dubhe faucet - For localnet deployments, ensure your local node is running
dubhe publish --network <network> [--config-path <path>] [--gas-budget <number>]
Options:
--network Target network (mainnet/testnet/devnet/localnet) (default: localnet)
--config-path Path to config file (default: "dubhe.config.ts")
--gas-budget Optional gas budget for transactionupgrade
Upgrade deployed Dubhe contracts.
dubhe upgrade --network <network>
Options:
--network Target network (mainnet/testnet/devnet/localnet)
--config-path Path to config file (default: "dubhe.config.ts")node
Manage local Sui node using the official sui binary.
dubhe node [--data-dir <path>] [--force]
Options:
--data-dir Path to the data directory (default: ".chk")
--force Force restart: stop existing node and remove data directory (default: false)Local RPC endpoint: http://127.0.0.1:9000
Note: Make sure your local node is running properly before using other commands that require a local node (e.g., dubhe publish --network localnet).
faucet
Request test tokens from the Sui faucet. The default faucet service automatically gives test tokens to accounts in .env.
dubhe faucet --network <network> [--recipient <address>]
Options:
--network Network to request tokens on (testnet/devnet/localnet) (default: localnet)
--recipient Optional recipient address (uses PRIVATE_KEY env if not specified)generate-key
Generate new account keypair.
dubhe generate-key [--force] [--use-next-public]
Options:
--force Force generate new keypair (default: false)
--use-next-public Use NEXT_PUBLIC_ prefix for client-side usage (default: false)check-balance
Check account balance on specified network.
dubhe check-balance --network <network>
Options:
--network Network to check balance on (mainnet/testnet/devnet/localnet) (default: localnet)store-config
Store configuration for the Dubhe project.
dubhe store-config --network <network> [--config-path <path>] [--output-ts-path <path>]
Options:
--network Network to store config for (mainnet/testnet/devnet/localnet)
--config-path Path to config file (default: "dubhe.config.ts")
--output-ts-path Output path for generated TypeScript config (e.g., ./src/config/generated.ts)build
Build your Dubhe Move contracts.
dubhe build --network <network> [--config-path <path>] [--dump-bytecode-as-base64]
Options:
--network Target network (mainnet/testnet/devnet/localnet)
--config-path Path to config file (default: "dubhe.config.ts")
--dump-bytecode-as-base64 Output bytecode as base64test
Run Move unit tests for the package at src/<projectName>/ (from dubhe.config.ts). This wraps sui move test with the correct --path and, when needed, --build-env testnet so dependencies resolve even if your active Sui client environment is localnet or devnet.
dubhe test [filter] [--config-path <path>] [--gas-limit <limit>] [--list]
dubhe test [--config-path <path>] [--test <filter>] [--gas-limit <limit>] [--list]Arguments / options:
| Argument / option | Description |
|---|---|
[filter] | Optional positional substring filter. A test runs only if its fully qualified name (<address>::<module>::<function>) contains this string. Same behavior as sui move test [filter] (see sui move test --help). |
--test <filter> | Same as the positional [filter] (kept for backward compatibility). If both are set, the positional wins. |
--config-path | Path to config file (default: dubhe.config.ts) |
--gas-limit | Per-test gas bound passed to sui move test (default: 100000000) |
--list | List test names (sui move test -l) instead of executing them |
Examples:
# Run all tests in the package
dubhe test
# Run only tests whose FQN contains this substring (e.g. one module or one function name)
dubhe test mygame::level_test::test_set_and_get_level
dubhe test test_set_and_get_level
# Equivalent to the above
dubhe test --test test_set_and_get_level
# List all tests
dubhe test --listNote: On the sui move test CLI, the flag --test means something different (compile including the tests/ tree). Dubhe forwards your filter as Sui’s positional filter, not as that flag.
doctor
Check development environment and install required tools automatically.
dubhe doctor [--install-all]
Options:
--install-all Automatically install all missing tools (default: false)The doctor command checks for:
- Node.js version compatibility
- Docker service availability
- Required development tools (sui, postgres, etc.)
- Port availability for local services
- Network connectivity
wait
Wait for service(s) to be ready before proceeding.
dubhe wait [--url <url>] [--localnet] [--timeout <ms>] [--interval <ms>]
Options:
--url URL to wait for (single service)
--localnet Wait for all dubhe localnet services (default: false)
--timeout Timeout in milliseconds (default: 180000)
--interval Check interval in milliseconds (default: 1000)Examples:
- Wait for a specific service:
dubhe wait --url http://localhost:4000- Wait for all localnet services:
dubhe wait --localnetwatch
Watch configuration file for changes and automatically run generate.
dubhe watchThis command monitors dubhe.config.ts for changes and automatically runs dubhe generate when the file is modified.
switch-env
Switch between different network environments.
dubhe switch-env --network <network>
Options:
--network Target network (mainnet/testnet/devnet/localnet) (default: localnet)convert-json
Convert Dubhe configuration to JSON format.
dubhe convert-json [--config-path <path>] [--output-path <path>]
Options:
--config-path Path to config file (default: "dubhe.config.ts")
--output-path Output path for JSON file (default: "dubhe.config.json")load-metadata
Load package metadata for a deployed contract.
dubhe load-metadata --network <network> [--config-path <path>] [--package-id <id>]
Options:
--network Network to use (mainnet/testnet/devnet/localnet) (default: localnet)
--config-path Path to config file (default: "dubhe.config.ts")
--package-id Package ID to load metadata for (optional)info
Display account and network information.
dubhe info --network <network>
Options:
--network Network to check (mainnet/testnet/devnet/localnet) (default: localnet)This command shows:
- Current network
- Account address
- Account balance
Environment Setup
Some commands require environment variables to be set:
PRIVATE_KEY: Required for deployment and some other operations- Can be set up using a
.envfile in your project root
When using the deployer, you must set the private key of the deployer using the PRIVATE_KEY environment variable. You can make this easier by using dotenv before running commands.
Network Support
The CLI supports the following networks:
- Mainnet
- Testnet
- Devnet
- Localnet
For testnet/devnet/localnet operations, you can get test tokens using the faucet command.