Architecture & Tests
This is a hardhat and foundry project following this guide exactly. Foundry was needed for ease of use during interactions and testing. Hardhat JS functionality was needed for ease of use for testing the oracle.
The entire oracle is ~100 LOC. A randomness consumer can be as short as ~100 SLOC. The two helper libraries add up to less than 400 LOC.
ChainLink VRF infrastructure spans many thousands of lines of code.
/oracle/oracle.js
: Contains the oracle that listens torequestRandomness
events for a user. It RLP-encodes the header of the block from the event, verifies that the hash matches so that we know our packaged header is correct, and then ships the header back on chain throughsendEncodedHeader()
which sends a transaction to the Consumer contract's callback functionfulfillRandomWords()
just like Chainlink VRF./src/CoinFlip.sol
: The randomness consumer contract built by any protocol that allows users to request secure randomness./src/RandaoLib.sol
: Used to verify that a block header is correct for a particular block number (The recreated hash from the shipped header matches the actual block hash). And has a function to extract the randomness value (mixHash) from the verified block header./src/RLPDecoder.sol
: HelpsRandaoLib.sol
to properly decode, verify, and extract the randomness (mixHash/randao) from the shipped RLP-encoded block header./script/DeployCoinFlip.s.sol
: Deploy CoinFlip randomness consumer contract./test/RandomnessConsumerTest.t.js
: Incomplete hardhat test used for some sanity checks./test/RandomnessConsumerTest.t.sol
: Incomplete foundry test used for some sanity checks..env
: Project requires private key and WebSocket for Sepolia. HTTPS not used. See.env.example
.
NOTE: If you alter the CoinFlip contract, to get the fresh ABI for the oracle, you may need to do npx hardhat clean
and then recompile npx hardhat compile
.
Testing
Hardhat:
npx hardhat test
foundry:
forge test
Last updated