Skip to content

Commit b678a1a

Browse files
authored
Merge branch 'DefiLlama:main' into update-frankencoin
2 parents d070986 + 8a8438c commit b678a1a

File tree

5 files changed

+18
-3
lines changed

5 files changed

+18
-3
lines changed

projects/dackieswap-v2/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
const { getUniTVL } = require("../helper/unknownTokens");
22
const { stakings } = require("../helper/staking");
33

4-
const DACKIE = "0xc2BC7A73613B9bD5F373FE10B55C59a69F4D617B";
4+
const DACKIE = "0x73326b4d0225c429bed050c11C4422d91470AaF4";
55

66
const stakingPools = [
77
// Lock & flexible pool
8-
"0x4Ad387bcb03B92a6e22A72391Cc37493Fc388B05",
8+
"0xF6C5b5Df9Bcee40cd474CCd6373f99b56dBCF5E5",
99
];
1010
const config = {
1111
xlayer: '0x757cd583004400ee67e5cc3c7a60c6a62e3f6d30',

projects/ensuro/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ const addressBook = {
2727
{name: "eToken Junior FortuneCredit", address: "0xb1Dff6ce862273adcA2B9eFD96A8976764Ac7414"},
2828
{name: "eToken Junior Azzegura", address: "0x45435f79103472eD62fB9C92F04c50b188b22B99"},
2929
{name: "eToken Junior Covest", address: "0x92624870dC092C36943682375Df8246BF126D410"},
30+
{name: "eToken Junior Poncho", address: "0x0AA6623Be5b293fDde18aE0095163785a0b0E4E3"},
3031
// PremiumsAccounts
3132
{name: "PremiumsAccount Koala", address: "0xCCf5C404d32eB6E777088AB13837a1b8dCBA9328"},
3233
{name: "PremiumsAccount Innov Zone", address: "0x4f43B8F252887F814ED689346fdb5Bd266394520"},
@@ -43,12 +44,14 @@ const addressBook = {
4344
{name: "PremiumsAccount FortuneCredit", address: "0xaF48bd33916836F5A3dD8C9095692d240A6A2567"},
4445
{name: "PremiumsAccount Azzegura", address: "0x6CB730dF6B3DB5BAac5FD96F50b04005c1B3A5F7"},
4546
{name: "PremiumsAccount Covest", address: "0x1D71E3901dB121F05A4a06F92440108055386355"},
47+
{name: "PremiumsAccount Poncho", address: "0xa490D80A80c8E547D040CE3aBBDCC8CcAD584e4c"},
4648
// Main CFLs
4749
{name: "CFL Koala", address: "0xf6b7a278afFbc905b407E01893B287D516016ce0"},
4850
{name: "CFL Spot", address: "0x48Ff8B1493c6A3545Aea3F0812f1303E2f958bF4"},
4951
{name: "CFL Bliss", address: "0x936DAC0eeA5e4E90B8384B96d1aA6284Ce106f71"},
5052
// MultiStrategy Vault - Vault that aggregates assets of several reserves
5153
{name: "MultiStrategy Vault", address: "0x1EE585dcea25cbDa16BE8cfeFa381A1F32acA418"},
54+
{name: "MultiStrategy Vault V2", address: "0x14F6DFEE761455247C6bf2b2b052a1F6245dD6FB"},
5255
],
5356
}
5457
};

projects/graphene/index.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ const config = {
1414
fromBlock: 18438182,
1515
controller: "0x7900f766F06e361FDDB4FdeBac5b138c4EEd8d4A",
1616
},
17+
iotaevm: {
18+
fromBlock: 1936296,
19+
controller: "0x0E4d23092A4a12caAd0E22e0892EcEC7C09DC51c",
20+
},
1721
};
1822

1923
Object.keys(config).forEach((chain) => {

projects/satoshi-perps/index.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
const { gmxExports } = require('../helper/gmx')
2+
3+
module.exports = {
4+
core: {
5+
tvl: gmxExports({ vault: '0x736Cad071Fdb5ce7B17F35bB22f68Ad53F55C207', fromBlock: 20537386, }),
6+
},
7+
}

projects/yieldnest/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ module.exports = {
2323
tvl: async (api) => {
2424
const ynBNB = '0x304B5845b9114182ECb4495Be4C91a273b74B509'
2525
const ynBTCk = '0x78839cE14a8213779128Ee4da6D75E1326606A56'
26-
return api.erc4626Sum({ calls: [ynBNB, ynBTCk], isOG4626: true})
26+
const ynBNBx = '0x32C830f5c34122C6afB8aE87ABA541B7900a2C5F'
27+
return api.erc4626Sum({ calls: [ynBNB, ynBTCk, ynBNBx], isOG4626: true})
2728
}
2829
},
2930
}

0 commit comments

Comments
 (0)