Solidity Assembly Gas Optimized Keccak256
Solidity smart contracts often use keccak256 to hash a number of input parameters; the standard way of calling this function looks like this:
function getKeccak256(uint256 a, uint256 b, uint256 c) external pure returns(bytes32 result) {
result = ...
dacian.me20 min read