From 2ea443152eef7d4e1c405640543ec3adf2e00099 Mon Sep 17 00:00:00 2001 From: o-az Date: Fri, 18 Oct 2024 16:19:16 -0700 Subject: [PATCH] fix: cosmwasm ucs01 guide typos --- .../integrations/ucs01/cosmwasm/index.mdx | 29 +++++-------------- 1 file changed, 8 insertions(+), 21 deletions(-) diff --git a/docs/src/content/docs/integrations/ucs01/cosmwasm/index.mdx b/docs/src/content/docs/integrations/ucs01/cosmwasm/index.mdx index 50502b3f05..7aa779695e 100644 --- a/docs/src/content/docs/integrations/ucs01/cosmwasm/index.mdx +++ b/docs/src/content/docs/integrations/ucs01/cosmwasm/index.mdx @@ -56,6 +56,12 @@ curl --location \\ title='Install uniond' /> +Make `uniond` executable + +```sh frame="none" +chmod +x uniond +``` + Install Rust ```sh frame="none" @@ -103,25 +109,6 @@ opt-level = "z" strip = true ``` -Install `uniond` - - - Our end directory structure will look like this: @@ -252,7 +239,7 @@ pub fn execute_transfer( You will be using the same RPC url across examples, so good to export it to an environment variable: ```sh frame="none" -export RPC_URL=" https://rpc.testnet-8.union.build:443" +export RPC_URL="https://rpc.testnet-8.union.build:443" ``` ### Building the Contract @@ -305,7 +292,7 @@ curl https://rest.testnet-8.union.build/cosmos/bank/v1beta1/balances/$WALLET_ADD ``` ```sh title="Deploy the contract" -tx wasm store ./target/wasm32-unknown-unknown/release/example_ucs01_cosmwasm.wasm \ +uniond tx wasm store ./target/wasm32-unknown-unknown/release/example_ucs01_cosmwasm.wasm \ --from $WALLET_NAME \ --gas auto \ --gas-adjustment 1.4 \