UNPKG

@uniswap/v4-sdk

Version:

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

12 lines 388 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sortsBefore = void 0; function sortsBefore(currencyA, currencyB) { if (currencyA.isNative) return true; if (currencyB.isNative) return false; return currencyA.wrapped.sortsBefore(currencyB.wrapped); } exports.sortsBefore = sortsBefore; //# sourceMappingURL=sortsBefore.js.map