consts.go 926 B

1234567891011121314151617181920212223242526272829
  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. BIRD_EYE_API_KEY string = "BIRD_EYE_API_KEY"
  13. CheckLiquidity string = "check_liquidity"
  14. IncludeLiquidity string = "include_liquidity"
  15. ADDRESS string = "address"
  16. ACCEPT string = "accept"
  17. X_CHAIN string = "x_chain"
  18. APPLICATION_JSON string = "application/json"
  19. LIST_ADDRESS string = "list_address"
  20. COMMAS string = ","
  21. SORT_BY string = "sort_by"
  22. SORT_TYPE string = "sort_type"
  23. OFFSET string = "offset"
  24. LIMIT string = "limit"
  25. MIN_LIQUIDITY string = "min_liquidity"
  26. TOKEN_LIST string = "tokenlist"
  27. )