Skip to content

Commit

Permalink
fix: astroport provider uri
Browse files Browse the repository at this point in the history
  • Loading branch information
adamewozniak committed Mar 2, 2024
1 parent 48cb7fb commit ca5d792
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions oracle/provider/astroport.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ var _ Provider = (*AstroportProvider)(nil)

const (
ProviderAstroport = "astroport"
restURL = "https://markets-api.astroport.fi"
tickersURL = "/markets/cg/tickers"
assetsURL = "/markets/cmc/v1/assets"
restURL = "https://api.astroport.fi"
tickersURL = "/api/markets/cg/tickers"
assetsURL = "/api/markets/cmc/v1/assets"
pollInterval = 3 * time.Second
)

Expand Down

0 comments on commit ca5d792

Please sign in to comment.