Skip to content

Commit 06e947a

Browse files
authored
update: pwn (DefiLlama#12204)
1 parent bd5b5b7 commit 06e947a

File tree

1 file changed

+17
-4
lines changed

1 file changed

+17
-4
lines changed

projects/pwn/index.js

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ const PWN_BUNDLER_BSC = "0x4A75a527E97d853109aA6998a2B9E45a87A31e9f";
1414
const PWN_V1_SIMPLE_LOAN = "0x50160ff9c19fbE2B5643449e1A321cAc15af2b2C";
1515
const PWN_V1_1_SIMPLE_LOAN_A = "0x57c88D78f6D08b5c88b4A3b7BbB0C1AA34c3280A"; // Mainnet, Polygon, Arbitrum, BSC
1616
const PWN_V1_1_SIMPLE_LOAN_B = "0x4188C513fd94B0458715287570c832d9560bc08a"; // Cronos, Base, Optimism
17+
const PWN_V1_2_SIMPLE_LOAN = "0x9A93AE395F09C6F350E3306aec592763c517072e";
1718

1819
module.exports = {
1920
misrepresentedTokens: true,
@@ -26,6 +27,7 @@ module.exports = {
2627
PWN_BUNDLER_MAINNET,
2728
PWN_V1_SIMPLE_LOAN,
2829
PWN_V1_1_SIMPLE_LOAN_A,
30+
PWN_V1_2_SIMPLE_LOAN,
2931
],
3032
resolveNFTs: true,
3133
resolveArtBlocks: true,
@@ -40,6 +42,7 @@ module.exports = {
4042
PWN_BUNDLER_POLYGON,
4143
PWN_V1_SIMPLE_LOAN,
4244
PWN_V1_1_SIMPLE_LOAN_A,
45+
PWN_V1_2_SIMPLE_LOAN,
4346
],
4447
fetchCoValentTokens: true,
4548
}),
@@ -51,22 +54,32 @@ module.exports = {
5154
},
5255
base: {
5356
tvl: sumTokensExport({
54-
owners: [PWN_BUNDLER_BASE, PWN_V1_1_SIMPLE_LOAN_B], fetchCoValentTokens: true,
57+
owners: [PWN_BUNDLER_BASE, PWN_V1_1_SIMPLE_LOAN_B, PWN_V1_2_SIMPLE_LOAN], fetchCoValentTokens: true,
5558
}),
5659
},
5760
arbitrum: {
5861
tvl: sumTokensExport({
59-
owners: [PWN_BUNDLER_ARBITRUM, PWN_V1_1_SIMPLE_LOAN_A], fetchCoValentTokens: true,
62+
owners: [PWN_BUNDLER_ARBITRUM, PWN_V1_1_SIMPLE_LOAN_A, PWN_V1_2_SIMPLE_LOAN], fetchCoValentTokens: true,
6063
}),
6164
},
6265
optimism: {
6366
tvl: sumTokensExport({
64-
owners: [PWN_BUNDLER_OPTIMISM, PWN_V1_1_SIMPLE_LOAN_B], fetchCoValentTokens: true,
67+
owners: [PWN_BUNDLER_OPTIMISM, PWN_V1_1_SIMPLE_LOAN_B, PWN_V1_2_SIMPLE_LOAN], fetchCoValentTokens: true,
6568
}),
6669
},
6770
bsc: {
6871
tvl: sumTokensExport({
69-
owners: [PWN_BUNDLER_BSC, PWN_V1_1_SIMPLE_LOAN_A], fetchCoValentTokens: true,
72+
owners: [PWN_BUNDLER_BSC, PWN_V1_1_SIMPLE_LOAN_A, PWN_V1_2_SIMPLE_LOAN], fetchCoValentTokens: true,
73+
}),
74+
},
75+
linea: {
76+
tvl: sumTokensExport({
77+
owners: [PWN_V1_2_SIMPLE_LOAN], fetchCoValentTokens: true,
78+
}),
79+
},
80+
xdai: {
81+
tvl: sumTokensExport({
82+
owners: [PWN_V1_2_SIMPLE_LOAN], fetchCoValentTokens: true,
7083
}),
7184
},
7285
mantle: { tvl: () => ({}) },

0 commit comments

Comments
 (0)