Skip to content

Commit d796a97

Browse files
authored
update: pwn (DefiLlama#12416)
1 parent c6fa424 commit d796a97

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

projects/pwn/index.js

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ 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
1717
const PWN_V1_2_SIMPLE_LOAN = "0x9A93AE395F09C6F350E3306aec592763c517072e";
18+
const PWN_V1_2_2_SIMPLE_LOAN = "0x0773d5F2f7b3264a9Eb285F085aCCcC53d5aAa4F";
1819

1920
module.exports = {
2021
misrepresentedTokens: true,
@@ -28,6 +29,7 @@ module.exports = {
2829
PWN_V1_SIMPLE_LOAN,
2930
PWN_V1_1_SIMPLE_LOAN_A,
3031
PWN_V1_2_SIMPLE_LOAN,
32+
PWN_V1_2_2_SIMPLE_LOAN,
3133
],
3234
resolveNFTs: true,
3335
resolveArtBlocks: true,
@@ -43,6 +45,7 @@ module.exports = {
4345
PWN_V1_SIMPLE_LOAN,
4446
PWN_V1_1_SIMPLE_LOAN_A,
4547
PWN_V1_2_SIMPLE_LOAN,
48+
PWN_V1_2_2_SIMPLE_LOAN,
4649
],
4750
fetchCoValentTokens: true,
4851
}),
@@ -54,32 +57,32 @@ module.exports = {
5457
},
5558
base: {
5659
tvl: sumTokensExport({
57-
owners: [PWN_BUNDLER_BASE, PWN_V1_1_SIMPLE_LOAN_B, PWN_V1_2_SIMPLE_LOAN], fetchCoValentTokens: true,
60+
owners: [PWN_BUNDLER_BASE, PWN_V1_1_SIMPLE_LOAN_B, PWN_V1_2_SIMPLE_LOAN, PWN_V1_2_2_SIMPLE_LOAN], fetchCoValentTokens: true,
5861
}),
5962
},
6063
arbitrum: {
6164
tvl: sumTokensExport({
62-
owners: [PWN_BUNDLER_ARBITRUM, PWN_V1_1_SIMPLE_LOAN_A, PWN_V1_2_SIMPLE_LOAN], fetchCoValentTokens: true,
65+
owners: [PWN_BUNDLER_ARBITRUM, PWN_V1_1_SIMPLE_LOAN_A, PWN_V1_2_SIMPLE_LOAN, PWN_V1_2_2_SIMPLE_LOAN], fetchCoValentTokens: true,
6366
}),
6467
},
6568
optimism: {
6669
tvl: sumTokensExport({
67-
owners: [PWN_BUNDLER_OPTIMISM, PWN_V1_1_SIMPLE_LOAN_B, PWN_V1_2_SIMPLE_LOAN], fetchCoValentTokens: true,
70+
owners: [PWN_BUNDLER_OPTIMISM, PWN_V1_1_SIMPLE_LOAN_B, PWN_V1_2_SIMPLE_LOAN, PWN_V1_2_2_SIMPLE_LOAN], fetchCoValentTokens: true,
6871
}),
6972
},
7073
bsc: {
7174
tvl: sumTokensExport({
72-
owners: [PWN_BUNDLER_BSC, PWN_V1_1_SIMPLE_LOAN_A, PWN_V1_2_SIMPLE_LOAN], fetchCoValentTokens: true,
75+
owners: [PWN_BUNDLER_BSC, PWN_V1_1_SIMPLE_LOAN_A, PWN_V1_2_SIMPLE_LOAN, PWN_V1_2_2_SIMPLE_LOAN], fetchCoValentTokens: true,
7376
}),
7477
},
7578
linea: {
7679
tvl: sumTokensExport({
77-
owners: [PWN_V1_2_SIMPLE_LOAN], fetchCoValentTokens: true,
80+
owners: [PWN_V1_2_SIMPLE_LOAN, PWN_V1_2_2_SIMPLE_LOAN], fetchCoValentTokens: true,
7881
}),
7982
},
8083
xdai: {
8184
tvl: sumTokensExport({
82-
owners: [PWN_V1_2_SIMPLE_LOAN], fetchCoValentTokens: true,
85+
owners: [PWN_V1_2_SIMPLE_LOAN, PWN_V1_2_2_SIMPLE_LOAN], fetchCoValentTokens: true,
8386
}),
8487
},
8588
mantle: { tvl: () => ({}) },

0 commit comments

Comments
 (0)