consts.go 996 B

123456789101112131415161718192021222324252627282930
  1. package consts
  2. const (
  3. GET string = "GET"
  4. POST string = "POST"
  5. NET_WORKS string = "networks"
  6. PRICE string = "price"
  7. MULTIPLE_PRICE string = "multi_price"
  8. QUESTION_MARK string = "?"
  9. X_API_KEY string = "X-API-KEY"
  10. DEFI_URL string = "DEFI_URL"
  11. TOKEN_URL string = "DEFI_URL"
  12. TOKEN_LIST_V2_URL string = "TOKEN_LIST_V2_URL"
  13. BIRD_EYE_API_KEY string = "BIRD_EYE_API_KEY"
  14. CheckLiquidity string = "check_liquidity"
  15. IncludeLiquidity string = "include_liquidity"
  16. ADDRESS string = "address"
  17. ACCEPT string = "accept"
  18. X_CHAIN string = "x_chain"
  19. APPLICATION_JSON string = "application/json"
  20. LIST_ADDRESS string = "list_address"
  21. COMMAS string = ","
  22. SORT_BY string = "sort_by"
  23. SORT_TYPE string = "sort_type"
  24. OFFSET string = "offset"
  25. LIMIT string = "limit"
  26. MIN_LIQUIDITY string = "min_liquidity"
  27. TOKEN_LIST string = "tokenlist"
  28. )