Merge branch 'master' into next-v5.0

This commit is contained in:
Hadrien Croubois
2023-01-14 18:51:03 -03:00
committed by Francisco Giordano
265 changed files with 5659 additions and 8542 deletions

View File

@ -3,9 +3,9 @@ module.exports = {
sum: (...args) => args.reduce((acc, n) => acc + n, 0),
BNsum: (...args) => args.reduce((acc, n) => acc.add(n), web3.utils.toBN(0)),
// min of integer / bignumber
min: (...args) => args.slice(1).reduce((x, y) => x < y ? x : y, args[0]),
BNmin: (...args) => args.slice(1).reduce((x, y) => x.lt(y) ? x : y, args[0]),
min: (...args) => args.slice(1).reduce((x, y) => (x < y ? x : y), args[0]),
BNmin: (...args) => args.slice(1).reduce((x, y) => (x.lt(y) ? x : y), args[0]),
// max of integer / bignumber
max: (...args) => args.slice(1).reduce((x, y) => x > y ? x : y, args[0]),
BNmax: (...args) => args.slice(1).reduce((x, y) => x.gt(y) ? x : y, args[0]),
max: (...args) => args.slice(1).reduce((x, y) => (x > y ? x : y), args[0]),
BNmax: (...args) => args.slice(1).reduce((x, y) => (x.gt(y) ? x : y), args[0]),
};