Skip to content

Commit 18c976f

Browse files
authoredJan 15, 2025
Update bindings commands with better ones (#1173)
1 parent 745cf46 commit 18c976f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed
 

‎docs/build/apps/guestbook/bindings.mdx

+2-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The smart contract code needs to be installed to the network first. This uploads
2929

3030
```shell
3131
stellar contract install \
32-
--source S...ECRETKEY \
32+
--source <identity or secret key> \
3333
--network testnet \
3434
--wasm ./target/wasm32-unknown-unknown/release/ye_olde_guestbook.wasm
3535
```
@@ -40,7 +40,7 @@ This will return a hexadecimal hash corresponding to the uploaded Wasm executabl
4040

4141
```shell
4242
stellar contract deploy \
43-
--source S...ECRETKEY \
43+
--source <identity or secret key> \
4444
--network testnet \
4545
--wasm-hash <wasm_hash_from_install_step>
4646
```
@@ -51,7 +51,6 @@ Now we can (again) use the Stellar CLI to generate bindings from the contract we
5151

5252
```shell
5353
stellar contract bindings typescript \
54-
--source S...ECRETKEY \
5554
--network testnet \
5655
--id <contract_address_from_deploy_step> \
5756
--output-dir ./packages/ye_olde_guestbook \

0 commit comments

Comments
 (0)
Please sign in to comment.