consts.go 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  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. WALLET_URL string = "WALLET_URL"
  13. TOKEN_LIST_V2_URL string = "TOKEN_LIST_V2_URL"
  14. BIRD_EYE_API_KEY string = "BIRD_EYE_API_KEY"
  15. CheckLiquidity string = "check_liquidity"
  16. IncludeLiquidity string = "include_liquidity"
  17. ADDRESS string = "address"
  18. ACCEPT string = "accept"
  19. X_CHAIN string = "x_chain"
  20. APPLICATION_JSON string = "application/json"
  21. LIST_ADDRESS string = "list_address"
  22. COMMAS string = ","
  23. SORT_BY string = "sort_by"
  24. SORT_TYPE string = "sort_type"
  25. OFFSET string = "offset"
  26. LIMIT string = "limit"
  27. MIN_LIQUIDITY string = "min_liquidity"
  28. TOKEN_LIST string = "tokenlist"
  29. LIST_SUPPORTED_CHAIN string = "list_supported_chain"
  30. TX_LIST string = "tx_list"
  31. WALLET string = "wallet"
  32. BEFORE string = "before"
  33. )