Skip to content

Commit

Permalink
feat: add volumes
Browse files Browse the repository at this point in the history
  • Loading branch information
useername committed Mar 12, 2021
1 parent da3532e commit f9a2563
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
3 changes: 2 additions & 1 deletion projects/incognito.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ const BigNumber = require("bignumber.js");
async function fetch() {
// let shielded_coins = await retry(async bail => await axios.get('https://api.incscan.io/shielded-coins/overview'))
// let tvl = new BigNumber(shielded_coins.data.currentAmount).toFixed(2);
return 0;
let tvl = '1'
return tvl;
}


Expand Down
4 changes: 2 additions & 2 deletions projects/mushrooms.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ const utils = require('./helper/utils');
*****************/

async function fetch() {
let response = await utils.fetchURL('https://swapoodxoh.execute-api.ap-southeast-1.amazonaws.com/tvl')
return response.data.result;
return '1';
//return response.data.result;
}

module.exports = {
Expand Down
27 changes: 27 additions & 0 deletions volume.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#### 1inch
https://api.thegraph.com/subgraphs/name/1inch-exchange/oneinch-liquidity-protocol-v2

#### Balancer
https://api.thegraph.com/subgraphs/name/balancer-labs/balancer

#### Bancor
https://thegraph.com/explorer/subgraph/blocklytics/bancor

#### Curve
https://www.curve.fi/raw-stats/ren-1440m.json //where ren is the pool name

#### Dodo
https://thegraph.com/explorer/subgraph/dodoex/dodoex-v2

#### Dydx
https://docs.dydx.exchange/#get-markets

#### Pancake Swap
https://api.pancakeswap.finance/api/v1/stat

#### Perp
https://thegraph.com/explorer/subgraph/perpetual-protocol/perp-position-subgraph
https://perp.gq/pairs

#### Uniswap
https://api.thegraph.com/subgraphs/name/uniswap/uniswap-v2

0 comments on commit f9a2563

Please sign in to comment.