-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.env.example
More file actions
22 lines (19 loc) · 1.1 KB
/
.env.example
File metadata and controls
22 lines (19 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Solana Confidential Transfers Cookbook Environment Configuration
# ==== REQUIRED CONFIGURATION ====
# RPC_URL: Required for all recipes and ingredients
#
# For local validator (recommended while devnet support is temporarily disabled):
RPC_URL="http://localhost:8899"
#
# For devnet (when confidential balances support is re-enabled):
# RPC_URL="https://api.devnet.solana.com"
# ==== RECOMMENDED CONFIGURATION ====
# While not strictly required (will be auto-generated if missing),
# maintaining a consistent fee payer in your .env file is highly recommended.
# This prevents you from having to fund a new fee payer each time runtime_output.env is deleted.
# The auto-generated fee payer will be stored in runtime_output.env, not .env.
fee_payer_keypair=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
# ==== GOOGLE CLOUD KMS INTEGRATION (Optional) ====
# Required only when running basic_transfer_recipe_gcp
# Can be omitted if not using Google Cloud KMS functionality
GOOGLE_APPLICATION_CREDENTIALS="path/to/your/gcp_credentials.json"