From 7102f5f28726864552e4ce05be4a800f7b51464f Mon Sep 17 00:00:00 2001 From: Mrsirdev <111534516+Mrsirdev@users.noreply.github.com> Date: Tue, 12 Dec 2023 09:19:33 -0500 Subject: [PATCH] chore: replace lava by publicnode (#94) --- CHANGELOG.md | 3 +++ api/handler/v1/proxy.go | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18a4b4c..8866429 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,9 @@ Ref: https://keepachangelog.com/en/1.0.0/ ## Unreleased +## 1.3.3 - 2023-12-12 + +- (chore) [fse-897] Replace lava RPC with allnodes RPC for eth gas price - (chore) [fse-792] Handle accounts with zero staking balance on rewards endpoint - (chore) [fse-710] Bundle all price cron API calls into a single API call for all tokens - (chore) [fse-710] Fetch evmos 24h price change and return it on the ERC20ModuleBalance endpoint diff --git a/api/handler/v1/proxy.go b/api/handler/v1/proxy.go index 5bd1880..948c98d 100644 --- a/api/handler/v1/proxy.go +++ b/api/handler/v1/proxy.go @@ -32,7 +32,7 @@ func Epochs(ctx *fasthttp.RequestCtx) { } func EthGasPriceInternal() (string, error) { - url := "https://evmos.lava.build" + url := "https://evmos-evm.publicnode.com" val, _ := requester.MakePostGasPrice(url) return val, nil }