From 00c5c2bd3e65df8a34aa7150937646efa9c03adf Mon Sep 17 00:00:00 2001 From: colin <102356659+colinlyguo@users.noreply.github.com> Date: Tue, 10 Jun 2025 17:03:37 +0800 Subject: [PATCH] fix: update blob-related parameters to Prague configuration (#1202) --- params/protocol_params.go | 4 ++-- params/version.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/params/protocol_params.go b/params/protocol_params.go index a541c86a0f..7aab650058 100644 --- a/params/protocol_params.go +++ b/params/protocol_params.go @@ -165,9 +165,9 @@ const ( BlobTxBlobGasPerBlob = 1 << 17 // Gas consumption of a single data blob (== blob byte size) BlobTxMinBlobGasprice = 1 // Minimum gas price for data blobs - BlobTxBlobGaspriceUpdateFraction = 3338477 // Controls the maximum rate of change for blob gas price + BlobTxBlobGaspriceUpdateFraction = 5007716 // Controls the maximum rate of change for blob gas price, using Prague parameters - BlobTxTargetBlobGasPerBlock = 3 * BlobTxBlobGasPerBlob // Target consumable blob gas for data blobs per block (for 1559-like pricing) + BlobTxTargetBlobGasPerBlock = 6 * BlobTxBlobGasPerBlob // Target consumable blob gas for data blobs per block (for 1559-like pricing), using Prague parameters ) // Gas discount table for BLS12-381 G1 and G2 multi exponentiation operations diff --git a/params/version.go b/params/version.go index 7a5726b9fd..8f10685252 100644 --- a/params/version.go +++ b/params/version.go @@ -24,7 +24,7 @@ import ( const ( VersionMajor = 5 // Major version component of the current release VersionMinor = 8 // Minor version component of the current release - VersionPatch = 52 // Patch version component of the current release + VersionPatch = 53 // Patch version component of the current release VersionMeta = "mainnet" // Version metadata to append to the version string )