From 2d832295ba1cb276c17f082db8e54cfbf3b16d56 Mon Sep 17 00:00:00 2001 From: Oleh-Mohylnyi <79149758+Oleh-Mohylnyi@users.noreply.github.com> Date: Mon, 16 Sep 2024 10:49:17 +0300 Subject: [PATCH] add TakoTako.xyz landing project running on Taiko mainnet network (#11637) --- projects/takoTako/index.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 projects/takoTako/index.js diff --git a/projects/takoTako/index.js b/projects/takoTako/index.js new file mode 100644 index 00000000000..ffe978e3438 --- /dev/null +++ b/projects/takoTako/index.js @@ -0,0 +1,14 @@ +const { aaveV2Export } = require("../helper/aave"); +const methodologies = require("../helper/methodologies"); + +const LPConfiguratorContract = "0xD07B62ee683267D4A884453eaE982A151653515E"; + +module.exports = { + taiko: { + ...aaveV2Export(LPConfiguratorContract, { + fromBlock: 381054, + }), + }, +}; + +module.exports.methodology = methodologies.lendingMarket;