mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-01-12 16:53:02 +08:00
* use tvl function v2 * refactor addFundsInMasterChef * replace usage of timestamp field * more refactoring * more refactoring
16 lines
389 B
JavaScript
16 lines
389 B
JavaScript
|
|
const { searchAccountsAll } = require("./helper/chain/algorand")
|
|
|
|
const algoOrderbookId = 354073718
|
|
const asaOrderbookId = 354073834
|
|
|
|
module.exports = {
|
|
timetravel: false,
|
|
algorand: {
|
|
tvl: async (api) => {
|
|
await searchAccountsAll({appId: algoOrderbookId, api, sumTokens: true, })
|
|
await searchAccountsAll({appId: asaOrderbookId, api, sumTokens: true, })
|
|
},
|
|
},
|
|
};
|