UNPKG

@owlprotocol/contracts-account-abstraction

Version:

ERC4337 Account Abstraction support for deploying relevant smart contracts and interacting with UserOps.

10 lines (8 loc) 245 B
/// Resturns the bigger of two BigInts. export const minBigInt = (a: bigint, b: bigint) => { return a < b ? a : b; }; /// Returns the smaller of two BigInts. export const maxBigInt = (a: bigint, b: bigint) => { return a > b ? a : b; };