VRF Consumer Interface
First, declare the interface for the VRF Consumer on your contract.
interface IVRFConsumer {
function requestRandomness(uint256 seed) external returns (uint256);
}
Last updated
First, declare the interface for the VRF Consumer on your contract.
interface IVRFConsumer {
function requestRandomness(uint256 seed) external returns (uint256);
}
Last updated