forked from DefiLlama/DefiLlama-Adapters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.js
50 lines (47 loc) · 1.87 KB
/
test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env node
const path = require("path");
require('dotenv').config();
const { default: computeTVL } = require("@defillama/sdk/build/computeTVL");
const { getCurrentBlocks } = require("@defillama/sdk/build//computeTVL/blocks");
const { humanizeNumber } = require("@defillama/sdk/build//computeTVL/humanizeNumber");
async function getBlocks(){
for(let i=0; i<5; i++){
try{
return await getCurrentBlocks();
} catch(e){
throw new Error("Couln't get block heights", e)
}
}
}
if (process.argv.length < 3) {
console.error(`Missing argument, you need to provide the filename of the adapter to test.
Eg: npx @defillama/sdk projects/myadapter.js`);
process.exit(1);
}
const passedFile = path.resolve(process.cwd(), process.argv[2]);
(async () => {
const importedModule = require(passedFile);
let usdTvl;
const { timestamp, ethereumBlock, chainBlocks } = await getBlocks();
for(const tvlSection of Object.keys(importedModule)){
const moduleToTest = (tvlSection === 'tvl' || tvlSection === 'fetch') ? importedModule : importedModule[tvlSection]
if(typeof moduleToTest !== "object"){
continue
}
console.log(`--- ${tvlSection} ---`)
if (moduleToTest.fetch) {
usdTvl = await moduleToTest.fetch(timestamp);
} else if (moduleToTest.tvl) {
let tvl = await moduleToTest.tvl(timestamp, ethereumBlock, chainBlocks);
if (typeof tvl !== "object") {
throw new Error("TVL returned is not a balances object");
}
// console.log(tvl);
usdTvl = (await computeTVL(tvl, "now", true)).usdTvl;
} else {
throw new Error("File must export either a property called tvl or one called fetch")
}
console.log("Total:", humanizeNumber(usdTvl));
}
process.exit(0);
})();