consts.go 659 B

12345678910111213141516171819202122
  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. BIRD_EYE_API_KEY string = "BIRD_EYE_API_KEY"
  12. CheckLiquidity string = "check_liquidity"
  13. IncludeLiquidity string = "include_liquidity"
  14. ADDRESS string = "address"
  15. ACCEPT string = "accept"
  16. X_CHAIN string = "x_chain"
  17. APPLICATION_JSON string = "application/json"
  18. LIST_ADDRESS string = "list_address"
  19. COMMAS string = ","
  20. )