UNPKG

@uniswap/v4-sdk

Version:

⚒️ An SDK for building applications on top of Uniswap V4

8 lines 253 B
export function sortsBefore(currencyA, currencyB) { if (currencyA.isNative) return true; if (currencyB.isNative) return false; return currencyA.wrapped.sortsBefore(currencyB.wrapped); } //# sourceMappingURL=sortsBefore.js.map