├── .gitignore ├── README.md ├── config.js ├── contracts ├── Compoundor.json ├── IERC20.json ├── INonfungiblePositionManager.json ├── IUniswapV3Factory.json ├── IUniswapV3Pool.json └── MultiCompoundor.json ├── index.js ├── package.json └── scripts ├── collector.js └── conciliator.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | .vscode -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revert-finance/compoundor-js/HEAD/README.md -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revert-finance/compoundor-js/HEAD/config.js -------------------------------------------------------------------------------- /contracts/Compoundor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revert-finance/compoundor-js/HEAD/contracts/Compoundor.json -------------------------------------------------------------------------------- /contracts/IERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revert-finance/compoundor-js/HEAD/contracts/IERC20.json -------------------------------------------------------------------------------- /contracts/INonfungiblePositionManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revert-finance/compoundor-js/HEAD/contracts/INonfungiblePositionManager.json -------------------------------------------------------------------------------- /contracts/IUniswapV3Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revert-finance/compoundor-js/HEAD/contracts/IUniswapV3Factory.json -------------------------------------------------------------------------------- /contracts/IUniswapV3Pool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revert-finance/compoundor-js/HEAD/contracts/IUniswapV3Pool.json -------------------------------------------------------------------------------- /contracts/MultiCompoundor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revert-finance/compoundor-js/HEAD/contracts/MultiCompoundor.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revert-finance/compoundor-js/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revert-finance/compoundor-js/HEAD/package.json -------------------------------------------------------------------------------- /scripts/collector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revert-finance/compoundor-js/HEAD/scripts/collector.js -------------------------------------------------------------------------------- /scripts/conciliator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revert-finance/compoundor-js/HEAD/scripts/conciliator.js --------------------------------------------------------------------------------