Connect to a Local Network
Use a Sui local network to test your dApps against the latest changes to Sui and to prepare for the next Sui release to Devnet or Testnet. Sui CLI provides the sui start command to start a local network. There are several services that can be started when using sui start, such as an indexer, a faucet, or a local instance of the GraphQL service (including the web-based GraphiQL IDE). You can use the included faucet to get test SUI to use on the local network.
If you haven't already, you need to install Sui CLI on your system.
Start the local network
To start the local network, run the following command after you install Sui CLI.
$ RUST_LOG="off,sui_node=info" sui start --with-faucet --force-regenesis
This command:
- Calls the Sui CLI binary with 2 flags:
--with-faucetto start a faucet service.--force-regenesisto generate a new genesis and not persist the local network state.- Instructs Rust to set specific logging through the
RUST_LOG=off,sui_node=infoflags, which turns off logging for all components exceptsui-node. If you want to see more detailed logs, you can removeRUST_LOGfrom the command.
Each time you start the network by passing --force-regenesis, the local network starts from a random genesis with no previous data, and the local network is not persisted. If you'd like to persist data, skip passing the --force-regenesis flag. For more details, see the Persist local network state section. A temporary directory is created in /tmp, which might not work if the /tmp folder is mounted to /tmpfs. If this is the case, set TMPDIR=./some_folder.
To customize your local Sui network, such as starting other services or changing default ports and hosts, include additional flags or options in the sui start command.
Options and flags like with-indexer, with-graphql, and related require you to have PostgreSQL/libpq installed. Check out the list of possible options below to find which is the default expected DB or how to pass a different DB.
The following is a list of possible options and flags to pass to sui start:
--network.config <CONFIG_DIR>
Config directory that will be used to store network config, node db, keystore. sui genesis -f --with-faucet generates a genesis config that can be used to start this process. Use with caution as the `-f` flag will overwrite the existing config
directory. We can use any config dir that is generated by the `sui genesis`
--force-regenesis
A new genesis is created each time this flag is set, and state is not persisted between runs. Only use this flag when you want to start the network from scratch every time you run this command.
To run with persisted state, do not pass this flag and use the `sui genesis` command to generate a genesis that can be used to start the network with.
--with-faucet[=<FAUCET_HOST_PORT>]
Start a faucet with default host and port: 0.0.0.0:9123. This flag accepts also a port, a host, or both (e.g., 0.0.0.0:9123). When providing a specific value, please use the = sign between the flag and value: `--with-faucet=6124` or
`--with-faucet=0.0.0.0`, or `--with-faucet=0.0.0.0:9123`
--with-indexer[=<DATABASE_URL>]
Start an indexer with a PostgreSQL database.
Three modes of operation: - Not specified: No indexer is started (unless --with-graphql is set) - `--with-indexer`: Create/use a temporary database in the network's configuration directory - `--with-indexer=<URL>`: Use the provided PostgreSQL
database URL
When providing a database URL, use the = sign: `--with-indexer=postgres://user:pass@host:5432/db`
--with-consistent-store[=<CONSISTENT_STORE_HOST_PORT>]
Start a Consistent Store with default host and port: 0.0.0.0:9124. This flag accepts also a port, a host, or both (e.g., 0.0.0.0:9124).
When providing a specific value, please use the = sign between the flag and value: `--with-consistent-store=9124` or `--with-consistent-store=0.0.0.0`, or `--with-consistent-store=0.0.0.0:9124` The Consistent Store will be automatically enabled
when `--with-graphql` is set.
--with-graphql[=<GRAPHQL_HOST_PORT>]
Start a GraphQL server with default host and port: 0.0.0.0:9125. This flag accepts also a port, a host, or both (e.g., 0.0.0.0:9125).
When providing a specific value, please use the = sign between the flag and value: `--with-graphql=9125` or `--with-graphql=0.0.0.0`, or `--with-graphql=0.0.0.0:9125`
Note that GraphQL requires a running indexer and consistent store, which will be enabled by default even if those flags are not set.
--fullnode-rpc-port <FULLNODE_RPC_PORT>
Port to start the Fullnode RPC server on. Default port is 9000
[default: 9000]
--epoch-duration-ms <EPOCH_DURATION_MS>
Set the epoch duration. Can only be used when `--force-regenesis` flag is passed or if there's no genesis config and one will be auto-generated. When this flag is not set but `--force-regenesis` is set, the epoch duration will be set to 60
seconds
--data-ingestion-dir <DATA_INGESTION_DIR>
Make the fullnode dump executed checkpoints as files to this directory. This is incompatible with --no-full-node.
If --with-indexer is set, this defaults to a temporary directory.
--no-full-node
Start the network without a fullnode
--committee-size <COMMITTEE_SIZE>
Set the number of validators in the network. If a genesis was already generated with a specific number of validators, this will not override it; the user should recreate the genesis with the desired number of validators
-h, --help Print help (see more with '--help')
Use sui start --help to see these options in your console.
Persist local network state
By default, when using sui start the command uses an existing genesis and network configuration if the ~/.sui/sui_config folder exists and includes a genesis.blob file. If the folder doesn't exist, it creates the folder and generates a new genesis configuration. If you pass --network.config, the command checks for the network config file and tries to load the genesis blob as per the network config file.
Whenever you stop and start the network without passing the --force-regenesis flag, all history is preserved and accessible.
To generate a custom genesis, use the sui genesis command and pass the desired custom values. For more information about possible flags and options, run sui genesis --help.