43 lines
1.9 KiB
Plaintext
43 lines
1.9 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.
|
|
KS_SECRET_HELIUS_API_KEY=replace-with-your-helius-api-key
|
|
|
|
# PostgreSQL database used by the mainnet_research and mainnet profiles.
|
|
KS_SECRET_POSTGRES_MAINNET_URL=postgres://solana:solana@localhost:5432/khadhroony_mainnet
|
|
|
|
# PostgreSQL database dedicated to the local_devnet profile and Devnet validation.
|
|
KS_SECRET_POSTGRES_DEVNET_URL=postgres://solana:solana@localhost:5432/khadhroony_devnet
|
|
|
|
# PostgreSQL database reserved for automated integration tests.
|
|
KS_SECRET_POSTGRES_TEST_URL=postgres://solana:solana@localhost:5432/khadhroony_test
|
|
|
|
# Optional independent configuration-file overrides.
|
|
# KS_CONFIG_PATH=config/app.config.json
|
|
# KS_LOGGING_CONFIG_PATH=config/logging.config.json
|
|
|
|
# Optional Devnet profile selected by CLI and opt-in scenario tests.
|
|
# When absent, the first compatible Devnet profile is selected.
|
|
# KS_DEVNET_PROFILE=local_devnet
|
|
|
|
# Optional Token-2022 Devnet validation fixtures.
|
|
KS_PUBLIC_SPL_TOKEN_2022_PROGRAM_ID=TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb
|
|
KS_PUBLIC_DEVNET_TOKEN_2022_MINT=
|
|
KS_PUBLIC_DEVNET_TOKEN_2022_SOURCE=
|
|
KS_PUBLIC_DEVNET_TOKEN_2022_DESTINATION=
|
|
KS_PUBLIC_DEVNET_TOKEN_2022_CLOSE_ACCOUNT=
|
|
KS_PUBLIC_DEVNET_TOKEN_2022_DELEGATE=
|
|
KS_PUBLIC_DEVNET_TOKEN_2022_AUTHORITY=
|
|
KS_PUBLIC_DEVNET_TOKEN_2022_FREEZE_AUTHORITY=
|
|
KS_PUBLIC_DEVNET_TOKEN_2022_DECIMALS=9
|
|
KS_PUBLIC_DEVNET_TOKEN_2022_MINT_AMOUNT_RAW=10000000000
|
|
KS_PUBLIC_DEVNET_TOKEN_2022_TRANSFER_AMOUNT_RAW=1000000000
|
|
KS_PUBLIC_DEVNET_TOKEN_2022_APPROVE_AMOUNT_RAW=2000000000
|
|
KS_PUBLIC_DEVNET_TOKEN_2022_BURN_AMOUNT_RAW=1000000000
|
|
|
|
# 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.
|
|
# KS_ENV_FILE=.env.local
|