From 537d8bcea69b87ef5986d18d159b775611d94250 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 7 Jul 2025 13:01:04 +0200 Subject: [PATCH] params: update BlobBaseCost to the new value --- params/protocol_params.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/params/protocol_params.go b/params/protocol_params.go index 24e967bc58..d655d8dc0e 100644 --- a/params/protocol_params.go +++ b/params/protocol_params.go @@ -173,7 +173,7 @@ const ( BlobTxBlobGasPerBlob = 1 << 17 // Gas consumption of a single data blob (== blob byte size) BlobTxMinBlobGasprice = 1 // Minimum gas price for data blobs BlobTxPointEvaluationPrecompileGas = 50000 // Gas price for the point evaluation precompile. - BlobBaseCost = 1 << 14 // Base execution gas cost for a blob. + BlobBaseCost = 1 << 13 // Base execution gas cost for a blob. HistoryServeWindow = 8192 // Number of blocks to serve historical block hashes for, EIP-2935. )