mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-01-12 16:53:02 +08:00
90 lines
2.6 KiB
JavaScript
90 lines
2.6 KiB
JavaScript
const { toUSDTBalances } = require('./helper/balances');
|
|
const utils = require('./helper/utils');
|
|
|
|
function fetchChain(chainId) {
|
|
return async ()=>{
|
|
let url;
|
|
switch (chainId) {
|
|
case 'ontology':
|
|
url = 'https://flashapi.wing.finance/api/v1/flashpooldetail';
|
|
break;
|
|
case 'ethereum':
|
|
url = 'https://ethapi.wing.finance/eth/flash-pool/detail';
|
|
break;
|
|
case 'okexchain':
|
|
url = 'https://ethapi.wing.finance/okexchain/flash-pool/detail';
|
|
break;
|
|
case 'bsc':
|
|
url = "https://ethapi.wing.finance/bsc/flash-pool/detail";
|
|
break;
|
|
case 'ontology_evm':
|
|
url = "https://ethapi.wing.finance/ontevm/flash-pool/detail";
|
|
break;
|
|
};
|
|
const response = await utils.fetchURL(url);
|
|
let tvl = response.data.result.totalSupply - response.data.result.totalBorrow;
|
|
if (!tvl) {
|
|
tvl = response.data.result.TotalSupply - response.data.result.TotalBorrow;
|
|
}
|
|
return tvl;
|
|
}
|
|
}
|
|
async function fetch() {
|
|
const tvl = await utils.fetchURL('https://api.wing.finance/wing/analytics/tvl-overview')
|
|
return tvl.data.result.overview.totalSupply - tvl.data.result.overview.totalBorrow;
|
|
}
|
|
function stake(chainId) {
|
|
return async ()=>{
|
|
let url;
|
|
switch (chainId) {
|
|
case 'ontology':
|
|
url = 'https://flashapi.wing.finance/api/v1/flashpooldetail';
|
|
break;
|
|
case 'ethereum':
|
|
url = 'https://ethapi.wing.finance/eth/flash-pool/detail';
|
|
break;
|
|
case 'okexchain':
|
|
url = 'https://ethapi.wing.finance/okexchain/flash-pool/detail';
|
|
break;
|
|
case 'bsc':
|
|
url = "https://ethapi.wing.finance/bsc/flash-pool/detail";
|
|
break;
|
|
case 'ontology_evm':
|
|
url = "https://ethapi.wing.finance/ontevm/flash-pool/detail";
|
|
break;
|
|
};
|
|
const response = await utils.fetchURL(url);
|
|
let staked = response.data.result.totalLockedWingDollar;
|
|
if (!staked) {
|
|
staked = response.data.result.TotalLockedWingDollar;
|
|
}
|
|
return toUSDTBalances(staked);
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
ontology:{
|
|
fetch: fetchChain('ontology'),
|
|
staking: stake('ontology')
|
|
},
|
|
ethereum:{
|
|
fetch: fetchChain('ethereum'),
|
|
staking: stake('ethereum')
|
|
},
|
|
okexchain:{
|
|
fetch: fetchChain('okexchain'),
|
|
staking: stake('okexchain')
|
|
},
|
|
bsc:{
|
|
fetch: fetchChain('bsc'),
|
|
staking: stake('bsc')
|
|
},
|
|
ontology_evm:{
|
|
fetch: fetchChain('ontology_evm'),
|
|
staking: stake('ontology_evm')
|
|
},
|
|
fetch,
|
|
methodology: `Wing Finance TVL is achieved by subtracting total borrow from total supply on each chain. Staking is calculated by finding the dollar value of locked WING on each chain. The values are fetched from Wing Finance's own API.`
|
|
}
|
|
// node test.js projects/wing.js
|
|
// node projects/wing.js
|