Skip to content

Commit e4bead7

Browse files
committed
fix: use full command in docs
1 parent cadbbe0 commit e4bead7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

cmd/cartesi-rollups-cli/root/deploy/application.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,19 +57,19 @@ Supported Environment Variables:
5757

5858
const applicationExamples = `
5959
# deploy both application and authority contracts together via self hosted application contract, then register the application
60-
- cli deploy application echo-dapp applications/echo-dapp/
60+
- cartesi-rollups-cli deploy application echo-dapp applications/echo-dapp/
6161
6262
# deploy an application contract using an existing consensus, then register the application
63-
- cli deploy application echo-dapp applications/echo-dapp/ --consensus=0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
63+
- cartesi-rollups-cli deploy application echo-dapp applications/echo-dapp/ --consensus=0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
6464
6565
# deploy but don't register into the database
66-
- cli deploy application echo-dapp applications/echo-dapp/ --register=false
66+
- cartesi-rollups-cli deploy application echo-dapp applications/echo-dapp/ --register=false
6767
6868
# deploy and register into the database, but disabled
69-
- cli deploy application echo-dapp applications/echo-dapp/ --enable=false
69+
- cartesi-rollups-cli deploy application echo-dapp applications/echo-dapp/ --enable=false
7070
7171
# deploy an application without a machine template path (both application-name and template-path may be omitted in this case)
72-
- cli deploy application --template-hash=0x0000000000000000000000000000000000000000000000000000000000000000 --register=false`
72+
- cartesi-rollups-cli deploy application --template-hash=0x0000000000000000000000000000000000000000000000000000000000000000 --register=false`
7373

7474
func init() {
7575
applicationCmd.Flags().StringVarP(&applicationConsensusAddressParam, "consensus", "c", "",

0 commit comments

Comments
 (0)