# How to create random NFT **Published by:** [web3hooks](https://paragraph.com/@web3hooks/) **Published on:** 2022-02-08 **URL:** https://paragraph.com/@web3hooks/how-to-create-random-nft ## Content I will using Chainlink VRFfunction getRandomNumber(uint256 seed) public returns (bytes32 requestId) { return requestRandomness(keyHash, fee, seed); } function fulfillRandomness(bytes32 requestId, uint256 randomness) internal override { randomResult = randomness; } https://docs.chain.link/docs/intermediates-tutorial/ ## Publication Information - [web3hooks](https://paragraph.com/@web3hooks/): Publication homepage - [All Posts](https://paragraph.com/@web3hooks/): More posts from this publication - [RSS Feed](https://api.paragraph.com/blogs/rss/@web3hooks): Subscribe to updates - [Twitter](https://twitter.com/aliezsss4): Follow on Twitter