From 30bb92a2c2a8c97adc8f150495647a67730b2565 Mon Sep 17 00:00:00 2001 From: bestdeep Date: Wed, 5 Nov 2025 13:12:19 +0000 Subject: [PATCH] feat: Add HyperLoan protocol integration with Aave V3 export --- projects/hyperloan/index.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 projects/hyperloan/index.js diff --git a/projects/hyperloan/index.js b/projects/hyperloan/index.js new file mode 100644 index 0000000000..6670108770 --- /dev/null +++ b/projects/hyperloan/index.js @@ -0,0 +1,12 @@ +const { aaveV3Export } = require("../helper/aave"); + +// https://aave.com/docs/resources/addresses +const CONFIG = { + besc: ['0x3aDDb1f9F159326864B3d7046fB78150955e8587'], +}; + +module.exports = aaveV3Export(CONFIG) + +module.exports.hallmarks = [ + [1761994532, "Start BESC Rewards on HyperLoan Protocol"], +]