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
immutable variables save on gas, and cannot be changed and we have a number of variables that we won't want to change, like the VRFCoordinator address.
We can also use immutable to set these variables in the constructor.
constant variables cannot be set in the constructor.
The text was updated successfully, but these errors were encountered:
immutable
variables save on gas, and cannot be changed and we have a number of variables that we won't want to change, like the VRFCoordinator address.We can also use
immutable
to set these variables in the constructor.constant
variables cannot be set in the constructor.The text was updated successfully, but these errors were encountered: