SumInputs
Last updated
Helper action to sum up 2 inputs/return values
0xb49404ac
const sumInputsAction = new dfs.actions.basic.SumInputsAction(
a,
b
);STANDARD_ACTION
/// @param a First input
/// @param b Second input
struct Params {
uint256 a;
uint256 b;
}Last updated
return bytes32(a + b)