forked from soropad/launchpad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
16 lines (13 loc) · 792 Bytes
/
Copy path.env.example
File metadata and controls
16 lines (13 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Stellar Network Configuration
# RPC endpoint for Soroban smart contract interactions
NEXT_PUBLIC_SOROBAN_RPC_URL=https://soroban-testnet.stellar.org
# Horizon API endpoint for account and transaction queries
NEXT_PUBLIC_HORIZON_URL=https://horizon-testnet.stellar.org
# Network passphrase (use StellarSdk.Networks.TESTNET for testnet, StellarSdk.Networks.PUBLIC for mainnet)
NEXT_PUBLIC_NETWORK_PASSPHRASE=Test SDF Network ; September 2015
# Token Contract WASM Hash
# Upload the token contract WASM to the network first:
# cd contracts && soroban contract build
# soroban contract upload --wasm target/wasm32-unknown-unknown/release/soroban_token.wasm --network testnet --source <your-identity>
# Then paste the returned hash here:
NEXT_PUBLIC_TOKEN_WASM_HASH=<your-wasm-hash-here>