diff --git a/docs/build/apps/guestbook/bindings.mdx b/docs/build/apps/guestbook/bindings.mdx index cb4d946a2..526c826d6 100644 --- a/docs/build/apps/guestbook/bindings.mdx +++ b/docs/build/apps/guestbook/bindings.mdx @@ -29,7 +29,7 @@ The smart contract code needs to be installed to the network first. This uploads ```shell stellar contract install \ - --source S...ECRETKEY \ + --source \ --network testnet \ --wasm ./target/wasm32-unknown-unknown/release/ye_olde_guestbook.wasm ``` @@ -40,7 +40,7 @@ This will return a hexadecimal hash corresponding to the uploaded Wasm executabl ```shell stellar contract deploy \ - --source S...ECRETKEY \ + --source \ --network testnet \ --wasm-hash ``` @@ -51,7 +51,6 @@ Now we can (again) use the Stellar CLI to generate bindings from the contract we ```shell stellar contract bindings typescript \ - --source S...ECRETKEY \ --network testnet \ --id \ --output-dir ./packages/ye_olde_guestbook \