You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+7
Original file line number
Diff line number
Diff line change
@@ -20,10 +20,17 @@ just build
20
20
```
21
21
just deploy contract-a
22
22
```
23
+
Or snake_case
24
+
```
25
+
just deploy contract_a
26
+
```
23
27
24
28
## invoke contracts
25
29
26
30
```bash
27
31
just invoke contract-a --help
28
32
```
29
33
34
+
Currently the `.env` file has `SOROBAN_NETWORK=testnet`.
35
+
36
+
To use local first start the local docker `just network_start`. Then either change `.env`, use `export SOROBAN_NETWORK=local` or prefix your just commands with `SOROBAN_NETWORK=local`. e.g. `SOROBAN_NETWORK=local just deploy contract-a`
0 commit comments