# Agoric CLI Command Reference
Add a command name to agoric to specify what command to run. Note: Required argument names need not be given, only their values. Optional argument names must be given, along with their values. See the command's examples if you're not sure if a name is needed.
The agoric commands documented here are the ones useful for dapp developers. Other agoric commands you may see listed
are not covered in this document.
In general, you want to issue these Agoric CLI commands in this order:
agoric initagoric installagoric start(Usually with--reset)agoric deployagoric open
Use agoric help whenever you need help with one of the above Agoric CLI commands.
There are some general options for all commands, whose usage is:
agoric [options] [command]
They are:
-V,--version- Output the version number.
--docker-tag <tag>- Use the specified tag of any started Docker containers. Defaults to
latest.
- Use the specified tag of any started Docker containers. Defaults to
--sdk- Use the Agoric SDK containing this program.
-v,--verbose- Be verbose. Multiple occurrences increase verbosity.
-h,--help- Display help for the command.
# agoric init
- Function:
- Creates a new Dapp directory named
<project>with contents copied from thedapp-templateargument template.
- Creates a new Dapp directory named
- Required Arguments:
project: Name of the new project to initialize.
- Optional Arguments:
--dapp-template <name>: Use the template specified by<name>. Defaults to the demo Dappdapp-fungible-faucet.--dapp-base <base-url>: Look under this directory for the Dapp template. Defaults togit://github.com/Agoric/-h,--help: Display help forinitcommand.
- Examples:
- Creates a directory named
demowith contents copied from the defaultdapp-templatevaluedapp-simple-exchange.agoric init demo
- Creates a directory named
my-first-contractwith contents copied from the defaultdapp-templatevaluedapp-simple-exchange.agoric init my-first-contract
- Creates a directory named
my-contractwith contents copied from a template nameddapp-skeletonlocated under the URLfile:///home/contractsagoric init my-contract --dapp-template dapp-skeleton --dapp-base file:///home/contracts
- Creates a directory named
# agoric install
- Function:
- Install Dapp JavaScript dependencies. This may take a while. You use this instead of established npm install tools.
The reason is that there is both an SDK (
--sdk) and NPM mode. Currently we only support SDK mode, which allows you to link your Dapp against the SDK dependencies. This lets you modify in any package in the SDK against the SDK dependencies (and see the changes) and not have to register those packages with Yarn or NPM.
- Install Dapp JavaScript dependencies. This may take a while. You use this instead of established npm install tools.
The reason is that there is both an SDK (
- Required Arguments:
- None.
- Optional Arguments:
- None.
- Examples:
- Installs Dapp JavaScript dependencies
agoric install
- Installs Dapp JavaScript dependencies
# agoric start
- Function:
- Run an Agoric VM on which contracts will run.
- Required Arguments:
[profile]: Specifies the environment for the VM. Defaults todevfor development mode,testnetconnects to our current testnet.[args]: Ignore this for now. It currently has no valid values.
- Optional Arguments:
--reset: Clear all VM state before starting.--pull: For Docker-based VM, pull the image before running.--delay [seconds]: Delay the given number of seconds for each round-trip to the simulated chain and back for a simulated chain to process messages. A1value lets you easily count the number of trips in your head.--inspect: [host[:port]]`: Activate inspector on host:port (default: "127.0.0.1:9229")--inspect-brk [host[:port]]: Activate inspector on host:port and break at start of script (default: "127.0.0.1:9229")-h,--help: Display help forstartcommand
- Examples:
- Restart the Agoric VM, clearing all existing state before doing so.
agoric start --reset
- For Docker-based VM, before running pull the image.
agoric start --pull
- Delay 5 seconds for each round-trip to the simulated chain and back in order for a simulated chain to
process messages.
agoric start --delay 5
- Restart the Agoric VM, clearing all existing state before doing so.
# agoric deploy
- Function:
- Run one or more deployment scripts against the local Agoric VM. You may optionally specify which host and port to connect to the VM on.
- Required Arguments:
<script...>: Deployment script(s) to run against the local Agoric instance. You must specify at least one, and may specify more than one.
- Optional Arguments:
--hostport <HOST:PORT>: Host and port on which to connect to the VM.-h,--help: Display help fordeploycommand
- Examples:
- Run the specified
deploy.jsscripts against the local Agoric VM.agoric deploy ./contract/deploy.js ./api/deploy.js
- Run the specified
deploy.jsscripts on VM host 128.7.3.139 and port 99.agoric deploy --hostport 128.7.3.139:99 ./contract/deploy.js
- Run the specified
# agoric open
- Function:
- Launch the Agoric UI. By default, it shows only the UI and not the REPL. To show either
both the UI and REPL, or only the REPL, see the
--reploptional argument below.
- Launch the Agoric UI. By default, it shows only the UI and not the REPL. To show either
both the UI and REPL, or only the REPL, see the
- Required Arguments
- None
- Optional Arguments
--hostport <host:port>: Host and port on which to connect to the VM (default: "127.0.0.1:8000").--no-browser: Display the UI's URL, but don't open a browser.--repl [yes | only | no]: Whether to show the Read-Eval-Print loop. Defaults toyesif specified (see Examples below)-h,--help: Display help foropencommand.
- Examples
- Launch only the Agoric UI in a browser
agoric open
- Display the Agoric UI's URL, but don't open it in a browser.
agoric open --no-browser
- Display only the REPL for the Agoric UI in a browser.
agoric open --repl only
- Display both the Agoric UI and the REPL in a browser (
--repldefaults toyes).agoric open --repl
- Launch only the Agoric UI in a browser
# agoric help
- Function:
- Displays the Agoric CLI commands and arguments with brief descriptions.
- Required Arguments:
- None
- Optional Arguments:
-V,--version: Output Agoric's version number.--sdk: Use the Agoric SDK containing this program.-v,--verbose: Output a more detailed version of help (note: only for some commands)-h,--help: display help for command
- Examples:
- Display Agoric CLI commands with brief descriptions.
agoric help
- Display current Agoric version number
agoric -V help
- Display verbose help for an Agoric command
agoric start -h -v
- Display verbose general help
agoric help -v
- Display Agoric CLI commands with brief descriptions.