diff --git a/projects/xrpl-dex/index.js b/projects/xrpl-dex/index.js index 9232ed1c37f0..0de17de24ce5 100644 --- a/projects/xrpl-dex/index.js +++ b/projects/xrpl-dex/index.js @@ -7,6 +7,7 @@ module.exports = { ripple: { tvl, }, + misrepresentedTokens: true, }; function getTimeNow() { @@ -21,6 +22,5 @@ async function tvl() { let { lastDataUpdate, tvl } = await getCache(projectKey, cacheKey) if (!lastDataUpdate || timeNow - lastDataUpdate > aDayInSeconds) throw new Error("stale/missing tvl data"); - console.log(tvl) return tvl } \ No newline at end of file diff --git a/projects/xrpl-dex/package.json b/projects/xrpl-dex/package.json index b1c75940c669..a7e910c8e369 100644 --- a/projects/xrpl-dex/package.json +++ b/projects/xrpl-dex/package.json @@ -1,12 +1,12 @@ { "name": "xrpl-dex", "version": "1.0.0", - "main": "app.js", + "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "author": "", - "license": "ISC", + "license": "MIT", "description": "", "dependencies": { "ripple-binary-codec": "^2.1.0"