From 15354e8cf22e839f3b465710713fec8fa8e1e19a Mon Sep 17 00:00:00 2001 From: Testingtester2 <151787101+Testingtester2@users.noreply.github.com> Date: Thu, 26 Sep 2024 11:19:47 -0400 Subject: [PATCH 01/11] Update index.js Add Shibaswap-Shibarium --- projects/shibaswap/index.js | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/projects/shibaswap/index.js b/projects/shibaswap/index.js index 772fb8ccf369..997db6b0e14a 100644 --- a/projects/shibaswap/index.js +++ b/projects/shibaswap/index.js @@ -1,12 +1,13 @@ -const {getUniTVL} = require('../helper/unknownTokens') +const { getUniTVL } = require('../helper/unknownTokens'); -const FACTORY = '0x115934131916c8b277dd010ee02de363c09d037c'; +const FACTORY_ETHEREUM = '0x115934131916c8b277dd010ee02de363c09d037c'; +const FACTORY_SHIBARIUM = '0xEF83bbB63E8A7442E3a4a5d28d9bBf32D7c813c8'; module.exports = { misrepresentedTokens: true, ethereum: { tvl: getUniTVL({ - factory: FACTORY, + factory: FACTORY_ETHEREUM, useDefaultCoreAssets: true, blacklist: [ '0x6ADb2E268de2aA1aBF6578E4a8119b960E02928F', @@ -17,5 +18,11 @@ module.exports = { '0xC1bfcCd4c29813eDe019D00D2179Eea838a67703' ], }) + }, + shibarium: { + tvl: getUniTVL({ + factory: FACTORY_SHIBARIUM, + useDefaultCoreAssets: true, + }) } -}; \ No newline at end of file +}; From 9e6647e949056b77777be2af5e665429e3c58420 Mon Sep 17 00:00:00 2001 From: Testingtester2 <151787101+Testingtester2@users.noreply.github.com> Date: Thu, 26 Sep 2024 11:55:07 -0400 Subject: [PATCH 02/11] Update index.js --- projects/shibaswap/index.js | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/projects/shibaswap/index.js b/projects/shibaswap/index.js index 997db6b0e14a..a90500afeac8 100644 --- a/projects/shibaswap/index.js +++ b/projects/shibaswap/index.js @@ -1,7 +1,7 @@ const { getUniTVL } = require('../helper/unknownTokens'); +const { uniTvlExport } = require('../helper/exports'); const FACTORY_ETHEREUM = '0x115934131916c8b277dd010ee02de363c09d037c'; -const FACTORY_SHIBARIUM = '0xEF83bbB63E8A7442E3a4a5d28d9bBf32D7c813c8'; module.exports = { misrepresentedTokens: true, @@ -19,10 +19,5 @@ module.exports = { ], }) }, - shibarium: { - tvl: getUniTVL({ - factory: FACTORY_SHIBARIUM, - useDefaultCoreAssets: true, - }) - } + shibarium: uniTvlExport('shibarium', '0xEF83bbB63E8A7442E3a4a5d28d9bBf32D7c813c8', { hasStablePools: true }) }; From 77c697bf382bac37523d665d2e4fbbd2fdfece4e Mon Sep 17 00:00:00 2001 From: Testingtester2 <151787101+Testingtester2@users.noreply.github.com> Date: Thu, 26 Sep 2024 12:06:01 -0400 Subject: [PATCH 03/11] Update index.js --- projects/shibaswap/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/projects/shibaswap/index.js b/projects/shibaswap/index.js index a90500afeac8..7e696f359f41 100644 --- a/projects/shibaswap/index.js +++ b/projects/shibaswap/index.js @@ -19,5 +19,7 @@ module.exports = { ], }) }, - shibarium: uniTvlExport('shibarium', '0xEF83bbB63E8A7442E3a4a5d28d9bBf32D7c813c8', { hasStablePools: true }) + shibarium: { + tvl: uniTvlExport('shibarium', '0xEF83bbB63E8A7442E3a4a5d28d9bBf32D7c813c8', { hasStablePools: true }) + } }; From 1a3d1a1a51dc513c56620e15f903ff2823356d66 Mon Sep 17 00:00:00 2001 From: Testingtester2 <151787101+Testingtester2@users.noreply.github.com> Date: Thu, 26 Sep 2024 12:09:56 -0400 Subject: [PATCH 04/11] Update index.js --- projects/shibaswap/index.js | 27 ++++++--------------------- 1 file changed, 6 insertions(+), 21 deletions(-) diff --git a/projects/shibaswap/index.js b/projects/shibaswap/index.js index 7e696f359f41..370c3991e913 100644 --- a/projects/shibaswap/index.js +++ b/projects/shibaswap/index.js @@ -1,25 +1,10 @@ -const { getUniTVL } = require('../helper/unknownTokens'); -const { uniTvlExport } = require('../helper/exports'); - -const FACTORY_ETHEREUM = '0x115934131916c8b277dd010ee02de363c09d037c'; +const { getUniTVL } = require('../helper/unknownTokens') module.exports = { - misrepresentedTokens: true, - ethereum: { - tvl: getUniTVL({ - factory: FACTORY_ETHEREUM, - useDefaultCoreAssets: true, - blacklist: [ - '0x6ADb2E268de2aA1aBF6578E4a8119b960E02928F', - '0xab167E816E4d76089119900e941BEfdfA37d6b32', - '0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c', - '0x84FA8f52E437Ac04107EC1768764B2b39287CB3e', - '0x7121D00b4fA18F13Da6c2e30d19C04844E6AfDC8', - '0xC1bfcCd4c29813eDe019D00D2179Eea838a67703' - ], - }) - }, shibarium: { - tvl: uniTvlExport('shibarium', '0xEF83bbB63E8A7442E3a4a5d28d9bBf32D7c813c8', { hasStablePools: true }) + tvl: getUniTVL({ factory: "0xEF83bbB63E8A7442E3a4a5d28d9bBf32D7c813c8", useDefaultCoreAssets: true,}) + }, + Ethereum: { + tvl: getUniTVL({ factory: "0x115934131916c8b277dd010ee02de363c09d037c", useDefaultCoreAssets: true,}) } -}; +} From 6a3459075bcdc95a65fb7b9036e37a045bc65473 Mon Sep 17 00:00:00 2001 From: Testingtester2 <151787101+Testingtester2@users.noreply.github.com> Date: Thu, 26 Sep 2024 12:12:16 -0400 Subject: [PATCH 05/11] Update index.js --- projects/shibaswap/index.js | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/projects/shibaswap/index.js b/projects/shibaswap/index.js index 370c3991e913..7e696f359f41 100644 --- a/projects/shibaswap/index.js +++ b/projects/shibaswap/index.js @@ -1,10 +1,25 @@ -const { getUniTVL } = require('../helper/unknownTokens') +const { getUniTVL } = require('../helper/unknownTokens'); +const { uniTvlExport } = require('../helper/exports'); + +const FACTORY_ETHEREUM = '0x115934131916c8b277dd010ee02de363c09d037c'; module.exports = { - shibarium: { - tvl: getUniTVL({ factory: "0xEF83bbB63E8A7442E3a4a5d28d9bBf32D7c813c8", useDefaultCoreAssets: true,}) + misrepresentedTokens: true, + ethereum: { + tvl: getUniTVL({ + factory: FACTORY_ETHEREUM, + useDefaultCoreAssets: true, + blacklist: [ + '0x6ADb2E268de2aA1aBF6578E4a8119b960E02928F', + '0xab167E816E4d76089119900e941BEfdfA37d6b32', + '0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c', + '0x84FA8f52E437Ac04107EC1768764B2b39287CB3e', + '0x7121D00b4fA18F13Da6c2e30d19C04844E6AfDC8', + '0xC1bfcCd4c29813eDe019D00D2179Eea838a67703' + ], + }) }, - Ethereum: { - tvl: getUniTVL({ factory: "0x115934131916c8b277dd010ee02de363c09d037c", useDefaultCoreAssets: true,}) + shibarium: { + tvl: uniTvlExport('shibarium', '0xEF83bbB63E8A7442E3a4a5d28d9bBf32D7c813c8', { hasStablePools: true }) } -} +}; From 0cbe69eebb5f68924c49e8ea9876fac9ef409be9 Mon Sep 17 00:00:00 2001 From: Testingtester2 <151787101+Testingtester2@users.noreply.github.com> Date: Thu, 26 Sep 2024 12:19:20 -0400 Subject: [PATCH 06/11] Update index.js --- projects/shibaswap/index.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/projects/shibaswap/index.js b/projects/shibaswap/index.js index 7e696f359f41..997db6b0e14a 100644 --- a/projects/shibaswap/index.js +++ b/projects/shibaswap/index.js @@ -1,7 +1,7 @@ const { getUniTVL } = require('../helper/unknownTokens'); -const { uniTvlExport } = require('../helper/exports'); const FACTORY_ETHEREUM = '0x115934131916c8b277dd010ee02de363c09d037c'; +const FACTORY_SHIBARIUM = '0xEF83bbB63E8A7442E3a4a5d28d9bBf32D7c813c8'; module.exports = { misrepresentedTokens: true, @@ -20,6 +20,9 @@ module.exports = { }) }, shibarium: { - tvl: uniTvlExport('shibarium', '0xEF83bbB63E8A7442E3a4a5d28d9bBf32D7c813c8', { hasStablePools: true }) + tvl: getUniTVL({ + factory: FACTORY_SHIBARIUM, + useDefaultCoreAssets: true, + }) } }; From 1730a74ae55f772371b9d85c1eb4ebdb66aa9a8e Mon Sep 17 00:00:00 2001 From: Testingtester2 <151787101+Testingtester2@users.noreply.github.com> Date: Thu, 26 Sep 2024 13:57:14 -0400 Subject: [PATCH 07/11] Update index.js --- projects/shibaswap/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/shibaswap/index.js b/projects/shibaswap/index.js index 997db6b0e14a..b61048a68f66 100644 --- a/projects/shibaswap/index.js +++ b/projects/shibaswap/index.js @@ -1,7 +1,7 @@ const { getUniTVL } = require('../helper/unknownTokens'); const FACTORY_ETHEREUM = '0x115934131916c8b277dd010ee02de363c09d037c'; -const FACTORY_SHIBARIUM = '0xEF83bbB63E8A7442E3a4a5d28d9bBf32D7c813c8'; +const FACTORY_SHIBARIUM = '0x938e62594610Dd35A25a1DfE35C94fA0A9f6bfAA'; module.exports = { misrepresentedTokens: true, From 1434cad408e2e3dfcef75bac8f28ae026668e71e Mon Sep 17 00:00:00 2001 From: Testingtester2 <151787101+Testingtester2@users.noreply.github.com> Date: Thu, 26 Sep 2024 14:03:20 -0400 Subject: [PATCH 08/11] Update index.js --- projects/shibaswap/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/projects/shibaswap/index.js b/projects/shibaswap/index.js index b61048a68f66..e20a23ed26e4 100644 --- a/projects/shibaswap/index.js +++ b/projects/shibaswap/index.js @@ -1,4 +1,5 @@ const { getUniTVL } = require('../helper/unknownTokens'); +const { uniTvlExport } = require('../helper/unknownTokens') const FACTORY_ETHEREUM = '0x115934131916c8b277dd010ee02de363c09d037c'; const FACTORY_SHIBARIUM = '0x938e62594610Dd35A25a1DfE35C94fA0A9f6bfAA'; @@ -20,7 +21,7 @@ module.exports = { }) }, shibarium: { - tvl: getUniTVL({ + tvl: uniTvlExport({ factory: FACTORY_SHIBARIUM, useDefaultCoreAssets: true, }) From e87d3e9f63bdf8d81df838a2df510ff2cb3f74d4 Mon Sep 17 00:00:00 2001 From: Testingtester2 <151787101+Testingtester2@users.noreply.github.com> Date: Thu, 26 Sep 2024 14:08:49 -0400 Subject: [PATCH 09/11] Update index.js --- projects/shibaswap/index.js | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/projects/shibaswap/index.js b/projects/shibaswap/index.js index e20a23ed26e4..bf02fd4f650f 100644 --- a/projects/shibaswap/index.js +++ b/projects/shibaswap/index.js @@ -1,8 +1,7 @@ const { getUniTVL } = require('../helper/unknownTokens'); -const { uniTvlExport } = require('../helper/unknownTokens') +const { uniTvlExport } = require('../helper/unknownTokens'); const FACTORY_ETHEREUM = '0x115934131916c8b277dd010ee02de363c09d037c'; -const FACTORY_SHIBARIUM = '0x938e62594610Dd35A25a1DfE35C94fA0A9f6bfAA'; module.exports = { misrepresentedTokens: true, @@ -20,10 +19,5 @@ module.exports = { ], }) }, - shibarium: { - tvl: uniTvlExport({ - factory: FACTORY_SHIBARIUM, - useDefaultCoreAssets: true, - }) - } + shibarium: uniTvlExport('shibarium', '0x938e62594610Dd35A25a1DfE35C94fA0A9f6bfAA', { hasStablePools: true }) }; From 94a27cc09c18f8a2dc633ddbd45c6f123ff7b1d7 Mon Sep 17 00:00:00 2001 From: Testingtester2 <151787101+Testingtester2@users.noreply.github.com> Date: Thu, 26 Sep 2024 14:10:59 -0400 Subject: [PATCH 10/11] Update index.js --- projects/shibaswap/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/shibaswap/index.js b/projects/shibaswap/index.js index bf02fd4f650f..079aa9ede166 100644 --- a/projects/shibaswap/index.js +++ b/projects/shibaswap/index.js @@ -19,5 +19,5 @@ module.exports = { ], }) }, - shibarium: uniTvlExport('shibarium', '0x938e62594610Dd35A25a1DfE35C94fA0A9f6bfAA', { hasStablePools: true }) + shibarium: uniTvlExport('shibarium', '0x938e62594610Dd35A25a1DfE35C94fA0A9f6bfAA') }; From 33d04e26acc50f81f179d7b010603f2685fdf601 Mon Sep 17 00:00:00 2001 From: Testingtester2 <151787101+Testingtester2@users.noreply.github.com> Date: Thu, 26 Sep 2024 14:13:26 -0400 Subject: [PATCH 11/11] Update index.js --- projects/shibaswap/index.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/projects/shibaswap/index.js b/projects/shibaswap/index.js index 079aa9ede166..2c1fe23f3506 100644 --- a/projects/shibaswap/index.js +++ b/projects/shibaswap/index.js @@ -1,5 +1,4 @@ -const { getUniTVL } = require('../helper/unknownTokens'); -const { uniTvlExport } = require('../helper/unknownTokens'); +const { getUniTVL, uniTvlExport } = require('../helper/unknownTokens'); const FACTORY_ETHEREUM = '0x115934131916c8b277dd010ee02de363c09d037c'; @@ -19,5 +18,5 @@ module.exports = { ], }) }, - shibarium: uniTvlExport('shibarium', '0x938e62594610Dd35A25a1DfE35C94fA0A9f6bfAA') + tvl: uniTvlExport('shibarium', '0x938e62594610Dd35A25a1DfE35C94fA0A9f6bfAA', { hasStablePools: true }) };