🚀Advantages
What we are different
function _random(uint256 key) internal view returns (uint256) {
return
uint256(
keccak256(
abi.encodePacked(
key,
block.difficulty,
block.timestamp,
block.coinbase
)
)
);
}Last updated