35 lines
1.3 KiB
Plaintext
35 lines
1.3 KiB
Plaintext
# file: .env.example
|
|
# Copy this file to .env at the workspace root and replace every local value.
|
|
# Never commit the real .env file.
|
|
|
|
# Shared Helius credential used by the configured HTTP and WebSocket endpoints.
|
|
HELIUS_API_KEY=replace-with-your-helius-api-key
|
|
|
|
# PostgreSQL database used by the mainnet_research and mainnet profiles.
|
|
KB_POSTGRES_MAINNET_URL=postgres://solana:solana@localhost:5432/khadhroony_mainnet
|
|
|
|
# PostgreSQL database dedicated to the local_devnet profile and Devnet validation.
|
|
KB_POSTGRES_DEVNET_URL=postgres://solana:solana@localhost:5432/khadhroony_devnet
|
|
|
|
# PostgreSQL database reserved for automated integration tests.
|
|
KB_POSTGRES_TEST_URL=postgres://solana:solana@localhost:5432/khadhroony_test
|
|
|
|
# Optional configuration-file override.
|
|
# KB_CONFIG_PATH=config/example.config.json
|
|
|
|
# Optional Token-2022 Devnet validation fixtures.
|
|
TOKEN_2022_PROGRAM=TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb
|
|
TOKEN_2022_MINT=
|
|
TOKEN_2022_SOURCE=
|
|
TOKEN_2022_DESTINATION=
|
|
TOKEN_2022_CLOSE_ACCOUNT=
|
|
TOKEN_2022_DELEGATE=
|
|
TOKEN_2022_AUTHORITY=
|
|
TOKEN_2022_FREEZE_AUTHORITY=
|
|
TOKEN_2022_DECIMALS=9
|
|
TOKEN_2022_TRANSFER_AMOUNT_RAW=1
|
|
|
|
# Optional explicit environment-file selection. Relative paths use the workspace root.
|
|
# Define this variable in the process environment when the selected file is not .env.
|
|
# KB_ENV_FILE=.env.local
|