Core Architectural Elements
2. Fork Management
function testSimpleFork() public {
// Extend main chain to 10 blocks
extendChain(1, 10);
// Create a fork from block 5
uint16 fork2 = createFork(1, 5, 5);
// ...
validateChainState();
}3. Access Control
4. Pausable Safety
Last updated
Was this helpful?