如何在我的智能合约中使用 chainlink VRF v1?
我正在尝试从我的VRFConsumer智能合约中使用GetRandomNumber()函数来获取随机数。我打电话给这个后,我会立即获取随机号码,还是还必须调用efferlandomness()函数?如果是,该怎么做?
I am trying to use getRandomNumber() function from my VRFConsumer smart contract to get random numbers. Will I get the random number immediately after I call this or do I also have to call the fulfillRandomness() function? If yes, how to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调用
getRandomnumber()
函数后,您需要等到协调员调用efferrandomness()
。您无需做任何事情,只需检查存储变量,然后在一两分钟后存储数字的位置(如果使用了存储变量)。
After you call the
getRandomNumber()
function you will need to wait until thefulfillRandomness()
is called by the coordinator.You don't need to do anything, just check the storage variable where you store the number (if you used a storage variable) after a minute or two.