Advertisement
iefhanz

jup config

Oct 25th, 2024
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rust 1.77 KB | None | 0 0
  1. # This program is essentially just a "manager" for the jupiter-swap-api process.
  2. [manager]
  3. jupiter_path="" # leave empty to auto install
  4. startup_cmd=["bash", "./jupiter-startup-script.sh"] # optional, used to run a command before every start/restart.
  5. auto_restart_minutes=90 #set to 0 or remove this line to disable auto restarts (restarts on failure will still happen)
  6.  
  7. [env]
  8. RUST_LOG="info"
  9. RUST_BACKTRACE="full"
  10. HOST="0.0.0.0"
  11. PORT="8080"
  12. RPC_URL="http://myrpc"
  13. YELLOWSTONE_GRPC_ENDPOINT="http://mygrpc"
  14. #YELLOWSTONE_GRPC_X_TOKEN=""
  15. #YELLOWSTONE_GRPC_ENABLE_PING="true"
  16. ALLOW_CIRCULAR_ARBITRAGE="true"
  17. MARKET_MODE="remote"
  18. ENABLE_NEW_DEXES="false"
  19. EXCLUDE_DEX_PROGRAM_IDS=[
  20.     "MoonCVVNZFSYkqNXP6bxHLPL6QQJiMagDL3qcqUQTrG",  # Moonshot
  21.     "6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P",  # Pump.fun
  22.     "obriQD1zbpyLz95G5n7nJe6a4DPjpFwa5XYPoNm113y",  # Obric
  23. ]
  24. FILTER_MARKETS_WITH_MINTS="" # This will be ovewritten by mint filters defined below.
  25.  
  26. [dynamic_mint_filter] # removing in the future in favor of url mint filters
  27. enabled=false
  28. skip_freezable=true # freezable tokens are generally rugs and won't be tradable long
  29. skip_mintable=false # a handful of stable coins are mintable, so defaulting to false
  30. skip_no_volume=true # some tokens don't have any daily volume data on jupiter, optionally skip them (not skipping them will give you WAY more mints, which isn't alway>
  31. min_gain_lamport=1000000
  32. required_tags=[
  33.    ["verified", "pump"],
  34.    ["birdeye-trending"],
  35. ]
  36.  
  37. # Static mint filters are predefined lists of mints that you want to include.
  38. # Multiple filters can be defined to suit different needs.
  39. [[static_mint_filter]]
  40. enabled=true
  41. mints=[
  42.    "So11111111111111111111111111111111111111112",  # sol
  43. ]
  44.  
  45. [[file_mint_filter]]
  46. enabled=true
  47. path="./mints.json"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement