-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(init): fund existing accounts; update contractsDir
- if accounts already exist, - don't panic (that's the `| true`) - fund them - use `.stellar` directory, not `.soroban` (and extract to a variable) - rm unused `id` var - build contracts after binding - switch to `STELLAR_*` env vars, rather than obsolete `SOROBAN_*`
- Loading branch information
Showing
2 changed files
with
14 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Prefix with "PUBLIC_" to make available in Astro frontend files | ||
PUBLIC_SOROBAN_NETWORK_PASSPHRASE="Standalone Network ; February 2017" | ||
PUBLIC_SOROBAN_RPC_URL="http://localhost:8000/soroban/rpc" | ||
PUBLIC_STELLAR_NETWORK_PASSPHRASE="Standalone Network ; February 2017" | ||
PUBLIC_STELLAR_RPC_URL="http://localhost:8000/soroban/rpc" | ||
|
||
SOROBAN_ACCOUNT="alice" | ||
SOROBAN_NETWORK="standalone" | ||
STELLAR_ACCOUNT="alice" | ||
STELLAR_NETWORK="standalone" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters