Utility Module
Features
Usage
Usage Example
import { bigIntMax } from '@haven1/wagmi-sdk/util';
const value1 = 100n;
const value2 = 200n;
const maxValue = bigIntMax(value1, value2);
console.log(`The maximum value is: ${maxValue}`); // Output: The maximum value is: 200n