foundry-random icon indicating copy to clipboard operation
foundry-random copied to clipboard

Generate reliably random numbers using Foundry's FFI cheat code.

Results 1 foundry-random issues
Sort by recently updated
recently updated
newest added

My project structure ``` contractsEscrow/ ├── lib/ │ ├── foundry-random/ │ └── foundry-std/ ├── remappings.txt └── src/ ├── SimpleEscrow.sol └── ISimpleEscrow.sol ``` My `remappings.txt` ``` @prb/test/=lib/foundry-random/lib/prb-test/src/ CramBit/=lib/foundry-random/lib/CramBit/ crambit/=lib/foundry-random/lib/CramBit/src/ ds-test/=lib/foundry-random/lib/forge-std/lib/ds-test/src/ forge-std/=lib/forge-std/src/...