diff --git a/doc/doc-site/docs/off-chain/rust-sdk.md b/doc/doc-site/docs/off-chain/rust-sdk.md index bd13a55d6..bc72c0a4f 100644 --- a/doc/doc-site/docs/off-chain/rust-sdk.md +++ b/doc/doc-site/docs/off-chain/rust-sdk.md @@ -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= +export FAUCET_ADDR= # make sure to put 0x at the start # deploy the faucet (all one command) aptos move publish \ --named-addresses econia_faucet=$FAUCET_ADDR \ @@ -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= +export ECONIA_ADDR= # make sure to put 0x at the start # deploy the exchange (all one command) aptos move publish \ --override-size-check \