Skip to content

Commit f5458f6

Browse files
committed
fix(setup): quote the network passphrase and use the real registry id
1 parent 8f57d54 commit f5458f6

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.env.example

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
LK_RPC_URL=https://soroban-testnet.stellar.org
33

44
# Network passphrase. Must match the network the RPC endpoint serves.
5-
LK_NETWORK_PASSPHRASE=Test SDF Network ; September 2015
5+
# Quoted because it contains a semicolon. Unquoted, `set -a && . ./.env` ends the
6+
# assignment at the `;` and tries to run the rest as a command, leaving this empty.
7+
LK_NETWORK_PASSPHRASE="Test SDF Network ; September 2015"
68

7-
# Deployed registry contract ID.
8-
LK_REGISTRY_ID=CXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
9+
# Deployed registry contract ID. This is ledgerkeep-core's testnet registry.
10+
LK_REGISTRY_ID=CB7K56KG3KHC43FROV534M55FMVGBW24NUFQSXSRMH7OS54242GFYMGN
911

1012
# Path to a file containing the keeper's secret seed, one line, nothing else.
1113
# This is a PATH, not a key. Never put a secret seed in this file or in a flag.

0 commit comments

Comments
 (0)