Update protocol_params.go

This commit is contained in:
jagdeep sidhu 2024-10-07 11:28:41 -07:00
parent 30ed76a643
commit 6e97961a69

View file

@ -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)