From 6e97961a696a8040e1d8c02eaa7e2e2cf554bd16 Mon Sep 17 00:00:00 2001 From: jagdeep sidhu Date: Mon, 7 Oct 2024 11:28:41 -0700 Subject: [PATCH] Update protocol_params.go --- params/protocol_params.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/params/protocol_params.go b/params/protocol_params.go index 638f58a339..34cd7270d3 100644 --- a/params/protocol_params.go +++ b/params/protocol_params.go @@ -164,7 +164,10 @@ const ( // up to half the consumed gas could be refunded. Redefined as 1/5th in EIP-3529 RefundQuotient uint64 = 2 RefundQuotientEIP3529 uint64 = 5 - + // SYSCOIN + SYSDataHashGas uint64 = 1400 // The cost of data hash retrieval + NEVMAddressGas uint64 = 200 // The cost of retrieving NEVM Address information + SYSBlockHashGas uint64 = 200 // the cost of SYS block hash retrieval BlobTxBytesPerFieldElement = 32 // Size in bytes of a field element BlobTxFieldElementsPerBlob = 4096 // Number of field elements stored in a single data blob BlobTxBlobGasPerBlob = 1 << 17 // Gas consumption of a single data blob (== blob byte size)