# Connection
RPC_ENDPOINT=https://api.devnet.solana.com
#https://api.mainnet-beta.solana.com
#https://solana-devnet.quicknode.io #URL that allows your bot to communicate with the Solana blockchain
RPC_WEBSOCKET_ENDPOINT=wss://api.devnet.solana.com
#wss://api.mainnet-beta.solana.com
#wss://solana-devnet.quicknode.io #allows real-time, persistent communication between your application
COMMITMENT_LEVEL=processed #Commitment levels allow you to trade off speed for reliability
#(Processed is lowest and good for testing, confirmed
#transaction put in blockchain not confirmed, finalized is most secure and for actual trading
# Bot
LOG_LEVEL=trace
ONE_TOKEN_AT_A_TIME=true
PRE_LOAD_EXISTING_MARKETS=false
CACHE_NEW_MARKETS=false
# default or warp or jito
TRANSACTION_EXECUTOR=warp
# if using default executor, fee below will be applied
COMPUTE_UNIT_LIMIT=101337
COMPUTE_UNIT_PRICE=421197
# if using warp or jito executor, fee below will be applied
CUSTOM_FEE=0.006
# Buy
QUOTE_MINT=WSOL
QUOTE_AMOUNT=0.05
AUTO_BUY_DELAY=0
MAX_BUY_RETRIES=10
BUY_SLIPPAGE=20
# Sell
AUTO_SELL=true
MAX_SELL_RETRIES=10
AUTO_SELL_DELAY=0
PRICE_CHECK_INTERVAL=2000
PRICE_CHECK_DURATION=600000
TAKE_PROFIT=40
STOP_LOSS=20
SELL_SLIPPAGE=20
# Filters
USE_SNIPE_LIST=false
SNIPE_LIST_REFRESH_INTERVAL=30000
FILTER_CHECK_DURATION=60000
FILTER_CHECK_INTERVAL=2000
CONSECUTIVE_FILTER_MATCHES=3
CHECK_IF_MUTABLE=false
CHECK_IF_SOCIALS=true
CHECK_IF_MINT_IS_RENOUNCED=true
CHECK_IF_FREEZABLE=true
CHECK_IF_BURNED=true
MIN_POOL_SIZE=5
MAX_POOL_SIZE=50
Can any one help?? here is my configuration