Reserved Space
Everything you need to know about the Reserved Space
Why a Reserved Space
In RandomX system there is not a unique Blob that all miners work on. In fact in RandomX each miner must get a different blob, two different miners do not mine with the same blob. The Reserved Space is a specific location of the blob that is supposed to be updated to generate unique blobs for each miner.
How it works
Monero: In Monero, there is a specific location in the block templates where it is possible to set extraNonce data that will then generate different blob hashes when the block template is hashed to generate the blob.
Etica: Etica doesn't use a block template system so the Reserved Space works slightly differently than Monero. Etica uses a ReservedSpaceOffset at position 55bytes, ReservedSpaceSize is 8bytes, so ReservedSpace data will be inserted in the blob at position 55-62bytes. Here is how Etica Reserved Space works: 1. extraNonce: Each miner get an extraNonce (random 8bytes string). 2. Update the blob a) Then a 32bytes hash is generated using keccack256 (also named soliditysha3 ) to hash (address, extraNonce, challengeNumber) like this:
The address input must be the address that sends the transaction on blockchain. extraNonce input is the random 8bytes string generated specifically for a miner. challengeNumber input must be the current ETI challengeNumber.
b) Then the extraNonceHash 32bytes is truncated to only take the first 8bytes. This 8bytes data will then be placed at ReservedSpaceOffset position (at position 55-62bytes) Example of the whole process to generate a specific blob for each miner:
Note: When passing the Nonce to Ethereum related functions like Ethereum libraries it is often necessary to add 0x at the begining of the Nonce. For instance here it would beb 0x89abcdef and 0x5f6e7d8c.
Last updated