in the gas splitter contract, won't it just be better to write bool public immutable releaseRoyalty; as uint256 public immutable releaseRoyalty; and since the value is already is already immutable, this will probably save us 1000+ in deployment gas and saves us 13K+ in total gas cost
in the gas splitter contract, won't it just be better to write
bool public immutable releaseRoyalty;
asuint256 public immutable releaseRoyalty;
and since the value is already is already immutable, this will probably save us 1000+ in deployment gas and saves us 13K+ in total gas cost