Skip to content

Commit

Permalink
mark projects as dead
Browse files Browse the repository at this point in the history
  • Loading branch information
g1nt0ki committed Jul 19, 2024
1 parent 8eec7d5 commit 85d85b5
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion projects/augmented-finance/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const config = {

module.exports = {
methodology: methodologies.lendingMarket,
// deadFrom: 2024-02-22
deadFrom: "2024-02-22"
};

Object.keys(config).forEach(chain => {
Expand Down
3 changes: 1 addition & 2 deletions projects/bitindi-dex/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
const { uniTvlExport } = require('../helper/unknownTokens')
module.exports = uniTvlExport('bitindi', '0x87cef801D44D6eDa8106087e7676153c30e36950', true)
module.exports.bitindi.tvl = () => ({})

// deadFrom: '2023-12-20',
module.exports.deadFrom = '2023-12-20'
3 changes: 1 addition & 2 deletions projects/bitindi/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
const ADDRESSES = require('../helper/coreAssets.json')
const { staking } = require('../helper/staking')

module.exports = {
Expand All @@ -11,5 +10,5 @@ module.exports = {
staking: () => ({}),
// staking: staking('0x140c312c8841B0a7152946C0Bc2BD343bA51bbcc', ADDRESSES.bitindi.WBNI),
},
// deadFrom: '2023-12-20',
deadFrom: '2023-12-20',
};
2 changes: 1 addition & 1 deletion projects/phoenix/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
const tvl = () => ({})
module.exports = {
start: 1631376000, // beijing time 2021-9-11 0:0:
// deadFrom: '2022-09-15',
deadFrom: '2022-09-15',
hallmarks: [
[Math.floor(new Date('2022-09-15')/1e3), 'Project is dead: https://twitter.com/Phoenix__PHX/status/1570389804734640129'],
],
Expand Down
2 changes: 1 addition & 1 deletion projects/quasar-swap/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module.exports = {
block,
}),
}, */
//deadFrom: "2024-01-01",
deadFrom: "2024-01-01",
nova: {
tvl: () => ({}),
staking: () => ({}),
Expand Down
2 changes: 1 addition & 1 deletion projects/rumi/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ module.exports = {
arbitrum: {
tvl: () => ({}),
},
// deadFrom: '2023-12-11',
deadFrom: '2023-12-11',
};
4 changes: 2 additions & 2 deletions projects/yieldbank/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ async function tvl(api) {
const tokens = await api.multiCall({ abi: 'address:want', calls: vaults })
const bals = await api.multiCall({ abi: 'uint256:balance', calls: vaults })
api.addTokens(tokens, bals)
return sumUnknownTokens({ api, resolveLP: true, useDefaultCoreAssets: false })
return sumUnknownTokens({ api, resolveLP: true, useDefaultCoreAssets: false })
}

module.exports = {
Expand All @@ -16,5 +16,5 @@ module.exports = {
tvl: () => ({}),
staking: () => ({})
},
// deadFrom: "2023-12-01",
deadFrom: "2023-12-01",
}

0 comments on commit 85d85b5

Please sign in to comment.