From a8798a8f2b9d854b39827264a93eb986d42c1c50 Mon Sep 17 00:00:00 2001 From: Stone <125890624+Stonepapa@users.noreply.github.com> Date: Thu, 18 Apr 2024 16:41:36 +0800 Subject: [PATCH 1/3] Update index.js --- projects/bsquared/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/projects/bsquared/index.js b/projects/bsquared/index.js index 0dca597dfc39..10a9a86c82c6 100644 --- a/projects/bsquared/index.js +++ b/projects/bsquared/index.js @@ -14,6 +14,9 @@ const BRC20Owners = [ const ADDRESSES_ETHEREUM_STONE = '0x7122985656e38BDC0302Db86685bb972b145bD3C'; module.exports = { + hallmarks: [ + [1710259680, "Cease pre-deposit"], + ], methodology: "Staking tokens via BSquared Network Buzz counts as TVL", bitcoin: { tvl: sdk.util.sumChainTvls([ From f549ef20123e454401522f5b00e772639cee5c12 Mon Sep 17 00:00:00 2001 From: Stone <125890624+Stonepapa@users.noreply.github.com> Date: Thu, 2 May 2024 22:40:01 +0800 Subject: [PATCH 2/3] Create index.js hive protocol --- projects/hive-protocol/index.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 projects/hive-protocol/index.js diff --git a/projects/hive-protocol/index.js b/projects/hive-protocol/index.js new file mode 100644 index 000000000000..eac2efaa334b --- /dev/null +++ b/projects/hive-protocol/index.js @@ -0,0 +1,5 @@ +const {uniV3Export} = require("../helper/uniswapV3"); + +module.exports = uniV3Export({ + bsquared: {factory: '0xd5B5f1CA0fa5636ac54b0a0007BA374A1513346e', fromBlock: 747123}, +}) From aec9d8011941442d114e1646b18f633b72df0dee Mon Sep 17 00:00:00 2001 From: g1nt0ki <99907941+g1nt0ki@users.noreply.github.com> Date: Fri, 3 May 2024 12:09:49 +0200 Subject: [PATCH 3/3] code refactor --- projects/hive-protocol/index.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/projects/hive-protocol/index.js b/projects/hive-protocol/index.js index eac2efaa334b..a0b947f9f9ff 100644 --- a/projects/hive-protocol/index.js +++ b/projects/hive-protocol/index.js @@ -1,5 +1,5 @@ -const {uniV3Export} = require("../helper/uniswapV3"); +const { sumTokensExport, nullAddress } = require("../helper/sumTokens"); -module.exports = uniV3Export({ - bsquared: {factory: '0xd5B5f1CA0fa5636ac54b0a0007BA374A1513346e', fromBlock: 747123}, -}) +module.exports = { + bsquared: { tvl: sumTokensExport({ owner: '0xd5B5f1CA0fa5636ac54b0a0007BA374A1513346e', tokens: [nullAddress] }) }, +} \ No newline at end of file