🎲VRF
VRF
Chainlink VRF (Verifiable Random Function) is a provably fair and verifiable random number generator (RNG) that enables smart contracts to access random values without compromising security or usability. For each request, Chainlink VRF generates one or more random values and cryptographic proof of how those values were determined. The proof is published and verified on-chain before any consuming applications can use it. This process ensures that results cannot be tampered with or manipulated by any single entity including oracle operators, miners, users, or smart contract developers.
Create VRF
Deploy contract responsible for request and managing random words.
Get Subscription
Get the subscription ID and more information about the generated contract.
Get Subscription By Id
Retrieve additional information about the subscription by searching for it using its ID.
TopUp Subscription
Add funds to your subscription.
Request RandomWords
Request new random words, and you can pass the quantity of words to be generated as a parameter. Ensure that there are sufficient funds in your wallet.
List requests
List all the IDs of the requests made through the provided contract.
Get Latest Request
Return the ID of the last request made.
Get Randomwords
Through the requestID
, you can query whether the random words have already been generated or not. In case of true, all requested random words will be returned according to the numWords
argument passed.
Cancel Subscription
Last updated