Skip to content

Commit

Permalink
add documentation about address form
Browse files Browse the repository at this point in the history
  • Loading branch information
CRBl69 committed Aug 30, 2023
1 parent bf8e92a commit c638bc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/doc-site/docs/off-chain/rust-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ It's time to deploy our own Econia Faucet to the local chain:
git clone https://github.com/econia-labs/econia.git # only if necessary
cd ./econia/src/move/faucet
aptos init --profile econia_faucet_deploy # enter "local" for the chain
export FAUCET_ADDR=<ACCOUNT-FROM-ABOVE>
export FAUCET_ADDR=<ACCOUNT-FROM-ABOVE> # make sure to put 0x at the start
# deploy the faucet (all one command)
aptos move publish \
--named-addresses econia_faucet=$FAUCET_ADDR \
Expand All @@ -56,7 +56,7 @@ You also need to deploy Econia:
```bash
cd ./econia/src/move/econia
aptos init --profile econia_exchange_deploy # enter "local" for the chain
export ECONIA_ADDR=<ACCOUNT-FROM-ABOVE>
export ECONIA_ADDR=<ACCOUNT-FROM-ABOVE> # make sure to put 0x at the start
# deploy the exchange (all one command)
aptos move publish \
--override-size-check \
Expand Down

0 comments on commit c638bc1

Please sign in to comment.