Get a Random Number
This page explains how to get a random number inside a smart contract using Chainlink VRF.
Random Number Consumer
Chainlink VRF follows the Request & Receive Data cycle. To consume randomness, your contract should inherit from VRFConsumerBase
and define two required functions
requestRandomness
, which makes the initial request for randomness.fulfillRandomness
, which is the function that receives and does something with verified randomness.
The contract should own enough LINK to pay the specified fee. The beginner walkthrough explains how to fund your contract.
Note, the below values have to be configured correctly for VRF requests to work. You can find the respective values for your network in the VRF Contracts page.
LINK Token
- LINK token address on the corresponding network (Ethereum, Polygon, BSC, etc)VRF Coordinator
- address of the Chainlink VRF CoordinatorKey Hash
- public key against which randomness is generatedFee
- fee required to fulfill a VRF request
Security Considerations
Be sure to look your contract over with these security considerations in mind!
️ Remember to fund your contract with LINK!
Requesting randomness will fail unless your deployed contract has enough LINK to pay for it. Learn how to Acquire testnet LINK and Fund your contract.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "@chainlink/contracts/src/v0.8/VRFConsumerBase.sol";
/**
* THIS IS AN EXAMPLE CONTRACT WHICH USES HARDCODED VALUES FOR CLARITY.
* PLEASE DO NOT USE THIS CODE IN PRODUCTION.
*/
contract RandomNumberConsumer is VRFConsumerBase {
bytes32 internal keyHash;
uint256 internal fee;
uint256 public randomResult;
/**
* Constructor inherits VRFConsumerBase
*
* Network: Kovan
* Chainlink VRF Coordinator address: 0xdD3782915140c8f3b190B5D67eAc6dc5760C46E9
* LINK token address: 0xa36085F69e2889c224210F603D836748e7dC0088
* Key Hash: 0x6c3699283bda56ad74f6b855546325b68d482e983852a7a82979cc4807b641f4
*/
constructor()
VRFConsumerBase(
0xdD3782915140c8f3b190B5D67eAc6dc5760C46E9, // VRF Coordinator
0xa36085F69e2889c224210F603D836748e7dC0088 // LINK Token
)
{
keyHash = 0x6c3699283bda56ad74f6b855546325b68d482e983852a7a82979cc4807b641f4;
fee = 0.1 * 10 ** 18; // 0.1 LINK (Varies by network)
}
/**
* Requests randomness
*/
function getRandomNumber() public returns (bytes32 requestId) {
require(LINK.balanceOf(address(this)) >= fee, "Not enough LINK - fill contract with faucet");
return requestRandomness(keyHash, fee);
}
/**
* Callback function used by VRF Coordinator
*/
function fulfillRandomness(bytes32 requestId, uint256 randomness) internal override {
randomResult = randomness;
}
// function withdrawLink() external {} - Implement a withdraw function to avoid locking your LINK in the contract
}
Maximum Gas for Callback
If your fulfillRandomness
function uses more than 200k gas, the transaction will fail.
Getting More Randomness
If you are looking for how to turn a single result into multiple random numbers, check out our guide on Randomness Expansion.
Network Congestion and Responsiveness
Network congestion can occur on all blockchains from time to time, which may result in transactions taking longer to get included in a block. During times of network congestion, VRF nodes will continue responding to randomness requests, but fulfillment response times will corresponding increase based on the level of congestion. It is important you account for this in your use case and set expectations accordingly.