You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The contract includes a max vrf callback fee of $0.10 on mainnet. This is to prevent Pragma from paying more in gas than they are earning during gas spikes.
The contract includes a capability to allow players to bypass this by manually adding ETH to the LS contract which will be used to increase that players max vrf callback fee. The weakness in the current implementation is that the player needs to add to their vrf premium before the level up occurs. Once the level up occurs, LS contract will have requested VRF with the default max vrf callback fee and there is no way to re-request, nor do we want one to protect the integrity of the randomness system.
The solution is for clients to monitor the estimated gas cost for calling the LS receive_random_words and notify users when the estimate is over $0.10. This notification should let them know that gas fees are currently high and that if they want to avoid delays with VRF responses, they will need to pay a bit more.
The text was updated successfully, but these errors were encountered:
The contract includes a max vrf callback fee of $0.10 on mainnet. This is to prevent Pragma from paying more in gas than they are earning during gas spikes.
The contract includes a capability to allow players to bypass this by manually adding ETH to the LS contract which will be used to increase that players max vrf callback fee. The weakness in the current implementation is that the player needs to add to their vrf premium before the level up occurs. Once the level up occurs, LS contract will have requested VRF with the default max vrf callback fee and there is no way to re-request, nor do we want one to protect the integrity of the randomness system.
The solution is for clients to monitor the estimated gas cost for calling the LS
receive_random_words
and notify users when the estimate is over $0.10. This notification should let them know that gas fees are currently high and that if they want to avoid delays with VRF responses, they will need to pay a bit more.The text was updated successfully, but these errors were encountered: