mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-01-12 22:43:12 +08:00
18 lines
575 B
JavaScript
18 lines
575 B
JavaScript
const { stakings } = require('../helper/staking');
|
|
|
|
// Sonic
|
|
const contracts = [
|
|
'0xBD87A909F9A40FdaD6D9BE703E89A0383064D0Ab', // ebFox
|
|
'0x3725B740b33E75898e4e2E616E9BB519884edd37', // FoxMaxi
|
|
];
|
|
|
|
module.exports = {
|
|
methodology: 'Counts the totalSupply of Foxify protocol tokens and totalAssets from Arbitrum contract',
|
|
sonic: {
|
|
tvl: () => ({}),
|
|
staking: stakings(contracts, '0x261dfa2528dfa19011f10b168c856e02baaf0eb6')
|
|
},
|
|
arbitrum: {
|
|
tvl: stakings(['0xe5a4f22fcb8893ba0831babf9a15558b5e83446f'], '0xaf88d065e77c8cC2239327C5EDb3A432268e5831')
|
|
},
|
|
}; |