@bayswap/sdk
Version:
SDK for BaySwap smart contract
12 lines • 322 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.dumpPools = void 0;
const dumpPools = (pools) => {
const res = {};
for (const p of pools) {
res[p.poolID] = p;
}
console.log(JSON.stringify(res));
};
exports.dumpPools = dumpPools;
//# sourceMappingURL=dump.js.map