From 4aa5ed41c60bc04784bc307d0c066d4fd28411c9 Mon Sep 17 00:00:00 2001 From: Joshua <166188424+oxbio@users.noreply.github.com> Date: Sat, 6 Apr 2024 18:55:07 +0300 Subject: [PATCH] add oxb sdk adapter (#9716) --- projects/oxb/index.js | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 projects/oxb/index.js diff --git a/projects/oxb/index.js b/projects/oxb/index.js new file mode 100644 index 000000000000..018733a8d5a3 --- /dev/null +++ b/projects/oxb/index.js @@ -0,0 +1,11 @@ +const { staking } = require("../helper/staking"); + +module.exports = { + bsc: { + tvl: () => ({}), + staking: staking( + "0x2281f53a583b00cb80814ccdffe1544a5274dad2", + "0x7536c00711E41df6aEBCCa650791107645b6bc52" + ), + }, +};