File tree 1 file changed +2
-3
lines changed
docs/build/apps/guestbook
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ The smart contract code needs to be installed to the network first. This uploads
29
29
30
30
``` shell
31
31
stellar contract install \
32
- --source S...ECRETKEY \
32
+ --source < identity or secret key > \
33
33
--network testnet \
34
34
--wasm ./target/wasm32-unknown-unknown/release/ye_olde_guestbook.wasm
35
35
```
@@ -40,7 +40,7 @@ This will return a hexadecimal hash corresponding to the uploaded Wasm executabl
40
40
41
41
``` shell
42
42
stellar contract deploy \
43
- --source S...ECRETKEY \
43
+ --source < identity or secret key > \
44
44
--network testnet \
45
45
--wasm-hash < wasm_hash_from_install_step>
46
46
```
@@ -51,7 +51,6 @@ Now we can (again) use the Stellar CLI to generate bindings from the contract we
51
51
52
52
``` shell
53
53
stellar contract bindings typescript \
54
- --source S...ECRETKEY \
55
54
--network testnet \
56
55
--id < contract_address_from_deploy_step> \
57
56
--output-dir ./packages/ye_olde_guestbook \
You can’t perform that action at this time.
0 commit comments