Files
DefiLlama-Adapters/projects/linear.js
2022-05-05 18:07:43 +01:00

18 lines
279 B
JavaScript

const { call } = require('./helper/near')
async function tvl() {
return {
near: (await call(
'linear-protocol.near',
'get_total_staked_balance',
{}
) / 1e24 )
};
};
module.exports = {
near: {
tvl
},
timetravel: false,
};