When using OpenZeppelin's SafeMath library, what's the execution order when we do something like this?
v = v1.add(v2).mul(v3)
Is it (v1 + v2) * v3 or v1 + v2 * v3?
When using OpenZeppelin's SafeMath library, what's the execution order when we do something like this?
v = v1.add(v2).mul(v3)
Is it (v1 + v2) * v3 or v1 + v2 * v3?