├── .circleci ├── check_npm_version.sh └── config.yml ├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── legos-autocomplete.gif └── weight.png ├── docs ├── .nojekyll ├── README.md ├── _sidebar.md ├── aave.md ├── balancer.md ├── compound.md ├── curvefi.md ├── dydx.md ├── idle.md ├── index.html ├── kyber.md ├── maker.md ├── material-oceanic.css ├── mstable.md ├── onesplit.md ├── overview_mainnet_address.md ├── quickstart.md ├── synthetix.md ├── uniswap.md └── uniswapV2.md ├── jest.config.js ├── package.json ├── scripts ├── genAddrMainnetOverview.js └── getAbisFromUMA.js ├── src ├── aave │ ├── abi │ │ ├── AToken.json │ │ ├── LendingPool.json │ │ ├── LendingPoolAddessProvider.json │ │ └── LendingPoolCore.json │ ├── contracts.ts │ ├── contracts │ │ ├── FlashloanReceiverBase.sol │ │ ├── IFlashLoanReceiver.sol │ │ ├── ILendingPool.sol │ │ └── ILendingPoolAddressesProvider.sol │ └── index.ts ├── balancer │ ├── abi │ │ ├── BActions.json │ │ ├── BFactory.json │ │ ├── BPool.json │ │ └── ExchangeProxy.json │ ├── contracts.ts │ ├── contracts │ │ ├── BFactory.sol │ │ ├── BPool.sol │ │ └── ExchangeProxy.sol │ └── index.ts ├── compound │ ├── README.md │ ├── abi │ │ ├── CEther.json │ │ ├── CToken.json │ │ ├── CompoundPriceOracle.json │ │ └── Comptroller.json │ ├── contracts.ts │ ├── contracts │ │ ├── ICEther.sol │ │ ├── ICToken.sol │ │ ├── ICompoundPriceOracle.sol │ │ └── IComptroller.sol │ └── index.ts ├── curvefi │ ├── abi │ │ ├── Curve.json │ │ ├── PoolToken.json │ │ └── Zap.json │ ├── contracts.ts │ ├── contracts │ │ ├── ICurveFiCurve.sol │ │ ├── ICurveFiPoolToken.sol │ │ └── ICurveFiZap.sol │ └── index.ts ├── dappsys │ ├── abi │ │ ├── DSProxy.json │ │ └── DSProxyFactory.json │ ├── contracts.ts │ └── index.ts ├── dydx │ ├── abi │ │ ├── AdminImpl.json │ │ ├── CanonicalOrders.json │ │ ├── DaiPriceOracle.json │ │ ├── Expiry.json │ │ ├── ExpiryV2.json │ │ ├── LimitOrders.json │ │ ├── LiquidatorProxyV1ForSoloMargin.json │ │ ├── OperationImpl.json │ │ ├── PayableProxyForSoloMargin.json │ │ ├── PolynomialInterestSetter.json │ │ ├── Refunder.json │ │ ├── SaiPriceOracle.json │ │ ├── SignedOperationProxy.json │ │ ├── SoloMargin.json │ │ ├── StopLimitOrders.json │ │ ├── UsdcPriceOracle.json │ │ └── WethPriceOracle.json │ ├── contracts.ts │ ├── contracts │ │ ├── DydxFlashloanBase.sol │ │ ├── ICallee.sol │ │ └── ISoloMargin.sol │ └── index.ts ├── erc20 │ ├── README.md │ ├── abi │ │ ├── ERC20.json │ │ └── WETH.json │ ├── index.ts │ └── tokens.ts ├── idle │ ├── abi │ │ └── IdleTokenV3.json │ ├── contracts.ts │ └── index.ts ├── index.ts ├── kyber │ ├── abi │ │ └── KyberNetworkProxy.json │ ├── contracts.ts │ ├── contracts │ │ └── KyberNetworkProxy.sol │ └── index.ts ├── maker │ ├── abi │ │ ├── DssCdpManager.json │ │ ├── DssProxyActions.json │ │ ├── Medianizer.json │ │ └── ProxyRegistry.json │ ├── contracts.ts │ ├── contracts │ │ ├── DssProxyActionsBase.sol │ │ ├── IDssProxyActions.sol │ │ └── IMedianizer.sol │ ├── ilks.ts │ ├── index.ts │ └── priceFeeds.ts ├── mstable │ ├── abi │ │ ├── AaveIntegration.json │ │ ├── BasketManager.json │ │ ├── CompoundIntegration.json │ │ ├── DelayedProxyAdmin.json │ │ ├── ForgeValidator.json │ │ ├── Masset.json │ │ ├── MassetValidationHelper.json │ │ ├── MetaToken.json │ │ ├── Nexus.json │ │ ├── RewardsDistributor.json │ │ ├── SavingsContract.json │ │ ├── SavingsManager.json │ │ └── StakingRewardsWithPlatformToken.json │ ├── contracts.ts │ ├── contracts │ │ ├── Masset.sol │ │ └── StakingRewardsWithPlatformToken.sol │ └── index.ts ├── onesplit │ ├── abi │ │ └── OneSplit.json │ ├── contracts.ts │ ├── contracts │ │ └── IOneSplit.sol │ └── index.ts ├── synthetix │ ├── abi │ │ ├── Depot.json │ │ ├── ExchangeRates.json │ │ ├── Exchanger.json │ │ ├── ProxyERC20.json │ │ ├── Synth.json │ │ └── Synthetix.json │ ├── contracts.ts │ ├── contracts │ │ ├── IDepot.sol │ │ ├── ISynth.sol │ │ └── ISynthetix.sol │ └── index.ts ├── uma │ ├── abi │ │ ├── AddressWhitelist.json │ │ ├── DesignatedVotingFactory.json │ │ ├── ExpiringMultiParty.json │ │ ├── ExpiringMultiPartyCreator.json │ │ ├── ExpiringMultiPartyLib.json │ │ ├── FinancialContractsAdmin.json │ │ ├── Finder.json │ │ ├── Governor.json │ │ ├── IdentifierWhitelist.json │ │ ├── Registry.json │ │ ├── Store.json │ │ ├── TokenFactory.json │ │ ├── Voting.json │ │ ├── VotingToken.json │ │ └── WETH9.json │ ├── contracts.ts │ └── index.ts ├── uniswap │ ├── abi │ │ ├── Exchange.json │ │ └── Factory.json │ ├── contracts.ts │ ├── contracts │ │ ├── IUniswapExchange.sol │ │ └── IUniswapFactory.sol │ └── index.ts └── uniswapV2 │ ├── abi │ ├── IUniswapV2Factory.json │ ├── IUniswapV2Pair.json │ ├── IUniswapV2Router01.json │ └── IUniswapV2Router02.json │ ├── contracts.ts │ ├── contracts │ ├── IUniswapV2Factory.sol │ ├── IUniswapV2Pair.sol │ ├── IUniswapV2Router01.sol │ └── IUniswapV2Router02.sol │ └── index.ts ├── tests ├── aave.test.sol ├── aave.test.ts ├── balancer.test.ts ├── compound.test.sol ├── compound.test.ts ├── index.test.ts ├── kyber.test.sol ├── kyber.test.ts ├── maker.test.ts ├── medianizer.test.ts ├── mstable.test.ts ├── synthetix.test.ts ├── test-environment.js ├── uniswap.test.ts ├── uniswapV2.test.ts └── utils.ts ├── tsconfig.json └── yarn.lock /.circleci/check_npm_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/.circleci/check_npm_version.sh -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | PRIV_KEY= 2 | MAINNET_NODE_URL= 3 | 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .env 4 | .temp_* 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/README.md -------------------------------------------------------------------------------- /assets/legos-autocomplete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/assets/legos-autocomplete.gif -------------------------------------------------------------------------------- /assets/weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/assets/weight.png -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/aave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/docs/aave.md -------------------------------------------------------------------------------- /docs/balancer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/docs/balancer.md -------------------------------------------------------------------------------- /docs/compound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/docs/compound.md -------------------------------------------------------------------------------- /docs/curvefi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/docs/curvefi.md -------------------------------------------------------------------------------- /docs/dydx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/docs/dydx.md -------------------------------------------------------------------------------- /docs/idle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/docs/idle.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/kyber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/docs/kyber.md -------------------------------------------------------------------------------- /docs/maker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/docs/maker.md -------------------------------------------------------------------------------- /docs/material-oceanic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/docs/material-oceanic.css -------------------------------------------------------------------------------- /docs/mstable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/docs/mstable.md -------------------------------------------------------------------------------- /docs/onesplit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/docs/onesplit.md -------------------------------------------------------------------------------- /docs/overview_mainnet_address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/docs/overview_mainnet_address.md -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/synthetix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/docs/synthetix.md -------------------------------------------------------------------------------- /docs/uniswap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/docs/uniswap.md -------------------------------------------------------------------------------- /docs/uniswapV2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/docs/uniswapV2.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/package.json -------------------------------------------------------------------------------- /scripts/genAddrMainnetOverview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/scripts/genAddrMainnetOverview.js -------------------------------------------------------------------------------- /scripts/getAbisFromUMA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/scripts/getAbisFromUMA.js -------------------------------------------------------------------------------- /src/aave/abi/AToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/aave/abi/AToken.json -------------------------------------------------------------------------------- /src/aave/abi/LendingPool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/aave/abi/LendingPool.json -------------------------------------------------------------------------------- /src/aave/abi/LendingPoolAddessProvider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/aave/abi/LendingPoolAddessProvider.json -------------------------------------------------------------------------------- /src/aave/abi/LendingPoolCore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/aave/abi/LendingPoolCore.json -------------------------------------------------------------------------------- /src/aave/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/aave/contracts.ts -------------------------------------------------------------------------------- /src/aave/contracts/FlashloanReceiverBase.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/aave/contracts/FlashloanReceiverBase.sol -------------------------------------------------------------------------------- /src/aave/contracts/IFlashLoanReceiver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/aave/contracts/IFlashLoanReceiver.sol -------------------------------------------------------------------------------- /src/aave/contracts/ILendingPool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/aave/contracts/ILendingPool.sol -------------------------------------------------------------------------------- /src/aave/contracts/ILendingPoolAddressesProvider.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/aave/contracts/ILendingPoolAddressesProvider.sol -------------------------------------------------------------------------------- /src/aave/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/aave/index.ts -------------------------------------------------------------------------------- /src/balancer/abi/BActions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/balancer/abi/BActions.json -------------------------------------------------------------------------------- /src/balancer/abi/BFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/balancer/abi/BFactory.json -------------------------------------------------------------------------------- /src/balancer/abi/BPool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/balancer/abi/BPool.json -------------------------------------------------------------------------------- /src/balancer/abi/ExchangeProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/balancer/abi/ExchangeProxy.json -------------------------------------------------------------------------------- /src/balancer/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/balancer/contracts.ts -------------------------------------------------------------------------------- /src/balancer/contracts/BFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/balancer/contracts/BFactory.sol -------------------------------------------------------------------------------- /src/balancer/contracts/BPool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/balancer/contracts/BPool.sol -------------------------------------------------------------------------------- /src/balancer/contracts/ExchangeProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/balancer/contracts/ExchangeProxy.sol -------------------------------------------------------------------------------- /src/balancer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/balancer/index.ts -------------------------------------------------------------------------------- /src/compound/README.md: -------------------------------------------------------------------------------- 1 | # Compound 2 | -------------------------------------------------------------------------------- /src/compound/abi/CEther.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/compound/abi/CEther.json -------------------------------------------------------------------------------- /src/compound/abi/CToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/compound/abi/CToken.json -------------------------------------------------------------------------------- /src/compound/abi/CompoundPriceOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/compound/abi/CompoundPriceOracle.json -------------------------------------------------------------------------------- /src/compound/abi/Comptroller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/compound/abi/Comptroller.json -------------------------------------------------------------------------------- /src/compound/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/compound/contracts.ts -------------------------------------------------------------------------------- /src/compound/contracts/ICEther.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/compound/contracts/ICEther.sol -------------------------------------------------------------------------------- /src/compound/contracts/ICToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/compound/contracts/ICToken.sol -------------------------------------------------------------------------------- /src/compound/contracts/ICompoundPriceOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/compound/contracts/ICompoundPriceOracle.sol -------------------------------------------------------------------------------- /src/compound/contracts/IComptroller.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/compound/contracts/IComptroller.sol -------------------------------------------------------------------------------- /src/compound/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/compound/index.ts -------------------------------------------------------------------------------- /src/curvefi/abi/Curve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/curvefi/abi/Curve.json -------------------------------------------------------------------------------- /src/curvefi/abi/PoolToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/curvefi/abi/PoolToken.json -------------------------------------------------------------------------------- /src/curvefi/abi/Zap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/curvefi/abi/Zap.json -------------------------------------------------------------------------------- /src/curvefi/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/curvefi/contracts.ts -------------------------------------------------------------------------------- /src/curvefi/contracts/ICurveFiCurve.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/curvefi/contracts/ICurveFiCurve.sol -------------------------------------------------------------------------------- /src/curvefi/contracts/ICurveFiPoolToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/curvefi/contracts/ICurveFiPoolToken.sol -------------------------------------------------------------------------------- /src/curvefi/contracts/ICurveFiZap.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/curvefi/contracts/ICurveFiZap.sol -------------------------------------------------------------------------------- /src/curvefi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/curvefi/index.ts -------------------------------------------------------------------------------- /src/dappsys/abi/DSProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dappsys/abi/DSProxy.json -------------------------------------------------------------------------------- /src/dappsys/abi/DSProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dappsys/abi/DSProxyFactory.json -------------------------------------------------------------------------------- /src/dappsys/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dappsys/contracts.ts -------------------------------------------------------------------------------- /src/dappsys/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dappsys/index.ts -------------------------------------------------------------------------------- /src/dydx/abi/AdminImpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dydx/abi/AdminImpl.json -------------------------------------------------------------------------------- /src/dydx/abi/CanonicalOrders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dydx/abi/CanonicalOrders.json -------------------------------------------------------------------------------- /src/dydx/abi/DaiPriceOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dydx/abi/DaiPriceOracle.json -------------------------------------------------------------------------------- /src/dydx/abi/Expiry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dydx/abi/Expiry.json -------------------------------------------------------------------------------- /src/dydx/abi/ExpiryV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dydx/abi/ExpiryV2.json -------------------------------------------------------------------------------- /src/dydx/abi/LimitOrders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dydx/abi/LimitOrders.json -------------------------------------------------------------------------------- /src/dydx/abi/LiquidatorProxyV1ForSoloMargin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dydx/abi/LiquidatorProxyV1ForSoloMargin.json -------------------------------------------------------------------------------- /src/dydx/abi/OperationImpl.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/dydx/abi/PayableProxyForSoloMargin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dydx/abi/PayableProxyForSoloMargin.json -------------------------------------------------------------------------------- /src/dydx/abi/PolynomialInterestSetter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dydx/abi/PolynomialInterestSetter.json -------------------------------------------------------------------------------- /src/dydx/abi/Refunder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dydx/abi/Refunder.json -------------------------------------------------------------------------------- /src/dydx/abi/SaiPriceOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dydx/abi/SaiPriceOracle.json -------------------------------------------------------------------------------- /src/dydx/abi/SignedOperationProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dydx/abi/SignedOperationProxy.json -------------------------------------------------------------------------------- /src/dydx/abi/SoloMargin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dydx/abi/SoloMargin.json -------------------------------------------------------------------------------- /src/dydx/abi/StopLimitOrders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dydx/abi/StopLimitOrders.json -------------------------------------------------------------------------------- /src/dydx/abi/UsdcPriceOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dydx/abi/UsdcPriceOracle.json -------------------------------------------------------------------------------- /src/dydx/abi/WethPriceOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dydx/abi/WethPriceOracle.json -------------------------------------------------------------------------------- /src/dydx/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dydx/contracts.ts -------------------------------------------------------------------------------- /src/dydx/contracts/DydxFlashloanBase.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dydx/contracts/DydxFlashloanBase.sol -------------------------------------------------------------------------------- /src/dydx/contracts/ICallee.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dydx/contracts/ICallee.sol -------------------------------------------------------------------------------- /src/dydx/contracts/ISoloMargin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dydx/contracts/ISoloMargin.sol -------------------------------------------------------------------------------- /src/dydx/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/dydx/index.ts -------------------------------------------------------------------------------- /src/erc20/README.md: -------------------------------------------------------------------------------- 1 | # ERC20 Token 2 | -------------------------------------------------------------------------------- /src/erc20/abi/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/erc20/abi/ERC20.json -------------------------------------------------------------------------------- /src/erc20/abi/WETH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/erc20/abi/WETH.json -------------------------------------------------------------------------------- /src/erc20/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/erc20/index.ts -------------------------------------------------------------------------------- /src/erc20/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/erc20/tokens.ts -------------------------------------------------------------------------------- /src/idle/abi/IdleTokenV3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/idle/abi/IdleTokenV3.json -------------------------------------------------------------------------------- /src/idle/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/idle/contracts.ts -------------------------------------------------------------------------------- /src/idle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/idle/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/kyber/abi/KyberNetworkProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/kyber/abi/KyberNetworkProxy.json -------------------------------------------------------------------------------- /src/kyber/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/kyber/contracts.ts -------------------------------------------------------------------------------- /src/kyber/contracts/KyberNetworkProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/kyber/contracts/KyberNetworkProxy.sol -------------------------------------------------------------------------------- /src/kyber/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/kyber/index.ts -------------------------------------------------------------------------------- /src/maker/abi/DssCdpManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/maker/abi/DssCdpManager.json -------------------------------------------------------------------------------- /src/maker/abi/DssProxyActions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/maker/abi/DssProxyActions.json -------------------------------------------------------------------------------- /src/maker/abi/Medianizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/maker/abi/Medianizer.json -------------------------------------------------------------------------------- /src/maker/abi/ProxyRegistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/maker/abi/ProxyRegistry.json -------------------------------------------------------------------------------- /src/maker/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/maker/contracts.ts -------------------------------------------------------------------------------- /src/maker/contracts/DssProxyActionsBase.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/maker/contracts/DssProxyActionsBase.sol -------------------------------------------------------------------------------- /src/maker/contracts/IDssProxyActions.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/maker/contracts/IDssProxyActions.sol -------------------------------------------------------------------------------- /src/maker/contracts/IMedianizer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/maker/contracts/IMedianizer.sol -------------------------------------------------------------------------------- /src/maker/ilks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/maker/ilks.ts -------------------------------------------------------------------------------- /src/maker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/maker/index.ts -------------------------------------------------------------------------------- /src/maker/priceFeeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/maker/priceFeeds.ts -------------------------------------------------------------------------------- /src/mstable/abi/AaveIntegration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/mstable/abi/AaveIntegration.json -------------------------------------------------------------------------------- /src/mstable/abi/BasketManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/mstable/abi/BasketManager.json -------------------------------------------------------------------------------- /src/mstable/abi/CompoundIntegration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/mstable/abi/CompoundIntegration.json -------------------------------------------------------------------------------- /src/mstable/abi/DelayedProxyAdmin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/mstable/abi/DelayedProxyAdmin.json -------------------------------------------------------------------------------- /src/mstable/abi/ForgeValidator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/mstable/abi/ForgeValidator.json -------------------------------------------------------------------------------- /src/mstable/abi/Masset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/mstable/abi/Masset.json -------------------------------------------------------------------------------- /src/mstable/abi/MassetValidationHelper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/mstable/abi/MassetValidationHelper.json -------------------------------------------------------------------------------- /src/mstable/abi/MetaToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/mstable/abi/MetaToken.json -------------------------------------------------------------------------------- /src/mstable/abi/Nexus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/mstable/abi/Nexus.json -------------------------------------------------------------------------------- /src/mstable/abi/RewardsDistributor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/mstable/abi/RewardsDistributor.json -------------------------------------------------------------------------------- /src/mstable/abi/SavingsContract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/mstable/abi/SavingsContract.json -------------------------------------------------------------------------------- /src/mstable/abi/SavingsManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/mstable/abi/SavingsManager.json -------------------------------------------------------------------------------- /src/mstable/abi/StakingRewardsWithPlatformToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/mstable/abi/StakingRewardsWithPlatformToken.json -------------------------------------------------------------------------------- /src/mstable/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/mstable/contracts.ts -------------------------------------------------------------------------------- /src/mstable/contracts/Masset.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/mstable/contracts/Masset.sol -------------------------------------------------------------------------------- /src/mstable/contracts/StakingRewardsWithPlatformToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/mstable/contracts/StakingRewardsWithPlatformToken.sol -------------------------------------------------------------------------------- /src/mstable/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/mstable/index.ts -------------------------------------------------------------------------------- /src/onesplit/abi/OneSplit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/onesplit/abi/OneSplit.json -------------------------------------------------------------------------------- /src/onesplit/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/onesplit/contracts.ts -------------------------------------------------------------------------------- /src/onesplit/contracts/IOneSplit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/onesplit/contracts/IOneSplit.sol -------------------------------------------------------------------------------- /src/onesplit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/onesplit/index.ts -------------------------------------------------------------------------------- /src/synthetix/abi/Depot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/synthetix/abi/Depot.json -------------------------------------------------------------------------------- /src/synthetix/abi/ExchangeRates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/synthetix/abi/ExchangeRates.json -------------------------------------------------------------------------------- /src/synthetix/abi/Exchanger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/synthetix/abi/Exchanger.json -------------------------------------------------------------------------------- /src/synthetix/abi/ProxyERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/synthetix/abi/ProxyERC20.json -------------------------------------------------------------------------------- /src/synthetix/abi/Synth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/synthetix/abi/Synth.json -------------------------------------------------------------------------------- /src/synthetix/abi/Synthetix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/synthetix/abi/Synthetix.json -------------------------------------------------------------------------------- /src/synthetix/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/synthetix/contracts.ts -------------------------------------------------------------------------------- /src/synthetix/contracts/IDepot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/synthetix/contracts/IDepot.sol -------------------------------------------------------------------------------- /src/synthetix/contracts/ISynth.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/synthetix/contracts/ISynth.sol -------------------------------------------------------------------------------- /src/synthetix/contracts/ISynthetix.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/synthetix/contracts/ISynthetix.sol -------------------------------------------------------------------------------- /src/synthetix/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/synthetix/index.ts -------------------------------------------------------------------------------- /src/uma/abi/AddressWhitelist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uma/abi/AddressWhitelist.json -------------------------------------------------------------------------------- /src/uma/abi/DesignatedVotingFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uma/abi/DesignatedVotingFactory.json -------------------------------------------------------------------------------- /src/uma/abi/ExpiringMultiParty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uma/abi/ExpiringMultiParty.json -------------------------------------------------------------------------------- /src/uma/abi/ExpiringMultiPartyCreator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uma/abi/ExpiringMultiPartyCreator.json -------------------------------------------------------------------------------- /src/uma/abi/ExpiringMultiPartyLib.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/uma/abi/FinancialContractsAdmin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uma/abi/FinancialContractsAdmin.json -------------------------------------------------------------------------------- /src/uma/abi/Finder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uma/abi/Finder.json -------------------------------------------------------------------------------- /src/uma/abi/Governor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uma/abi/Governor.json -------------------------------------------------------------------------------- /src/uma/abi/IdentifierWhitelist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uma/abi/IdentifierWhitelist.json -------------------------------------------------------------------------------- /src/uma/abi/Registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uma/abi/Registry.json -------------------------------------------------------------------------------- /src/uma/abi/Store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uma/abi/Store.json -------------------------------------------------------------------------------- /src/uma/abi/TokenFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uma/abi/TokenFactory.json -------------------------------------------------------------------------------- /src/uma/abi/Voting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uma/abi/Voting.json -------------------------------------------------------------------------------- /src/uma/abi/VotingToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uma/abi/VotingToken.json -------------------------------------------------------------------------------- /src/uma/abi/WETH9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uma/abi/WETH9.json -------------------------------------------------------------------------------- /src/uma/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uma/contracts.ts -------------------------------------------------------------------------------- /src/uma/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uma/index.ts -------------------------------------------------------------------------------- /src/uniswap/abi/Exchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uniswap/abi/Exchange.json -------------------------------------------------------------------------------- /src/uniswap/abi/Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uniswap/abi/Factory.json -------------------------------------------------------------------------------- /src/uniswap/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uniswap/contracts.ts -------------------------------------------------------------------------------- /src/uniswap/contracts/IUniswapExchange.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uniswap/contracts/IUniswapExchange.sol -------------------------------------------------------------------------------- /src/uniswap/contracts/IUniswapFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uniswap/contracts/IUniswapFactory.sol -------------------------------------------------------------------------------- /src/uniswap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uniswap/index.ts -------------------------------------------------------------------------------- /src/uniswapV2/abi/IUniswapV2Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uniswapV2/abi/IUniswapV2Factory.json -------------------------------------------------------------------------------- /src/uniswapV2/abi/IUniswapV2Pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uniswapV2/abi/IUniswapV2Pair.json -------------------------------------------------------------------------------- /src/uniswapV2/abi/IUniswapV2Router01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uniswapV2/abi/IUniswapV2Router01.json -------------------------------------------------------------------------------- /src/uniswapV2/abi/IUniswapV2Router02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uniswapV2/abi/IUniswapV2Router02.json -------------------------------------------------------------------------------- /src/uniswapV2/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uniswapV2/contracts.ts -------------------------------------------------------------------------------- /src/uniswapV2/contracts/IUniswapV2Factory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uniswapV2/contracts/IUniswapV2Factory.sol -------------------------------------------------------------------------------- /src/uniswapV2/contracts/IUniswapV2Pair.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uniswapV2/contracts/IUniswapV2Pair.sol -------------------------------------------------------------------------------- /src/uniswapV2/contracts/IUniswapV2Router01.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uniswapV2/contracts/IUniswapV2Router01.sol -------------------------------------------------------------------------------- /src/uniswapV2/contracts/IUniswapV2Router02.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uniswapV2/contracts/IUniswapV2Router02.sol -------------------------------------------------------------------------------- /src/uniswapV2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/src/uniswapV2/index.ts -------------------------------------------------------------------------------- /tests/aave.test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/tests/aave.test.sol -------------------------------------------------------------------------------- /tests/aave.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/tests/aave.test.ts -------------------------------------------------------------------------------- /tests/balancer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/tests/balancer.test.ts -------------------------------------------------------------------------------- /tests/compound.test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/tests/compound.test.sol -------------------------------------------------------------------------------- /tests/compound.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/tests/compound.test.ts -------------------------------------------------------------------------------- /tests/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/tests/index.test.ts -------------------------------------------------------------------------------- /tests/kyber.test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/tests/kyber.test.sol -------------------------------------------------------------------------------- /tests/kyber.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/tests/kyber.test.ts -------------------------------------------------------------------------------- /tests/maker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/tests/maker.test.ts -------------------------------------------------------------------------------- /tests/medianizer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/tests/medianizer.test.ts -------------------------------------------------------------------------------- /tests/mstable.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/tests/mstable.test.ts -------------------------------------------------------------------------------- /tests/synthetix.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/tests/synthetix.test.ts -------------------------------------------------------------------------------- /tests/test-environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/tests/test-environment.js -------------------------------------------------------------------------------- /tests/uniswap.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/tests/uniswap.test.ts -------------------------------------------------------------------------------- /tests/uniswapV2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/tests/uniswapV2.test.ts -------------------------------------------------------------------------------- /tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/tests/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studydefi/money-legos/HEAD/yarn.lock --------------------------------------------------------------------------------