From 8591151ac2306799caed734cec373bd4c3b22323 Mon Sep 17 00:00:00 2001 From: Oleg Nikonychev Date: Wed, 12 Nov 2025 13:11:43 +0100 Subject: [PATCH] chore: default fee value for posting prices 175unibi --- .env.example | 2 +- README.md | 2 +- feeder/priceposter.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index 1dbd5fc..d31348c 100644 --- a/.env.example +++ b/.env.example @@ -31,5 +31,5 @@ B2_RPC_ENDPOINT="https://mainnet.b2-rpc.com" B2_RPC_PUBLIC_ENDPOINTS="https://rpc.bsquared.network,https://mainnet.b2-rpc.com" # Gas and fee settings -FEE_AMOUNT_UNIBI="125" +FEE_AMOUNT_UNIBI="175" GAS_LIMIT="7000" \ No newline at end of file diff --git a/README.md b/README.md index 2a66fef..7e98b34 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ FEEDER_MNEMONIC="guard cream sadness conduct invite crumble clock pudding hole g EXCHANGE_SYMBOLS_MAP='{"bitfinex": {"ubtc:unusd": "tBTCUSD", "ueth:unusd": "tETHUSD", "uusd:unusd": "tUSTUSD"}}' # Gas and fee settings -FEE_AMOUNT_UNIBI="125" +FEE_AMOUNT_UNIBI="175" GAS_LIMIT="7000" ``` diff --git a/feeder/priceposter.go b/feeder/priceposter.go index 0e57d4a..818afbe 100644 --- a/feeder/priceposter.go +++ b/feeder/priceposter.go @@ -202,7 +202,7 @@ func sendTx( } txFeeStr := os.Getenv("FEE_AMOUNT_UNIBI") - feeAmount := int64(125) + feeAmount := int64(175) if txFeeStr != "" { if v, err := strconv.ParseInt(txFeeStr, 10, 64); err == nil { feeAmount = v