Dubhe CLI for Sui
Before getting started with Dubhe CLI, please install the required dependencies:Note: @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:schemagen: Generate Dubhe schemas automatically from your store schemas configurationpublish: 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 accountconfig-store: 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 usingpnpm 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 includesschemagen and publish.
faucet and node can be executed anywhere.
Commands
schemagen
Generate Store libraries from a dubhe.config.ts file. See the Store Config and schemagen documentation in the Store section for more details.
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
upgrade
Upgrade deployed Dubhe contracts.
node
Manage local Sui node using the official sui binary.
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.
generate-key
Generate new account keypair.
check-balance
Check account balance on specified network.
config-store
Store configuration for the Dubhe project.
build
Build your Dubhe Move contracts.
test
Run tests for Dubhe contracts.
doctor
Check development environment and install required tools automatically.
- 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.
- Wait for a specific service:
- Wait for all localnet services:
watch
Watch configuration file for changes and automatically run schemagen.
dubhe.config.ts for changes and automatically runs dubhe schemagen when the file is modified.
switch-env
Switch between different network environments.
convert-json
Convert Dubhe configuration to JSON format.
load-metadata
Load package metadata for a deployed contract.
info
Display account and network information.
- 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
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
faucet command.