mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-04-30 05:45:32 +08:00
24 lines
561 B
JavaScript
24 lines
561 B
JavaScript
const { uniV3Export } = require("../helper/uniswapV3");
|
|
const { mergeExports } = require("../helper/utils");
|
|
|
|
const uniExport = uniV3Export({
|
|
linea: {
|
|
factory: "0x9Fe607e5dCd0Ea318dBB4D8a7B04fa553d6cB2c5",
|
|
fromBlock: 1150,
|
|
},
|
|
base: {
|
|
factory: "0x07AceD5690e09935b1c0e6E88B772d9440F64718",
|
|
fromBlock: 2053334,
|
|
},
|
|
});
|
|
|
|
|
|
const algebraExport = uniV3Export({
|
|
linea: {
|
|
factory: "0xec4f2937e57a6F39087187816eCc83191E6dB1aB",
|
|
fromBlock: 3395601,
|
|
isAlgebra: true,
|
|
},
|
|
});
|
|
|
|
module.exports = mergeExports([uniExport, algebraExport]); |