Skip to content

Commit cac3773

Browse files
authored
Switch hallmark format (#17957)
1 parent 2a4f431 commit cac3773

File tree

326 files changed

+751
-751
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

326 files changed

+751
-751
lines changed

projects/01/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const { sumTokensExport } = require('../helper/solana')
22

33
module.exports = {
44
hallmarks:[
5-
[1667865600, "FTX collapse"]
5+
['2022-11-08', "FTX collapse"]
66
],
77
timetravel: false,
88
solana: {

projects/3xcalibur/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
const { uniTvlExports } = require('../helper/unknownTokens')
33
module.exports = uniTvlExports({
44
'arbitrum': '0xD158bd9E8b6efd3ca76830B66715Aa2b7Bad2218'
5-
}, { hasStablePools: true, hallmarks: [[1668038400, "Emissions started"]], })
5+
}, { hasStablePools: true, hallmarks: [['2022-11-10', "Emissions started"]], })

projects/Mezo/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ async function tvl(api) {
4545
}
4646

4747
module.exports = {
48-
hallmarks: [[1747987200, "Mezo Mainnet Migration"]],
48+
hallmarks: [['2025-05-23', "Mezo Mainnet Migration"]],
4949
ethereum: { tvl },
5050
// mezo: { tvl },
5151
};

projects/MorpheusAI/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ module.exports = {
3030
start: '2024-02-08', // Feb-08-2024 07:33:35 AM UTC in Unix timestamp
3131
ethereum: { tvl },
3232
hallmarks: [
33-
[1712400000, "MOR token launch"], // May-08-2024 12:00:00 AM UTC in Unix timestamp
33+
['2024-04-06', "MOR token launch"], // May-08-2024 12:00:00 AM UTC in Unix timestamp
3434
],
3535
};

projects/aada/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ module.exports = {
2626
}),
2727
tvl: sumTokensExport({ scripts: scriptAdresses }),
2828
},
29-
hallmarks: [[1708560053, "V2 Launch"]],
29+
hallmarks: [['2024-02-22', "V2 Launch"]],
3030
};

projects/aave-v3/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ const CONFIG = {
2525
module.exports = aaveV3Export(CONFIG)
2626

2727
module.exports.hallmarks = [
28-
[1659630089, "Start OP Rewards"],
29-
[1650471689, "Start AVAX Rewards"]
28+
['2022-08-04', "Start OP Rewards"],
29+
['2022-04-20', "Start AVAX Rewards"]
3030
]

projects/aave/index.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ module.exports = {
5454
avax: v2("avax", "0x4235E22d9C3f28DCDA82b58276cb6370B01265C2"),
5555
polygon: v2("polygon", "0x3ac4e9aa29940770aeC38fe853a4bbabb2dA9C19"),
5656
hallmarks: [
57-
//[1618419730, "Start MATIC V2 Rewards"],
58-
[1619470313, "Start Ethereum V2 Rewards"],
59-
[1633377983, "Start AVAX V2 Rewards"],
60-
[1635339600, "Potential xSUSHI attack found"],
61-
[1651881600, "UST depeg"],
62-
[1654822801, "stETH depeg"],
57+
//['2021-04-14', "Start MATIC V2 Rewards"],
58+
['2021-04-26', "Start Ethereum V2 Rewards"],
59+
['2021-10-04', "Start AVAX V2 Rewards"],
60+
['2021-10-27', "Potential xSUSHI attack found"],
61+
['2022-05-07', "UST depeg"],
62+
['2022-06-10', "stETH depeg"],
6363
],
6464
};
6565
// node test.js projects/aave/index.js

projects/abracadabra/api.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ function chainTvl(chain){
1919

2020
module.exports.misrepresentedTokens = true;
2121
module.exports.hallmarks = [
22-
[1651881600, "UST depeg"],
23-
[1643245200, "0xSifu revealed as QuadrigaCX founder"],
24-
[1667826000, "FTX collapse, Alameda repays FTT loans"],
22+
['2022-05-07', "UST depeg"],
23+
['2022-01-27', "0xSifu revealed as QuadrigaCX founder"],
24+
['2022-11-07', "FTX collapse, Alameda repays FTT loans"],
2525
]
2626

2727

projects/abracadabra/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const chains = ['arbitrum', 'avax', 'blast', 'bsc', 'ethereum', 'fantom', 'kava'
5858
chains.forEach(chain => module.exports[chain] = { tvl })
5959

6060
module.exports.hallmarks = [
61-
[1651881600, "UST depeg"],
62-
[1643245200, "0xSifu revealed as QuadrigaCX founder"],
63-
[1667826000, "FTX collapse, Alameda repays FTT loans"],
61+
['2022-05-07', "UST depeg"],
62+
['2022-01-27', "0xSifu revealed as QuadrigaCX founder"],
63+
['2022-11-07', "FTX collapse, Alameda repays FTT loans"],
6464
]

projects/acala-lending/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const {getExports} = require('../helper/heroku-api')
22

33
module.exports = {
44
hallmarks: [
5-
[1660521600, "aUSD exploit"]
5+
['2022-08-15', "aUSD exploit"]
66
],
77
timetravel: false,
88
misrepresentedTokens: true,

0 commit comments

Comments
 (0)