-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
48 lines (38 loc) · 1.75 KB
/
Copy path.env.example
File metadata and controls
48 lines (38 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Database Configuration
DATABASE_URL=postgres://agronet:PASSWORD_HERE@localhost:5432/agronet_db
# JWT Configuration
JWT_SECRET=your-secret-key-here
LIQUIDITY_FILE="src/Rv - offline.json"
# Ethereum Configuration
# Mainnet
ETH_RPC_URL=https://eth-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
ETH_PRIVATE_KEY=0xYOUR_PRIVATE_KEY_HERE
# Testnets
SEPOLIA_RPC_URL=https://eth-sepolia.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
BASE_RPC_URL=https://mainnet.base.org
BASE_SEPOLIA_RPC_URL=https://sepolia.base.org
ARBITRUM_RPC_URL=https://arb1.arbitrum.io/rpc
ARBITRUM_SEPOLIA_RPC_URL=https://sepolia-rollup.arbitrum.io/rpc
# Contract Addresses - Ethereum Mainnet
USDT_CONTRACT=0xdAC17F958D2ee523a2206206994597C13D831ec7
USDC_CONTRACT=0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
ERC8040_CONTRACT=0x0000000000000000000000000000000000000000
# Contract Addresses - Sepolia Testnet
SEPOLIA_USDT_CONTRACT=0x0000000000000000000000000000000000000000
SEPOLIA_USDC_CONTRACT=0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238
# Contract Addresses - Base Mainnet
BASE_USDT_CONTRACT=0x0000000000000000000000000000000000000000
BASE_USDC_CONTRACT=0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913
# Contract Addresses - Base Sepolia
BASE_SEPOLIA_USDT_CONTRACT=0x0000000000000000000000000000000000000000
BASE_SEPOLIA_USDC_CONTRACT=0x036CbD53842c5426634e7929541eC2318f3dCF7e
# Contract Addresses - Arbitrum Mainnet
ARBITRUM_USDT_CONTRACT=0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9
ARBITRUM_USDC_CONTRACT=0xaf88d065e77c8cC2239327C5EDb3A432268e5831
# Contract Addresses - Arbitrum Sepolia
ARBITRUM_SEPOLIA_USDT_CONTRACT=0x0000000000000000000000000000000000000000
ARBITRUM_SEPOLIA_USDC_CONTRACT=0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d
# Gas Settings
GAS_PRICE_MULTIPLIER=1.1
MAX_GAS_PRICE_GWEI=100
GAS_ESTIMATE_BUFFER_PERCENT=20