├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github ├── 1inch_github_b.svg ├── 1inch_github_w.svg ├── actions │ └── setup │ │ └── action.yml └── workflows │ └── test.yml ├── .gitignore ├── .solcover.js ├── .solhint.json ├── .vscode └── settings.json ├── LICENSE.md ├── README.md ├── contracts ├── GasEstimator.sol ├── MultiWrapper.sol ├── OffchainOracle.sol ├── helpers │ ├── Blacklist.sol │ └── ConnectorManager.sol ├── interfaces │ ├── IAlgebraPool.sol │ ├── IBzxProtocol.sol │ ├── ICToken.sol │ ├── IChai.sol │ ├── IChainlink.sol │ ├── IComet.sol │ ├── IComptroller.sol │ ├── ICurveMetaregistry.sol │ ├── ICurvePool.sol │ ├── ICurveProvider.sol │ ├── IDodo.sol │ ├── IDodoFactories.sol │ ├── IKyberDmmFactory.sol │ ├── IKyberDmmPool.sol │ ├── ILendingPoolV1.sol │ ├── ILendingPoolV2.sol │ ├── ILendingPoolV3.sol │ ├── ILoanToken.sol │ ├── IMooniswap.sol │ ├── IMooniswapFactory.sol │ ├── IOracle.sol │ ├── ISolidlyFactory.sol │ ├── IStaticATokenLM.sol │ ├── ISynthetixAddressResolver.sol │ ├── ISynthetixExchangeRates.sol │ ├── ISynthetixProxy.sol │ ├── IUniswapFactory.sol │ ├── IUniswapV2Pair.sol │ ├── IUniswapV3Pool.sol │ ├── IUniswapV4StateView.sol │ ├── IWrapper.sol │ ├── IWstETH.sol │ └── IYVault.sol ├── libraries │ └── OraclePrices.sol ├── mocks │ └── SimpleOracleMock.sol ├── oracles │ ├── AlgebraOracle.sol │ ├── ChainlinkOracle.sol │ ├── CurveOracle.sol │ ├── CurveOracleCRP.sol │ ├── DodoOracle.sol │ ├── DodoV2Oracle.sol │ ├── KlaySwapOracle.sol │ ├── KyberDmmOracle.sol │ ├── MooniswapOracle.sol │ ├── OracleBase.sol │ ├── SolidlyOracle.sol │ ├── SolidlyOracleNoCreate2.sol │ ├── SyncswapOracle.sol │ ├── SynthetixOracle.sol │ ├── UniswapOracle.sol │ ├── UniswapV2LikeOracle.sol │ ├── UniswapV3LikeOracle.sol │ └── UniswapV4LikeOracle.sol └── wrappers │ ├── AaveWrapperV1.sol │ ├── AaveWrapperV2.sol │ ├── AaveWrapperV3.sol │ ├── BaseCoinWrapper.sol │ ├── ChaiWrapper.sol │ ├── CompoundLikeWrapper.sol │ ├── CompoundV3Wrapper.sol │ ├── Erc4626Wrapper.sol │ ├── FulcrumWrapper.sol │ ├── FulcrumWrapperLegacy.sol │ ├── StataTokenWrapper.sol │ ├── Wrapper.sol │ ├── WstETHWrapper.sol │ └── YVaultWrapper.sol ├── deploy ├── README.md ├── commands │ ├── 01-migrate-offchain-oracle.js │ ├── deploy-oracle-and-add.js │ ├── deploy-proxy.js │ ├── deploy-wrapper-and-add.js │ ├── proxy │ │ └── update-proxy.js │ ├── redeploy-offchain-oracle.js │ ├── redeploy-oracle.js │ ├── redeploy-wrapper.js │ ├── simple-deploy.js │ └── use-create3 │ │ ├── deploy-oracle-and-add.js │ │ ├── deploy-proxy.js │ │ ├── deploy-wrapper-and-add.js │ │ ├── redeploy-offchain-oracle.js │ │ ├── redeploy-oracle.js │ │ ├── redeploy-wrapper.js │ │ └── simple-deploy.js └── utils.js ├── deployments ├── arbitrum │ ├── .chainId │ ├── AaveWrapperV3.json │ ├── BaseCoinWrapper.json │ ├── CompoundV3Wrapper.json │ ├── CurveOracle.json │ ├── MultiWrapper.json │ ├── OffchainOracle.json │ ├── StataTokenWrapper.json │ ├── TransparentUpgradeableProxy.json │ ├── UniswapV2LikeOracle_DXswap.json │ ├── UniswapV2LikeOracle_SushiSwap.json │ ├── UniswapV2LikeOracle_Uniswap.json │ ├── UniswapV3LikeOracle_Pancake.json │ ├── UniswapV3LikeOracle_Uniswap.json │ └── UniswapV4LikeOracle_Uniswap.json ├── aurora │ ├── .chainId │ ├── BaseCoinWrapper.json │ ├── CompoundLikeWrapper_Aurigami.json │ ├── CompoundLikeWrapper_Bastion.json │ ├── CurveOracle.json │ ├── DodoOracle.json │ ├── DodoV2Oracle.json │ ├── MultiWrapper.json │ ├── OffchainOracle.json │ ├── TransparentUpgradeableProxy.json │ ├── UniswapV2LikeOracle_AuroraSwap.json │ ├── UniswapV2LikeOracle_NearPAD.json │ ├── UniswapV2LikeOracle_Trisolaris.json │ └── UniswapV2LikeOracle_WannaSwap.json ├── avax │ ├── .chainId │ ├── AaveWrapperV2.json │ ├── AaveWrapperV3.json │ ├── BaseCoinWrapper.json │ ├── CurveOracle.json │ ├── MultiWrapper.json │ ├── OffchainOracle.json │ ├── StataTokenWrapper.json │ ├── TransparentUpgradeableProxy.json │ ├── UniswapV2LikeOracle_Joe.json │ ├── UniswapV2LikeOracle_Pangolin.json │ ├── UniswapV2LikeOracle_SushiSwap.json │ ├── UniswapV2LikeOracle_Uniswap.json │ ├── UniswapV3LikeOracle_Uniswap.json │ └── UniswapV4LikeOracle_Uniswap.json ├── base │ ├── .chainId │ ├── AaveWrapperV3.json │ ├── BaseCoinWrapper.json │ ├── CompoundV3Wrapper.json │ ├── Erc4626Wrapper.json │ ├── MultiWrapper.json │ ├── OffchainOracle.json │ ├── SolidlyOracle_Aerodrome.json │ ├── SolidlyOracle_VelocimeterV2.json │ ├── StataTokenWrapper.json │ ├── TransparentUpgradeableProxy.json │ ├── UniswapV2LikeOracle_BaseSwap.json │ ├── UniswapV2LikeOracle_RocketSwap.json │ ├── UniswapV2LikeOracle_SwapBased.json │ ├── UniswapV2LikeOracle_Uniswap.json │ ├── UniswapV3LikeOracle_DackieSwap.json │ ├── UniswapV3LikeOracle_HorizonDex.json │ ├── UniswapV3LikeOracle_Slipstream.json │ ├── UniswapV3LikeOracle_SushiSwap.json │ ├── UniswapV3LikeOracle_Uniswap.json │ └── UniswapV4LikeOracle_Uniswap.json ├── bsc │ ├── .chainid │ ├── AaveWrapperV3.json │ ├── KyberDmmOracle.json │ ├── MooniswapOracle.json │ ├── MultiWrapper.json │ ├── OffchainOracle.json │ ├── StataTokenWrapper.json │ ├── TransparentUpgradeableProxy.json │ ├── UniswapV2LikeOracle_ApeSwap.json │ ├── UniswapV2LikeOracle_BSCswap.json │ ├── UniswapV2LikeOracle_BakerySwap.json │ ├── UniswapV2LikeOracle_Demax.json │ ├── UniswapV2LikeOracle_Pancake_1.json │ ├── UniswapV2LikeOracle_Pancake_2.json │ ├── UniswapV2LikeOracle_Thugswap.json │ ├── UniswapV2LikeOracle_Uniswap.json │ ├── UniswapV3LikeOracle_Pancake.json │ ├── UniswapV3LikeOracle_Uniswap.json │ └── UniswapV4LikeOracle_Uniswap.json ├── fantom │ ├── .chainId │ ├── AaveWrapperV2.json │ ├── AaveWrapperV3.json │ ├── BaseCoinWrapper.json │ ├── CurveOracle.json │ ├── MultiWrapper.json │ ├── OffchainOracle.json │ ├── ScreamWrapper.json │ ├── TransparentUpgradeableProxy.json │ ├── UniswapV2LikeOracle_Solidex.json │ ├── UniswapV2LikeOracle_SpiritSwap.json │ ├── UniswapV2LikeOracle_Spooky.json │ └── UniswapV2LikeOracle_SushiSwap.json ├── klaytn │ ├── .chainId │ ├── AaveWrapperV2_Klap.json │ ├── BaseCoinWrapper.json │ ├── KlaySwapOracle.json │ ├── MultiWrapper.json │ ├── OffchainOracle.json │ ├── TransparentUpgradeableProxy.json │ └── UniswapV2LikeOracle_ClaimSwap.json ├── kovan-optimistic │ ├── .chainId │ ├── MultiWrapper.json │ ├── OffchainOracle.json │ └── UniswapV3Oracle.json ├── kovan │ ├── .chainId │ ├── BaseCoinWrapper.json │ ├── MooniswapOracle.json │ ├── MultiWrapper.json │ ├── OffchainOracle.json │ ├── UniswapOracle.json │ └── UniswapV2LikeOracle.json ├── linea │ ├── .chainId │ ├── AlgebraOracle.json │ ├── BaseCoinWrapper.json │ ├── DodoV2Oracle.json │ ├── MultiWrapper.json │ ├── OffchainOracle.json │ ├── SolidlyOracle_Lynex.json │ ├── UniswapV2LikeOracle_SushiSwap.json │ ├── UniswapV3LikeOracle_NILE.json │ └── UniswapV3LikeOracle_Pancake.json ├── mainnet │ ├── .chainId │ ├── AaveWrapperV3.json │ ├── BaseCoinWrapper_USDS.json │ ├── BaseCoinWrapper_stETH.json │ ├── BaseCoinWrapper_wETH.json │ ├── ChaiWrapper.json │ ├── ChainlinkOracle.json │ ├── CompoundV3Wrapper.json │ ├── CurveOracle.json │ ├── DodoOracle.json │ ├── DodoV2Oracle.json │ ├── Erc4626Wrapper.json │ ├── KyberDmmOracle.json │ ├── MooniswapOracle.json │ ├── MultiWrapper.json │ ├── OffchainOracle.json │ ├── StataTokenWrapper.json │ ├── SynthetixOracle.json │ ├── TransparentUpgradeableProxy.json │ ├── UniswapOracle.json │ ├── UniswapV2LikeOracle_Equalizer.json │ ├── UniswapV2LikeOracle_ShibaSwap.json │ ├── UniswapV2LikeOracle_SushiSwap.json │ ├── UniswapV2LikeOracle_Uniswap.json │ ├── UniswapV3LikeOracle_Pancake.json │ ├── UniswapV3LikeOracle_Uniswap.json │ ├── UniswapV4LikeOracle_Uniswap.json │ ├── WstETHWrapper.json │ └── YVaultWrapper.json ├── matic │ ├── .chainId │ ├── AaveWrapperV2.json │ ├── AaveWrapperV3.json │ ├── AlgebraOracle_QuickSwapV3.json │ ├── BaseCoinWrapper.json │ ├── CompoundV3Wrapper.json │ ├── CurveOracle.json │ ├── MultiWrapper.json │ ├── OffchainOracle.json │ ├── StataTokenWrapper.json │ ├── TransparentUpgradeableProxy.json │ ├── UniswapV2LikeOracle_ComethSwap.json │ ├── UniswapV2LikeOracle_DFYN.json │ ├── UniswapV2LikeOracle_QuickSwap.json │ ├── UniswapV2LikeOracle_SushiSwap.json │ ├── UniswapV2LikeOracle_Uniswap.json │ ├── UniswapV3LikeOracle_Uniswap.json │ └── UniswapV4LikeOracle_Uniswap.json ├── optimistic │ ├── .chainId │ ├── AaveWrapperV3.json │ ├── CurveOracle.json │ ├── MultiWrapper.json │ ├── OffchainOracle.json │ ├── SolidlyOracle_Velodrome.json │ ├── SolidlyOracle_VelodromeV2.json │ ├── StataTokenWrapper.json │ ├── SynthetixOracle.json │ ├── TransparentUpgradeableProxy.json │ ├── UniswapV2LikeOracle_Uniswap.json │ ├── UniswapV3LikeOracle_Slipstream.json │ ├── UniswapV3LikeOracle_Uniswap.json │ └── UniswapV4LikeOracle_Uniswap.json ├── sonic │ ├── .chainId │ ├── AaveWrapperV3.json │ ├── AlgebraOracle.json │ ├── AlgebraOracle_SilverSwap.json │ ├── BaseCoinWrapper.json │ ├── Erc4626Wrapper.json │ ├── MultiWrapper.json │ ├── OffchainOracle.json │ ├── SolidlyOracle_Shadow.json │ ├── SolidlyOracle_SwapXV2.json │ ├── UniswapV3LikeOracle_Shadow.json │ ├── UniswapV3LikeOracle_Uniswap.json │ └── UniswapV3LikeOracle_Wagmi.json ├── unichain │ ├── .chainId │ ├── BaseCoinWrapper.json │ ├── CompoundV3Wrapper.json │ ├── MultiWrapper.json │ ├── OffchainOracle.json │ ├── UniswapV2LikeOracle_Uniswap.json │ ├── UniswapV3LikeOracle_Uniswap.json │ └── UniswapV4LikeOracle_Uniswap.json ├── xdai │ ├── .chainId │ ├── AaveWrapperV3.json │ ├── BaseCoinWrapper.json │ ├── CurveOracle.json │ ├── Erc4626Wrapper.json │ ├── MultiWrapper.json │ ├── OffchainOracle.json │ ├── StataTokenWrapper.json │ ├── TransparentUpgradeableProxy.json │ ├── UniswapV2LikeOracle_Honeyswap.json │ ├── UniswapV2LikeOracle_Levinswap.json │ ├── UniswapV2LikeOracle_Sushiswap.json │ └── UniswapV2LikeOracle_Swapr.json └── zksync │ ├── .chainId │ ├── BaseCoinWrapper.json │ ├── MultiWrapper.json │ ├── OffchainOracle.json │ ├── SolidlyOracleNoCreate2_MuteSwitch.json │ ├── SyncswapOracle.json │ └── TransparentUpgradeableProxy.json ├── description.md ├── docs ├── GasEstimator.md ├── MultiWrapper.md ├── OffchainOracle.md ├── helpers │ ├── Blacklist.md │ └── ConnectorManager.md ├── interfaces │ ├── IAlgebraPool.md │ ├── IBzxProtocol.md │ ├── ICToken.md │ ├── IChai.md │ ├── IChainlink.md │ ├── IComet.md │ ├── IComptroller.md │ ├── ICurveMetaregistry.md │ ├── ICurvePool.md │ ├── ICurveProvider.md │ ├── IDodo.md │ ├── IDodoFactories.md │ ├── IKyberDmmFactory.md │ ├── IKyberDmmPool.md │ ├── ILendingPoolV1.md │ ├── ILendingPoolV2.md │ ├── ILendingPoolV3.md │ ├── ILoanToken.md │ ├── IMooniswap.md │ ├── IMooniswapFactory.md │ ├── IOracle.md │ ├── ISDai.md │ ├── ISolidlyFactory.md │ ├── IStaticATokenLM.md │ ├── ISynthetixAddressResolver.md │ ├── ISynthetixExchangeRates.md │ ├── ISynthetixProxy.md │ ├── IUniswapFactory.md │ ├── IUniswapV2Pair.md │ ├── IUniswapV3Pool.md │ ├── IWrapper.md │ ├── IWstETH.md │ └── IYVault.md ├── libraries │ └── OraclePrices.md ├── oracles │ ├── AlgebraOracle.md │ ├── ChainlinkOracle.md │ ├── CurveOracle.md │ ├── CurveOracleCRP.md │ ├── DodoOracle.md │ ├── DodoV2Oracle.md │ ├── KlaySwapOracle.md │ ├── KyberDmmOracle.md │ ├── MooniswapOracle.md │ ├── OracleBase.md │ ├── SolidlyOracle.md │ ├── SolidlyOracleNoCreate2.md │ ├── SyncswapOracle.md │ ├── SynthetixOracle.md │ ├── UniswapOracle.md │ ├── UniswapV2LikeOracle.md │ └── UniswapV3LikeOracle.md └── wrappers │ ├── AaveWrapperV1.md │ ├── AaveWrapperV2.md │ ├── AaveWrapperV3.md │ ├── BaseCoinWrapper.md │ ├── ChaiWrapper.md │ ├── CompoundLikeWrapper.md │ ├── CompoundV3Wrapper.md │ ├── Erc4626Wrapper.md │ ├── FulcrumWrapper.md │ ├── FulcrumWrapperLegacy.md │ ├── SDaiWrapper.md │ ├── SUSDeWrapper.md │ ├── StataTokenWrapper.md │ ├── Wrapper.md │ ├── WstETHWrapper.md │ ├── WsuperOETHbWrapper.md │ └── YVaultWrapper.md ├── examples ├── multiple-prices.js └── single-price.js ├── hardhat.config.js ├── migrations ├── 10_add_usdt_connector.js ├── 11_multiwrapper.js ├── 12_bsc.js ├── 13_srteetswap_bsc.js ├── 14_bsc_jul_bakery_1inch.js ├── 15_equalizer.js ├── 16_cream.js ├── 17_uniswapV1_fix.js ├── 1_initial_migration.js ├── 2_remove_require.js ├── 3_compound.js ├── 4_aave.js ├── 5_wrapper_shortcut.js ├── 6_fulcrum.js ├── 7_fulcrum_v2.js ├── 8_replace_compound.js ├── 9_aave_legacy.js ├── bsc │ ├── 2021-02-17-1.log │ ├── 2021-02-17-2.log │ └── 2021-02-24-1.log └── ethereum │ ├── 2021-02-04-1.log │ ├── 2021-02-04-2.log │ ├── 2021-02-04-3.log │ ├── 2021-02-04-4.log │ ├── 2021-02-04-5.log │ ├── 2021-02-08-1.log │ ├── 2021-02-08-2.log │ ├── 2021-02-09-1.log │ ├── 2021-02-17-1.log │ ├── 2021-02-17-2.log │ ├── 2021-02-25-1.log │ └── 2021-03-01-1.log ├── package.json ├── scripts ├── README.md ├── check-token.js └── check-tokens-prices.js ├── test ├── Blacklist.js ├── ConnectorManager.js ├── MultiWrapper.js ├── OffchainOracle.js ├── helpers.js ├── oracles │ ├── AlgebraOracle.js │ ├── ChainlinkOracle.js │ ├── CurveOracle.js │ ├── DodoOracle.js │ ├── DodoV2Oracle.js │ ├── KyberDmmOracle.js │ ├── MooniswapOracle.js │ ├── SlipstreamOracle.js │ ├── SolidlyOracle.js │ ├── SynthetixOracle.js │ ├── UniswapOracle.js │ ├── UniswapV2LikeOracle.js │ ├── UniswapV3LikeOracle.js │ ├── UniswapV4LikeOracle.js │ └── VelodromeV2Oracle.js └── wrappers │ ├── AaveWrapperV1.js │ ├── AaveWrapperV2.js │ ├── AaveWrapperV3.js │ ├── BaseCoinWrapper.js │ ├── ChaiWrapper.js │ ├── CompoundV3Wrapper.js │ ├── CompoundWrapper.js │ ├── Erc4626Wrapper.js │ ├── FulcrumWrapper.js │ ├── FulcrumWrapperLegacy.js │ ├── StataTokenWrapper.js │ ├── WstETHWrapper.js │ └── YVaultWrapper.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.github/1inch_github_b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/.github/1inch_github_b.svg -------------------------------------------------------------------------------- /.github/1inch_github_w.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/.github/1inch_github_w.svg -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/.gitignore -------------------------------------------------------------------------------- /.solcover.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | skipFiles: ['mocks', 'interfaces'], 3 | } 4 | -------------------------------------------------------------------------------- /.solhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/.solhint.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "solidity.compileUsingRemoteVersion": "0.8.23" 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/README.md -------------------------------------------------------------------------------- /contracts/GasEstimator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/GasEstimator.sol -------------------------------------------------------------------------------- /contracts/MultiWrapper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/MultiWrapper.sol -------------------------------------------------------------------------------- /contracts/OffchainOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/OffchainOracle.sol -------------------------------------------------------------------------------- /contracts/helpers/Blacklist.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/helpers/Blacklist.sol -------------------------------------------------------------------------------- /contracts/helpers/ConnectorManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/helpers/ConnectorManager.sol -------------------------------------------------------------------------------- /contracts/interfaces/IAlgebraPool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/IAlgebraPool.sol -------------------------------------------------------------------------------- /contracts/interfaces/IBzxProtocol.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/IBzxProtocol.sol -------------------------------------------------------------------------------- /contracts/interfaces/ICToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/ICToken.sol -------------------------------------------------------------------------------- /contracts/interfaces/IChai.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/IChai.sol -------------------------------------------------------------------------------- /contracts/interfaces/IChainlink.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/IChainlink.sol -------------------------------------------------------------------------------- /contracts/interfaces/IComet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/IComet.sol -------------------------------------------------------------------------------- /contracts/interfaces/IComptroller.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/IComptroller.sol -------------------------------------------------------------------------------- /contracts/interfaces/ICurveMetaregistry.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/ICurveMetaregistry.sol -------------------------------------------------------------------------------- /contracts/interfaces/ICurvePool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/ICurvePool.sol -------------------------------------------------------------------------------- /contracts/interfaces/ICurveProvider.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/ICurveProvider.sol -------------------------------------------------------------------------------- /contracts/interfaces/IDodo.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/IDodo.sol -------------------------------------------------------------------------------- /contracts/interfaces/IDodoFactories.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/IDodoFactories.sol -------------------------------------------------------------------------------- /contracts/interfaces/IKyberDmmFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/IKyberDmmFactory.sol -------------------------------------------------------------------------------- /contracts/interfaces/IKyberDmmPool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/IKyberDmmPool.sol -------------------------------------------------------------------------------- /contracts/interfaces/ILendingPoolV1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/ILendingPoolV1.sol -------------------------------------------------------------------------------- /contracts/interfaces/ILendingPoolV2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/ILendingPoolV2.sol -------------------------------------------------------------------------------- /contracts/interfaces/ILendingPoolV3.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/ILendingPoolV3.sol -------------------------------------------------------------------------------- /contracts/interfaces/ILoanToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/ILoanToken.sol -------------------------------------------------------------------------------- /contracts/interfaces/IMooniswap.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/IMooniswap.sol -------------------------------------------------------------------------------- /contracts/interfaces/IMooniswapFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/IMooniswapFactory.sol -------------------------------------------------------------------------------- /contracts/interfaces/IOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/IOracle.sol -------------------------------------------------------------------------------- /contracts/interfaces/ISolidlyFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/ISolidlyFactory.sol -------------------------------------------------------------------------------- /contracts/interfaces/IStaticATokenLM.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/IStaticATokenLM.sol -------------------------------------------------------------------------------- /contracts/interfaces/ISynthetixAddressResolver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/ISynthetixAddressResolver.sol -------------------------------------------------------------------------------- /contracts/interfaces/ISynthetixExchangeRates.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/ISynthetixExchangeRates.sol -------------------------------------------------------------------------------- /contracts/interfaces/ISynthetixProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/ISynthetixProxy.sol -------------------------------------------------------------------------------- /contracts/interfaces/IUniswapFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/IUniswapFactory.sol -------------------------------------------------------------------------------- /contracts/interfaces/IUniswapV2Pair.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/IUniswapV2Pair.sol -------------------------------------------------------------------------------- /contracts/interfaces/IUniswapV3Pool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/IUniswapV3Pool.sol -------------------------------------------------------------------------------- /contracts/interfaces/IUniswapV4StateView.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/IUniswapV4StateView.sol -------------------------------------------------------------------------------- /contracts/interfaces/IWrapper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/IWrapper.sol -------------------------------------------------------------------------------- /contracts/interfaces/IWstETH.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/IWstETH.sol -------------------------------------------------------------------------------- /contracts/interfaces/IYVault.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/interfaces/IYVault.sol -------------------------------------------------------------------------------- /contracts/libraries/OraclePrices.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/libraries/OraclePrices.sol -------------------------------------------------------------------------------- /contracts/mocks/SimpleOracleMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/mocks/SimpleOracleMock.sol -------------------------------------------------------------------------------- /contracts/oracles/AlgebraOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/oracles/AlgebraOracle.sol -------------------------------------------------------------------------------- /contracts/oracles/ChainlinkOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/oracles/ChainlinkOracle.sol -------------------------------------------------------------------------------- /contracts/oracles/CurveOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/oracles/CurveOracle.sol -------------------------------------------------------------------------------- /contracts/oracles/CurveOracleCRP.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/oracles/CurveOracleCRP.sol -------------------------------------------------------------------------------- /contracts/oracles/DodoOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/oracles/DodoOracle.sol -------------------------------------------------------------------------------- /contracts/oracles/DodoV2Oracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/oracles/DodoV2Oracle.sol -------------------------------------------------------------------------------- /contracts/oracles/KlaySwapOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/oracles/KlaySwapOracle.sol -------------------------------------------------------------------------------- /contracts/oracles/KyberDmmOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/oracles/KyberDmmOracle.sol -------------------------------------------------------------------------------- /contracts/oracles/MooniswapOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/oracles/MooniswapOracle.sol -------------------------------------------------------------------------------- /contracts/oracles/OracleBase.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/oracles/OracleBase.sol -------------------------------------------------------------------------------- /contracts/oracles/SolidlyOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/oracles/SolidlyOracle.sol -------------------------------------------------------------------------------- /contracts/oracles/SolidlyOracleNoCreate2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/oracles/SolidlyOracleNoCreate2.sol -------------------------------------------------------------------------------- /contracts/oracles/SyncswapOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/oracles/SyncswapOracle.sol -------------------------------------------------------------------------------- /contracts/oracles/SynthetixOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/oracles/SynthetixOracle.sol -------------------------------------------------------------------------------- /contracts/oracles/UniswapOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/oracles/UniswapOracle.sol -------------------------------------------------------------------------------- /contracts/oracles/UniswapV2LikeOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/oracles/UniswapV2LikeOracle.sol -------------------------------------------------------------------------------- /contracts/oracles/UniswapV3LikeOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/oracles/UniswapV3LikeOracle.sol -------------------------------------------------------------------------------- /contracts/oracles/UniswapV4LikeOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/oracles/UniswapV4LikeOracle.sol -------------------------------------------------------------------------------- /contracts/wrappers/AaveWrapperV1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/wrappers/AaveWrapperV1.sol -------------------------------------------------------------------------------- /contracts/wrappers/AaveWrapperV2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/wrappers/AaveWrapperV2.sol -------------------------------------------------------------------------------- /contracts/wrappers/AaveWrapperV3.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/wrappers/AaveWrapperV3.sol -------------------------------------------------------------------------------- /contracts/wrappers/BaseCoinWrapper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/wrappers/BaseCoinWrapper.sol -------------------------------------------------------------------------------- /contracts/wrappers/ChaiWrapper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/wrappers/ChaiWrapper.sol -------------------------------------------------------------------------------- /contracts/wrappers/CompoundLikeWrapper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/wrappers/CompoundLikeWrapper.sol -------------------------------------------------------------------------------- /contracts/wrappers/CompoundV3Wrapper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/wrappers/CompoundV3Wrapper.sol -------------------------------------------------------------------------------- /contracts/wrappers/Erc4626Wrapper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/wrappers/Erc4626Wrapper.sol -------------------------------------------------------------------------------- /contracts/wrappers/FulcrumWrapper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/wrappers/FulcrumWrapper.sol -------------------------------------------------------------------------------- /contracts/wrappers/FulcrumWrapperLegacy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/wrappers/FulcrumWrapperLegacy.sol -------------------------------------------------------------------------------- /contracts/wrappers/StataTokenWrapper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/wrappers/StataTokenWrapper.sol -------------------------------------------------------------------------------- /contracts/wrappers/Wrapper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/wrappers/Wrapper.sol -------------------------------------------------------------------------------- /contracts/wrappers/WstETHWrapper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/wrappers/WstETHWrapper.sol -------------------------------------------------------------------------------- /contracts/wrappers/YVaultWrapper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/contracts/wrappers/YVaultWrapper.sol -------------------------------------------------------------------------------- /deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deploy/README.md -------------------------------------------------------------------------------- /deploy/commands/01-migrate-offchain-oracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deploy/commands/01-migrate-offchain-oracle.js -------------------------------------------------------------------------------- /deploy/commands/deploy-oracle-and-add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deploy/commands/deploy-oracle-and-add.js -------------------------------------------------------------------------------- /deploy/commands/deploy-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deploy/commands/deploy-proxy.js -------------------------------------------------------------------------------- /deploy/commands/deploy-wrapper-and-add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deploy/commands/deploy-wrapper-and-add.js -------------------------------------------------------------------------------- /deploy/commands/proxy/update-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deploy/commands/proxy/update-proxy.js -------------------------------------------------------------------------------- /deploy/commands/redeploy-offchain-oracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deploy/commands/redeploy-offchain-oracle.js -------------------------------------------------------------------------------- /deploy/commands/redeploy-oracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deploy/commands/redeploy-oracle.js -------------------------------------------------------------------------------- /deploy/commands/redeploy-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deploy/commands/redeploy-wrapper.js -------------------------------------------------------------------------------- /deploy/commands/simple-deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deploy/commands/simple-deploy.js -------------------------------------------------------------------------------- /deploy/commands/use-create3/deploy-oracle-and-add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deploy/commands/use-create3/deploy-oracle-and-add.js -------------------------------------------------------------------------------- /deploy/commands/use-create3/deploy-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deploy/commands/use-create3/deploy-proxy.js -------------------------------------------------------------------------------- /deploy/commands/use-create3/deploy-wrapper-and-add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deploy/commands/use-create3/deploy-wrapper-and-add.js -------------------------------------------------------------------------------- /deploy/commands/use-create3/redeploy-offchain-oracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deploy/commands/use-create3/redeploy-offchain-oracle.js -------------------------------------------------------------------------------- /deploy/commands/use-create3/redeploy-oracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deploy/commands/use-create3/redeploy-oracle.js -------------------------------------------------------------------------------- /deploy/commands/use-create3/redeploy-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deploy/commands/use-create3/redeploy-wrapper.js -------------------------------------------------------------------------------- /deploy/commands/use-create3/simple-deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deploy/commands/use-create3/simple-deploy.js -------------------------------------------------------------------------------- /deploy/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deploy/utils.js -------------------------------------------------------------------------------- /deployments/arbitrum/.chainId: -------------------------------------------------------------------------------- 1 | 42161 -------------------------------------------------------------------------------- /deployments/arbitrum/AaveWrapperV3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/arbitrum/AaveWrapperV3.json -------------------------------------------------------------------------------- /deployments/arbitrum/BaseCoinWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/arbitrum/BaseCoinWrapper.json -------------------------------------------------------------------------------- /deployments/arbitrum/CompoundV3Wrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/arbitrum/CompoundV3Wrapper.json -------------------------------------------------------------------------------- /deployments/arbitrum/CurveOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/arbitrum/CurveOracle.json -------------------------------------------------------------------------------- /deployments/arbitrum/MultiWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/arbitrum/MultiWrapper.json -------------------------------------------------------------------------------- /deployments/arbitrum/OffchainOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/arbitrum/OffchainOracle.json -------------------------------------------------------------------------------- /deployments/arbitrum/StataTokenWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/arbitrum/StataTokenWrapper.json -------------------------------------------------------------------------------- /deployments/arbitrum/TransparentUpgradeableProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/arbitrum/TransparentUpgradeableProxy.json -------------------------------------------------------------------------------- /deployments/arbitrum/UniswapV2LikeOracle_DXswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/arbitrum/UniswapV2LikeOracle_DXswap.json -------------------------------------------------------------------------------- /deployments/arbitrum/UniswapV2LikeOracle_SushiSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/arbitrum/UniswapV2LikeOracle_SushiSwap.json -------------------------------------------------------------------------------- /deployments/arbitrum/UniswapV2LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/arbitrum/UniswapV2LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/arbitrum/UniswapV3LikeOracle_Pancake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/arbitrum/UniswapV3LikeOracle_Pancake.json -------------------------------------------------------------------------------- /deployments/arbitrum/UniswapV3LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/arbitrum/UniswapV3LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/arbitrum/UniswapV4LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/arbitrum/UniswapV4LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/aurora/.chainId: -------------------------------------------------------------------------------- 1 | 1313161554 -------------------------------------------------------------------------------- /deployments/aurora/BaseCoinWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/aurora/BaseCoinWrapper.json -------------------------------------------------------------------------------- /deployments/aurora/CompoundLikeWrapper_Aurigami.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/aurora/CompoundLikeWrapper_Aurigami.json -------------------------------------------------------------------------------- /deployments/aurora/CompoundLikeWrapper_Bastion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/aurora/CompoundLikeWrapper_Bastion.json -------------------------------------------------------------------------------- /deployments/aurora/CurveOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/aurora/CurveOracle.json -------------------------------------------------------------------------------- /deployments/aurora/DodoOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/aurora/DodoOracle.json -------------------------------------------------------------------------------- /deployments/aurora/DodoV2Oracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/aurora/DodoV2Oracle.json -------------------------------------------------------------------------------- /deployments/aurora/MultiWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/aurora/MultiWrapper.json -------------------------------------------------------------------------------- /deployments/aurora/OffchainOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/aurora/OffchainOracle.json -------------------------------------------------------------------------------- /deployments/aurora/TransparentUpgradeableProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/aurora/TransparentUpgradeableProxy.json -------------------------------------------------------------------------------- /deployments/aurora/UniswapV2LikeOracle_AuroraSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/aurora/UniswapV2LikeOracle_AuroraSwap.json -------------------------------------------------------------------------------- /deployments/aurora/UniswapV2LikeOracle_NearPAD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/aurora/UniswapV2LikeOracle_NearPAD.json -------------------------------------------------------------------------------- /deployments/aurora/UniswapV2LikeOracle_Trisolaris.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/aurora/UniswapV2LikeOracle_Trisolaris.json -------------------------------------------------------------------------------- /deployments/aurora/UniswapV2LikeOracle_WannaSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/aurora/UniswapV2LikeOracle_WannaSwap.json -------------------------------------------------------------------------------- /deployments/avax/.chainId: -------------------------------------------------------------------------------- 1 | 43114 -------------------------------------------------------------------------------- /deployments/avax/AaveWrapperV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/avax/AaveWrapperV2.json -------------------------------------------------------------------------------- /deployments/avax/AaveWrapperV3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/avax/AaveWrapperV3.json -------------------------------------------------------------------------------- /deployments/avax/BaseCoinWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/avax/BaseCoinWrapper.json -------------------------------------------------------------------------------- /deployments/avax/CurveOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/avax/CurveOracle.json -------------------------------------------------------------------------------- /deployments/avax/MultiWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/avax/MultiWrapper.json -------------------------------------------------------------------------------- /deployments/avax/OffchainOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/avax/OffchainOracle.json -------------------------------------------------------------------------------- /deployments/avax/StataTokenWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/avax/StataTokenWrapper.json -------------------------------------------------------------------------------- /deployments/avax/TransparentUpgradeableProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/avax/TransparentUpgradeableProxy.json -------------------------------------------------------------------------------- /deployments/avax/UniswapV2LikeOracle_Joe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/avax/UniswapV2LikeOracle_Joe.json -------------------------------------------------------------------------------- /deployments/avax/UniswapV2LikeOracle_Pangolin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/avax/UniswapV2LikeOracle_Pangolin.json -------------------------------------------------------------------------------- /deployments/avax/UniswapV2LikeOracle_SushiSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/avax/UniswapV2LikeOracle_SushiSwap.json -------------------------------------------------------------------------------- /deployments/avax/UniswapV2LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/avax/UniswapV2LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/avax/UniswapV3LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/avax/UniswapV3LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/avax/UniswapV4LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/avax/UniswapV4LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/base/.chainId: -------------------------------------------------------------------------------- 1 | 8453 -------------------------------------------------------------------------------- /deployments/base/AaveWrapperV3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/base/AaveWrapperV3.json -------------------------------------------------------------------------------- /deployments/base/BaseCoinWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/base/BaseCoinWrapper.json -------------------------------------------------------------------------------- /deployments/base/CompoundV3Wrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/base/CompoundV3Wrapper.json -------------------------------------------------------------------------------- /deployments/base/Erc4626Wrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/base/Erc4626Wrapper.json -------------------------------------------------------------------------------- /deployments/base/MultiWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/base/MultiWrapper.json -------------------------------------------------------------------------------- /deployments/base/OffchainOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/base/OffchainOracle.json -------------------------------------------------------------------------------- /deployments/base/SolidlyOracle_Aerodrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/base/SolidlyOracle_Aerodrome.json -------------------------------------------------------------------------------- /deployments/base/SolidlyOracle_VelocimeterV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/base/SolidlyOracle_VelocimeterV2.json -------------------------------------------------------------------------------- /deployments/base/StataTokenWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/base/StataTokenWrapper.json -------------------------------------------------------------------------------- /deployments/base/TransparentUpgradeableProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/base/TransparentUpgradeableProxy.json -------------------------------------------------------------------------------- /deployments/base/UniswapV2LikeOracle_BaseSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/base/UniswapV2LikeOracle_BaseSwap.json -------------------------------------------------------------------------------- /deployments/base/UniswapV2LikeOracle_RocketSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/base/UniswapV2LikeOracle_RocketSwap.json -------------------------------------------------------------------------------- /deployments/base/UniswapV2LikeOracle_SwapBased.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/base/UniswapV2LikeOracle_SwapBased.json -------------------------------------------------------------------------------- /deployments/base/UniswapV2LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/base/UniswapV2LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/base/UniswapV3LikeOracle_DackieSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/base/UniswapV3LikeOracle_DackieSwap.json -------------------------------------------------------------------------------- /deployments/base/UniswapV3LikeOracle_HorizonDex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/base/UniswapV3LikeOracle_HorizonDex.json -------------------------------------------------------------------------------- /deployments/base/UniswapV3LikeOracle_Slipstream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/base/UniswapV3LikeOracle_Slipstream.json -------------------------------------------------------------------------------- /deployments/base/UniswapV3LikeOracle_SushiSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/base/UniswapV3LikeOracle_SushiSwap.json -------------------------------------------------------------------------------- /deployments/base/UniswapV3LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/base/UniswapV3LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/base/UniswapV4LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/base/UniswapV4LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/bsc/.chainid: -------------------------------------------------------------------------------- 1 | 56 2 | -------------------------------------------------------------------------------- /deployments/bsc/AaveWrapperV3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/bsc/AaveWrapperV3.json -------------------------------------------------------------------------------- /deployments/bsc/KyberDmmOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/bsc/KyberDmmOracle.json -------------------------------------------------------------------------------- /deployments/bsc/MooniswapOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/bsc/MooniswapOracle.json -------------------------------------------------------------------------------- /deployments/bsc/MultiWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/bsc/MultiWrapper.json -------------------------------------------------------------------------------- /deployments/bsc/OffchainOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/bsc/OffchainOracle.json -------------------------------------------------------------------------------- /deployments/bsc/StataTokenWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/bsc/StataTokenWrapper.json -------------------------------------------------------------------------------- /deployments/bsc/TransparentUpgradeableProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/bsc/TransparentUpgradeableProxy.json -------------------------------------------------------------------------------- /deployments/bsc/UniswapV2LikeOracle_ApeSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/bsc/UniswapV2LikeOracle_ApeSwap.json -------------------------------------------------------------------------------- /deployments/bsc/UniswapV2LikeOracle_BSCswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/bsc/UniswapV2LikeOracle_BSCswap.json -------------------------------------------------------------------------------- /deployments/bsc/UniswapV2LikeOracle_BakerySwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/bsc/UniswapV2LikeOracle_BakerySwap.json -------------------------------------------------------------------------------- /deployments/bsc/UniswapV2LikeOracle_Demax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/bsc/UniswapV2LikeOracle_Demax.json -------------------------------------------------------------------------------- /deployments/bsc/UniswapV2LikeOracle_Pancake_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/bsc/UniswapV2LikeOracle_Pancake_1.json -------------------------------------------------------------------------------- /deployments/bsc/UniswapV2LikeOracle_Pancake_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/bsc/UniswapV2LikeOracle_Pancake_2.json -------------------------------------------------------------------------------- /deployments/bsc/UniswapV2LikeOracle_Thugswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/bsc/UniswapV2LikeOracle_Thugswap.json -------------------------------------------------------------------------------- /deployments/bsc/UniswapV2LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/bsc/UniswapV2LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/bsc/UniswapV3LikeOracle_Pancake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/bsc/UniswapV3LikeOracle_Pancake.json -------------------------------------------------------------------------------- /deployments/bsc/UniswapV3LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/bsc/UniswapV3LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/bsc/UniswapV4LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/bsc/UniswapV4LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/fantom/.chainId: -------------------------------------------------------------------------------- 1 | 250 -------------------------------------------------------------------------------- /deployments/fantom/AaveWrapperV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/fantom/AaveWrapperV2.json -------------------------------------------------------------------------------- /deployments/fantom/AaveWrapperV3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/fantom/AaveWrapperV3.json -------------------------------------------------------------------------------- /deployments/fantom/BaseCoinWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/fantom/BaseCoinWrapper.json -------------------------------------------------------------------------------- /deployments/fantom/CurveOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/fantom/CurveOracle.json -------------------------------------------------------------------------------- /deployments/fantom/MultiWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/fantom/MultiWrapper.json -------------------------------------------------------------------------------- /deployments/fantom/OffchainOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/fantom/OffchainOracle.json -------------------------------------------------------------------------------- /deployments/fantom/ScreamWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/fantom/ScreamWrapper.json -------------------------------------------------------------------------------- /deployments/fantom/TransparentUpgradeableProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/fantom/TransparentUpgradeableProxy.json -------------------------------------------------------------------------------- /deployments/fantom/UniswapV2LikeOracle_Solidex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/fantom/UniswapV2LikeOracle_Solidex.json -------------------------------------------------------------------------------- /deployments/fantom/UniswapV2LikeOracle_SpiritSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/fantom/UniswapV2LikeOracle_SpiritSwap.json -------------------------------------------------------------------------------- /deployments/fantom/UniswapV2LikeOracle_Spooky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/fantom/UniswapV2LikeOracle_Spooky.json -------------------------------------------------------------------------------- /deployments/fantom/UniswapV2LikeOracle_SushiSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/fantom/UniswapV2LikeOracle_SushiSwap.json -------------------------------------------------------------------------------- /deployments/klaytn/.chainId: -------------------------------------------------------------------------------- 1 | 8217 -------------------------------------------------------------------------------- /deployments/klaytn/AaveWrapperV2_Klap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/klaytn/AaveWrapperV2_Klap.json -------------------------------------------------------------------------------- /deployments/klaytn/BaseCoinWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/klaytn/BaseCoinWrapper.json -------------------------------------------------------------------------------- /deployments/klaytn/KlaySwapOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/klaytn/KlaySwapOracle.json -------------------------------------------------------------------------------- /deployments/klaytn/MultiWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/klaytn/MultiWrapper.json -------------------------------------------------------------------------------- /deployments/klaytn/OffchainOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/klaytn/OffchainOracle.json -------------------------------------------------------------------------------- /deployments/klaytn/TransparentUpgradeableProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/klaytn/TransparentUpgradeableProxy.json -------------------------------------------------------------------------------- /deployments/klaytn/UniswapV2LikeOracle_ClaimSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/klaytn/UniswapV2LikeOracle_ClaimSwap.json -------------------------------------------------------------------------------- /deployments/kovan-optimistic/.chainId: -------------------------------------------------------------------------------- 1 | 69 -------------------------------------------------------------------------------- /deployments/kovan-optimistic/MultiWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/kovan-optimistic/MultiWrapper.json -------------------------------------------------------------------------------- /deployments/kovan-optimistic/OffchainOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/kovan-optimistic/OffchainOracle.json -------------------------------------------------------------------------------- /deployments/kovan-optimistic/UniswapV3Oracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/kovan-optimistic/UniswapV3Oracle.json -------------------------------------------------------------------------------- /deployments/kovan/.chainId: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /deployments/kovan/BaseCoinWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/kovan/BaseCoinWrapper.json -------------------------------------------------------------------------------- /deployments/kovan/MooniswapOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/kovan/MooniswapOracle.json -------------------------------------------------------------------------------- /deployments/kovan/MultiWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/kovan/MultiWrapper.json -------------------------------------------------------------------------------- /deployments/kovan/OffchainOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/kovan/OffchainOracle.json -------------------------------------------------------------------------------- /deployments/kovan/UniswapOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/kovan/UniswapOracle.json -------------------------------------------------------------------------------- /deployments/kovan/UniswapV2LikeOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/kovan/UniswapV2LikeOracle.json -------------------------------------------------------------------------------- /deployments/linea/.chainId: -------------------------------------------------------------------------------- 1 | 59144 -------------------------------------------------------------------------------- /deployments/linea/AlgebraOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/linea/AlgebraOracle.json -------------------------------------------------------------------------------- /deployments/linea/BaseCoinWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/linea/BaseCoinWrapper.json -------------------------------------------------------------------------------- /deployments/linea/DodoV2Oracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/linea/DodoV2Oracle.json -------------------------------------------------------------------------------- /deployments/linea/MultiWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/linea/MultiWrapper.json -------------------------------------------------------------------------------- /deployments/linea/OffchainOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/linea/OffchainOracle.json -------------------------------------------------------------------------------- /deployments/linea/SolidlyOracle_Lynex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/linea/SolidlyOracle_Lynex.json -------------------------------------------------------------------------------- /deployments/linea/UniswapV2LikeOracle_SushiSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/linea/UniswapV2LikeOracle_SushiSwap.json -------------------------------------------------------------------------------- /deployments/linea/UniswapV3LikeOracle_NILE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/linea/UniswapV3LikeOracle_NILE.json -------------------------------------------------------------------------------- /deployments/linea/UniswapV3LikeOracle_Pancake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/linea/UniswapV3LikeOracle_Pancake.json -------------------------------------------------------------------------------- /deployments/mainnet/.chainId: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /deployments/mainnet/AaveWrapperV3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/AaveWrapperV3.json -------------------------------------------------------------------------------- /deployments/mainnet/BaseCoinWrapper_USDS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/BaseCoinWrapper_USDS.json -------------------------------------------------------------------------------- /deployments/mainnet/BaseCoinWrapper_stETH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/BaseCoinWrapper_stETH.json -------------------------------------------------------------------------------- /deployments/mainnet/BaseCoinWrapper_wETH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/BaseCoinWrapper_wETH.json -------------------------------------------------------------------------------- /deployments/mainnet/ChaiWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/ChaiWrapper.json -------------------------------------------------------------------------------- /deployments/mainnet/ChainlinkOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/ChainlinkOracle.json -------------------------------------------------------------------------------- /deployments/mainnet/CompoundV3Wrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/CompoundV3Wrapper.json -------------------------------------------------------------------------------- /deployments/mainnet/CurveOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/CurveOracle.json -------------------------------------------------------------------------------- /deployments/mainnet/DodoOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/DodoOracle.json -------------------------------------------------------------------------------- /deployments/mainnet/DodoV2Oracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/DodoV2Oracle.json -------------------------------------------------------------------------------- /deployments/mainnet/Erc4626Wrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/Erc4626Wrapper.json -------------------------------------------------------------------------------- /deployments/mainnet/KyberDmmOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/KyberDmmOracle.json -------------------------------------------------------------------------------- /deployments/mainnet/MooniswapOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/MooniswapOracle.json -------------------------------------------------------------------------------- /deployments/mainnet/MultiWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/MultiWrapper.json -------------------------------------------------------------------------------- /deployments/mainnet/OffchainOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/OffchainOracle.json -------------------------------------------------------------------------------- /deployments/mainnet/StataTokenWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/StataTokenWrapper.json -------------------------------------------------------------------------------- /deployments/mainnet/SynthetixOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/SynthetixOracle.json -------------------------------------------------------------------------------- /deployments/mainnet/TransparentUpgradeableProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/TransparentUpgradeableProxy.json -------------------------------------------------------------------------------- /deployments/mainnet/UniswapOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/UniswapOracle.json -------------------------------------------------------------------------------- /deployments/mainnet/UniswapV2LikeOracle_Equalizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/UniswapV2LikeOracle_Equalizer.json -------------------------------------------------------------------------------- /deployments/mainnet/UniswapV2LikeOracle_ShibaSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/UniswapV2LikeOracle_ShibaSwap.json -------------------------------------------------------------------------------- /deployments/mainnet/UniswapV2LikeOracle_SushiSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/UniswapV2LikeOracle_SushiSwap.json -------------------------------------------------------------------------------- /deployments/mainnet/UniswapV2LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/UniswapV2LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/mainnet/UniswapV3LikeOracle_Pancake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/UniswapV3LikeOracle_Pancake.json -------------------------------------------------------------------------------- /deployments/mainnet/UniswapV3LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/UniswapV3LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/mainnet/UniswapV4LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/UniswapV4LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/mainnet/WstETHWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/WstETHWrapper.json -------------------------------------------------------------------------------- /deployments/mainnet/YVaultWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/mainnet/YVaultWrapper.json -------------------------------------------------------------------------------- /deployments/matic/.chainId: -------------------------------------------------------------------------------- 1 | 137 2 | -------------------------------------------------------------------------------- /deployments/matic/AaveWrapperV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/matic/AaveWrapperV2.json -------------------------------------------------------------------------------- /deployments/matic/AaveWrapperV3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/matic/AaveWrapperV3.json -------------------------------------------------------------------------------- /deployments/matic/AlgebraOracle_QuickSwapV3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/matic/AlgebraOracle_QuickSwapV3.json -------------------------------------------------------------------------------- /deployments/matic/BaseCoinWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/matic/BaseCoinWrapper.json -------------------------------------------------------------------------------- /deployments/matic/CompoundV3Wrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/matic/CompoundV3Wrapper.json -------------------------------------------------------------------------------- /deployments/matic/CurveOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/matic/CurveOracle.json -------------------------------------------------------------------------------- /deployments/matic/MultiWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/matic/MultiWrapper.json -------------------------------------------------------------------------------- /deployments/matic/OffchainOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/matic/OffchainOracle.json -------------------------------------------------------------------------------- /deployments/matic/StataTokenWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/matic/StataTokenWrapper.json -------------------------------------------------------------------------------- /deployments/matic/TransparentUpgradeableProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/matic/TransparentUpgradeableProxy.json -------------------------------------------------------------------------------- /deployments/matic/UniswapV2LikeOracle_ComethSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/matic/UniswapV2LikeOracle_ComethSwap.json -------------------------------------------------------------------------------- /deployments/matic/UniswapV2LikeOracle_DFYN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/matic/UniswapV2LikeOracle_DFYN.json -------------------------------------------------------------------------------- /deployments/matic/UniswapV2LikeOracle_QuickSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/matic/UniswapV2LikeOracle_QuickSwap.json -------------------------------------------------------------------------------- /deployments/matic/UniswapV2LikeOracle_SushiSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/matic/UniswapV2LikeOracle_SushiSwap.json -------------------------------------------------------------------------------- /deployments/matic/UniswapV2LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/matic/UniswapV2LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/matic/UniswapV3LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/matic/UniswapV3LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/matic/UniswapV4LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/matic/UniswapV4LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/optimistic/.chainId: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /deployments/optimistic/AaveWrapperV3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/optimistic/AaveWrapperV3.json -------------------------------------------------------------------------------- /deployments/optimistic/CurveOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/optimistic/CurveOracle.json -------------------------------------------------------------------------------- /deployments/optimistic/MultiWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/optimistic/MultiWrapper.json -------------------------------------------------------------------------------- /deployments/optimistic/OffchainOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/optimistic/OffchainOracle.json -------------------------------------------------------------------------------- /deployments/optimistic/SolidlyOracle_Velodrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/optimistic/SolidlyOracle_Velodrome.json -------------------------------------------------------------------------------- /deployments/optimistic/SolidlyOracle_VelodromeV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/optimistic/SolidlyOracle_VelodromeV2.json -------------------------------------------------------------------------------- /deployments/optimistic/StataTokenWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/optimistic/StataTokenWrapper.json -------------------------------------------------------------------------------- /deployments/optimistic/SynthetixOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/optimistic/SynthetixOracle.json -------------------------------------------------------------------------------- /deployments/optimistic/TransparentUpgradeableProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/optimistic/TransparentUpgradeableProxy.json -------------------------------------------------------------------------------- /deployments/optimistic/UniswapV2LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/optimistic/UniswapV2LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/optimistic/UniswapV3LikeOracle_Slipstream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/optimistic/UniswapV3LikeOracle_Slipstream.json -------------------------------------------------------------------------------- /deployments/optimistic/UniswapV3LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/optimistic/UniswapV3LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/optimistic/UniswapV4LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/optimistic/UniswapV4LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/sonic/.chainId: -------------------------------------------------------------------------------- 1 | 146 -------------------------------------------------------------------------------- /deployments/sonic/AaveWrapperV3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/sonic/AaveWrapperV3.json -------------------------------------------------------------------------------- /deployments/sonic/AlgebraOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/sonic/AlgebraOracle.json -------------------------------------------------------------------------------- /deployments/sonic/AlgebraOracle_SilverSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/sonic/AlgebraOracle_SilverSwap.json -------------------------------------------------------------------------------- /deployments/sonic/BaseCoinWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/sonic/BaseCoinWrapper.json -------------------------------------------------------------------------------- /deployments/sonic/Erc4626Wrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/sonic/Erc4626Wrapper.json -------------------------------------------------------------------------------- /deployments/sonic/MultiWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/sonic/MultiWrapper.json -------------------------------------------------------------------------------- /deployments/sonic/OffchainOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/sonic/OffchainOracle.json -------------------------------------------------------------------------------- /deployments/sonic/SolidlyOracle_Shadow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/sonic/SolidlyOracle_Shadow.json -------------------------------------------------------------------------------- /deployments/sonic/SolidlyOracle_SwapXV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/sonic/SolidlyOracle_SwapXV2.json -------------------------------------------------------------------------------- /deployments/sonic/UniswapV3LikeOracle_Shadow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/sonic/UniswapV3LikeOracle_Shadow.json -------------------------------------------------------------------------------- /deployments/sonic/UniswapV3LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/sonic/UniswapV3LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/sonic/UniswapV3LikeOracle_Wagmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/sonic/UniswapV3LikeOracle_Wagmi.json -------------------------------------------------------------------------------- /deployments/unichain/.chainId: -------------------------------------------------------------------------------- 1 | 130 -------------------------------------------------------------------------------- /deployments/unichain/BaseCoinWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/unichain/BaseCoinWrapper.json -------------------------------------------------------------------------------- /deployments/unichain/CompoundV3Wrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/unichain/CompoundV3Wrapper.json -------------------------------------------------------------------------------- /deployments/unichain/MultiWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/unichain/MultiWrapper.json -------------------------------------------------------------------------------- /deployments/unichain/OffchainOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/unichain/OffchainOracle.json -------------------------------------------------------------------------------- /deployments/unichain/UniswapV2LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/unichain/UniswapV2LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/unichain/UniswapV3LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/unichain/UniswapV3LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/unichain/UniswapV4LikeOracle_Uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/unichain/UniswapV4LikeOracle_Uniswap.json -------------------------------------------------------------------------------- /deployments/xdai/.chainId: -------------------------------------------------------------------------------- 1 | 100 -------------------------------------------------------------------------------- /deployments/xdai/AaveWrapperV3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/xdai/AaveWrapperV3.json -------------------------------------------------------------------------------- /deployments/xdai/BaseCoinWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/xdai/BaseCoinWrapper.json -------------------------------------------------------------------------------- /deployments/xdai/CurveOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/xdai/CurveOracle.json -------------------------------------------------------------------------------- /deployments/xdai/Erc4626Wrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/xdai/Erc4626Wrapper.json -------------------------------------------------------------------------------- /deployments/xdai/MultiWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/xdai/MultiWrapper.json -------------------------------------------------------------------------------- /deployments/xdai/OffchainOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/xdai/OffchainOracle.json -------------------------------------------------------------------------------- /deployments/xdai/StataTokenWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/xdai/StataTokenWrapper.json -------------------------------------------------------------------------------- /deployments/xdai/TransparentUpgradeableProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/xdai/TransparentUpgradeableProxy.json -------------------------------------------------------------------------------- /deployments/xdai/UniswapV2LikeOracle_Honeyswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/xdai/UniswapV2LikeOracle_Honeyswap.json -------------------------------------------------------------------------------- /deployments/xdai/UniswapV2LikeOracle_Levinswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/xdai/UniswapV2LikeOracle_Levinswap.json -------------------------------------------------------------------------------- /deployments/xdai/UniswapV2LikeOracle_Sushiswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/xdai/UniswapV2LikeOracle_Sushiswap.json -------------------------------------------------------------------------------- /deployments/xdai/UniswapV2LikeOracle_Swapr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/xdai/UniswapV2LikeOracle_Swapr.json -------------------------------------------------------------------------------- /deployments/zksync/.chainId: -------------------------------------------------------------------------------- 1 | 324 -------------------------------------------------------------------------------- /deployments/zksync/BaseCoinWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/zksync/BaseCoinWrapper.json -------------------------------------------------------------------------------- /deployments/zksync/MultiWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/zksync/MultiWrapper.json -------------------------------------------------------------------------------- /deployments/zksync/OffchainOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/zksync/OffchainOracle.json -------------------------------------------------------------------------------- /deployments/zksync/SolidlyOracleNoCreate2_MuteSwitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/zksync/SolidlyOracleNoCreate2_MuteSwitch.json -------------------------------------------------------------------------------- /deployments/zksync/SyncswapOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/zksync/SyncswapOracle.json -------------------------------------------------------------------------------- /deployments/zksync/TransparentUpgradeableProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/deployments/zksync/TransparentUpgradeableProxy.json -------------------------------------------------------------------------------- /description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/description.md -------------------------------------------------------------------------------- /docs/GasEstimator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/GasEstimator.md -------------------------------------------------------------------------------- /docs/MultiWrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/MultiWrapper.md -------------------------------------------------------------------------------- /docs/OffchainOracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/OffchainOracle.md -------------------------------------------------------------------------------- /docs/helpers/Blacklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/helpers/Blacklist.md -------------------------------------------------------------------------------- /docs/helpers/ConnectorManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/helpers/ConnectorManager.md -------------------------------------------------------------------------------- /docs/interfaces/IAlgebraPool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/IAlgebraPool.md -------------------------------------------------------------------------------- /docs/interfaces/IBzxProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/IBzxProtocol.md -------------------------------------------------------------------------------- /docs/interfaces/ICToken.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/ICToken.md -------------------------------------------------------------------------------- /docs/interfaces/IChai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/IChai.md -------------------------------------------------------------------------------- /docs/interfaces/IChainlink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/IChainlink.md -------------------------------------------------------------------------------- /docs/interfaces/IComet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/IComet.md -------------------------------------------------------------------------------- /docs/interfaces/IComptroller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/IComptroller.md -------------------------------------------------------------------------------- /docs/interfaces/ICurveMetaregistry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/ICurveMetaregistry.md -------------------------------------------------------------------------------- /docs/interfaces/ICurvePool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/ICurvePool.md -------------------------------------------------------------------------------- /docs/interfaces/ICurveProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/ICurveProvider.md -------------------------------------------------------------------------------- /docs/interfaces/IDodo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/IDodo.md -------------------------------------------------------------------------------- /docs/interfaces/IDodoFactories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/IDodoFactories.md -------------------------------------------------------------------------------- /docs/interfaces/IKyberDmmFactory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/IKyberDmmFactory.md -------------------------------------------------------------------------------- /docs/interfaces/IKyberDmmPool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/IKyberDmmPool.md -------------------------------------------------------------------------------- /docs/interfaces/ILendingPoolV1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/ILendingPoolV1.md -------------------------------------------------------------------------------- /docs/interfaces/ILendingPoolV2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/ILendingPoolV2.md -------------------------------------------------------------------------------- /docs/interfaces/ILendingPoolV3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/ILendingPoolV3.md -------------------------------------------------------------------------------- /docs/interfaces/ILoanToken.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/ILoanToken.md -------------------------------------------------------------------------------- /docs/interfaces/IMooniswap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/IMooniswap.md -------------------------------------------------------------------------------- /docs/interfaces/IMooniswapFactory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/IMooniswapFactory.md -------------------------------------------------------------------------------- /docs/interfaces/IOracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/IOracle.md -------------------------------------------------------------------------------- /docs/interfaces/ISDai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/ISDai.md -------------------------------------------------------------------------------- /docs/interfaces/ISolidlyFactory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/ISolidlyFactory.md -------------------------------------------------------------------------------- /docs/interfaces/IStaticATokenLM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/IStaticATokenLM.md -------------------------------------------------------------------------------- /docs/interfaces/ISynthetixAddressResolver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/ISynthetixAddressResolver.md -------------------------------------------------------------------------------- /docs/interfaces/ISynthetixExchangeRates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/ISynthetixExchangeRates.md -------------------------------------------------------------------------------- /docs/interfaces/ISynthetixProxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/ISynthetixProxy.md -------------------------------------------------------------------------------- /docs/interfaces/IUniswapFactory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/IUniswapFactory.md -------------------------------------------------------------------------------- /docs/interfaces/IUniswapV2Pair.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/IUniswapV2Pair.md -------------------------------------------------------------------------------- /docs/interfaces/IUniswapV3Pool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/IUniswapV3Pool.md -------------------------------------------------------------------------------- /docs/interfaces/IWrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/IWrapper.md -------------------------------------------------------------------------------- /docs/interfaces/IWstETH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/IWstETH.md -------------------------------------------------------------------------------- /docs/interfaces/IYVault.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/interfaces/IYVault.md -------------------------------------------------------------------------------- /docs/libraries/OraclePrices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/libraries/OraclePrices.md -------------------------------------------------------------------------------- /docs/oracles/AlgebraOracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/oracles/AlgebraOracle.md -------------------------------------------------------------------------------- /docs/oracles/ChainlinkOracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/oracles/ChainlinkOracle.md -------------------------------------------------------------------------------- /docs/oracles/CurveOracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/oracles/CurveOracle.md -------------------------------------------------------------------------------- /docs/oracles/CurveOracleCRP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/oracles/CurveOracleCRP.md -------------------------------------------------------------------------------- /docs/oracles/DodoOracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/oracles/DodoOracle.md -------------------------------------------------------------------------------- /docs/oracles/DodoV2Oracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/oracles/DodoV2Oracle.md -------------------------------------------------------------------------------- /docs/oracles/KlaySwapOracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/oracles/KlaySwapOracle.md -------------------------------------------------------------------------------- /docs/oracles/KyberDmmOracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/oracles/KyberDmmOracle.md -------------------------------------------------------------------------------- /docs/oracles/MooniswapOracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/oracles/MooniswapOracle.md -------------------------------------------------------------------------------- /docs/oracles/OracleBase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/oracles/OracleBase.md -------------------------------------------------------------------------------- /docs/oracles/SolidlyOracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/oracles/SolidlyOracle.md -------------------------------------------------------------------------------- /docs/oracles/SolidlyOracleNoCreate2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/oracles/SolidlyOracleNoCreate2.md -------------------------------------------------------------------------------- /docs/oracles/SyncswapOracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/oracles/SyncswapOracle.md -------------------------------------------------------------------------------- /docs/oracles/SynthetixOracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/oracles/SynthetixOracle.md -------------------------------------------------------------------------------- /docs/oracles/UniswapOracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/oracles/UniswapOracle.md -------------------------------------------------------------------------------- /docs/oracles/UniswapV2LikeOracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/oracles/UniswapV2LikeOracle.md -------------------------------------------------------------------------------- /docs/oracles/UniswapV3LikeOracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/oracles/UniswapV3LikeOracle.md -------------------------------------------------------------------------------- /docs/wrappers/AaveWrapperV1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/wrappers/AaveWrapperV1.md -------------------------------------------------------------------------------- /docs/wrappers/AaveWrapperV2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/wrappers/AaveWrapperV2.md -------------------------------------------------------------------------------- /docs/wrappers/AaveWrapperV3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/wrappers/AaveWrapperV3.md -------------------------------------------------------------------------------- /docs/wrappers/BaseCoinWrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/wrappers/BaseCoinWrapper.md -------------------------------------------------------------------------------- /docs/wrappers/ChaiWrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/wrappers/ChaiWrapper.md -------------------------------------------------------------------------------- /docs/wrappers/CompoundLikeWrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/wrappers/CompoundLikeWrapper.md -------------------------------------------------------------------------------- /docs/wrappers/CompoundV3Wrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/wrappers/CompoundV3Wrapper.md -------------------------------------------------------------------------------- /docs/wrappers/Erc4626Wrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/wrappers/Erc4626Wrapper.md -------------------------------------------------------------------------------- /docs/wrappers/FulcrumWrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/wrappers/FulcrumWrapper.md -------------------------------------------------------------------------------- /docs/wrappers/FulcrumWrapperLegacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/wrappers/FulcrumWrapperLegacy.md -------------------------------------------------------------------------------- /docs/wrappers/SDaiWrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/wrappers/SDaiWrapper.md -------------------------------------------------------------------------------- /docs/wrappers/SUSDeWrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/wrappers/SUSDeWrapper.md -------------------------------------------------------------------------------- /docs/wrappers/StataTokenWrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/wrappers/StataTokenWrapper.md -------------------------------------------------------------------------------- /docs/wrappers/Wrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/wrappers/Wrapper.md -------------------------------------------------------------------------------- /docs/wrappers/WstETHWrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/wrappers/WstETHWrapper.md -------------------------------------------------------------------------------- /docs/wrappers/WsuperOETHbWrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/wrappers/WsuperOETHbWrapper.md -------------------------------------------------------------------------------- /docs/wrappers/YVaultWrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/docs/wrappers/YVaultWrapper.md -------------------------------------------------------------------------------- /examples/multiple-prices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/examples/multiple-prices.js -------------------------------------------------------------------------------- /examples/single-price.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/examples/single-price.js -------------------------------------------------------------------------------- /hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/hardhat.config.js -------------------------------------------------------------------------------- /migrations/10_add_usdt_connector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/10_add_usdt_connector.js -------------------------------------------------------------------------------- /migrations/11_multiwrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/11_multiwrapper.js -------------------------------------------------------------------------------- /migrations/12_bsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/12_bsc.js -------------------------------------------------------------------------------- /migrations/13_srteetswap_bsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/13_srteetswap_bsc.js -------------------------------------------------------------------------------- /migrations/14_bsc_jul_bakery_1inch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/14_bsc_jul_bakery_1inch.js -------------------------------------------------------------------------------- /migrations/15_equalizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/15_equalizer.js -------------------------------------------------------------------------------- /migrations/16_cream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/16_cream.js -------------------------------------------------------------------------------- /migrations/17_uniswapV1_fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/17_uniswapV1_fix.js -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_remove_require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/2_remove_require.js -------------------------------------------------------------------------------- /migrations/3_compound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/3_compound.js -------------------------------------------------------------------------------- /migrations/4_aave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/4_aave.js -------------------------------------------------------------------------------- /migrations/5_wrapper_shortcut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/5_wrapper_shortcut.js -------------------------------------------------------------------------------- /migrations/6_fulcrum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/6_fulcrum.js -------------------------------------------------------------------------------- /migrations/7_fulcrum_v2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/7_fulcrum_v2.js -------------------------------------------------------------------------------- /migrations/8_replace_compound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/8_replace_compound.js -------------------------------------------------------------------------------- /migrations/9_aave_legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/9_aave_legacy.js -------------------------------------------------------------------------------- /migrations/bsc/2021-02-17-1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/bsc/2021-02-17-1.log -------------------------------------------------------------------------------- /migrations/bsc/2021-02-17-2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/bsc/2021-02-17-2.log -------------------------------------------------------------------------------- /migrations/bsc/2021-02-24-1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/bsc/2021-02-24-1.log -------------------------------------------------------------------------------- /migrations/ethereum/2021-02-04-1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/ethereum/2021-02-04-1.log -------------------------------------------------------------------------------- /migrations/ethereum/2021-02-04-2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/ethereum/2021-02-04-2.log -------------------------------------------------------------------------------- /migrations/ethereum/2021-02-04-3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/ethereum/2021-02-04-3.log -------------------------------------------------------------------------------- /migrations/ethereum/2021-02-04-4.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/ethereum/2021-02-04-4.log -------------------------------------------------------------------------------- /migrations/ethereum/2021-02-04-5.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/ethereum/2021-02-04-5.log -------------------------------------------------------------------------------- /migrations/ethereum/2021-02-08-1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/ethereum/2021-02-08-1.log -------------------------------------------------------------------------------- /migrations/ethereum/2021-02-08-2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/ethereum/2021-02-08-2.log -------------------------------------------------------------------------------- /migrations/ethereum/2021-02-09-1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/ethereum/2021-02-09-1.log -------------------------------------------------------------------------------- /migrations/ethereum/2021-02-17-1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/ethereum/2021-02-17-1.log -------------------------------------------------------------------------------- /migrations/ethereum/2021-02-17-2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/ethereum/2021-02-17-2.log -------------------------------------------------------------------------------- /migrations/ethereum/2021-02-25-1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/ethereum/2021-02-25-1.log -------------------------------------------------------------------------------- /migrations/ethereum/2021-03-01-1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/migrations/ethereum/2021-03-01-1.log -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/package.json -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/check-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/scripts/check-token.js -------------------------------------------------------------------------------- /scripts/check-tokens-prices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/scripts/check-tokens-prices.js -------------------------------------------------------------------------------- /test/Blacklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/Blacklist.js -------------------------------------------------------------------------------- /test/ConnectorManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/ConnectorManager.js -------------------------------------------------------------------------------- /test/MultiWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/MultiWrapper.js -------------------------------------------------------------------------------- /test/OffchainOracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/OffchainOracle.js -------------------------------------------------------------------------------- /test/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/helpers.js -------------------------------------------------------------------------------- /test/oracles/AlgebraOracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/oracles/AlgebraOracle.js -------------------------------------------------------------------------------- /test/oracles/ChainlinkOracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/oracles/ChainlinkOracle.js -------------------------------------------------------------------------------- /test/oracles/CurveOracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/oracles/CurveOracle.js -------------------------------------------------------------------------------- /test/oracles/DodoOracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/oracles/DodoOracle.js -------------------------------------------------------------------------------- /test/oracles/DodoV2Oracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/oracles/DodoV2Oracle.js -------------------------------------------------------------------------------- /test/oracles/KyberDmmOracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/oracles/KyberDmmOracle.js -------------------------------------------------------------------------------- /test/oracles/MooniswapOracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/oracles/MooniswapOracle.js -------------------------------------------------------------------------------- /test/oracles/SlipstreamOracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/oracles/SlipstreamOracle.js -------------------------------------------------------------------------------- /test/oracles/SolidlyOracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/oracles/SolidlyOracle.js -------------------------------------------------------------------------------- /test/oracles/SynthetixOracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/oracles/SynthetixOracle.js -------------------------------------------------------------------------------- /test/oracles/UniswapOracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/oracles/UniswapOracle.js -------------------------------------------------------------------------------- /test/oracles/UniswapV2LikeOracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/oracles/UniswapV2LikeOracle.js -------------------------------------------------------------------------------- /test/oracles/UniswapV3LikeOracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/oracles/UniswapV3LikeOracle.js -------------------------------------------------------------------------------- /test/oracles/UniswapV4LikeOracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/oracles/UniswapV4LikeOracle.js -------------------------------------------------------------------------------- /test/oracles/VelodromeV2Oracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/oracles/VelodromeV2Oracle.js -------------------------------------------------------------------------------- /test/wrappers/AaveWrapperV1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/wrappers/AaveWrapperV1.js -------------------------------------------------------------------------------- /test/wrappers/AaveWrapperV2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/wrappers/AaveWrapperV2.js -------------------------------------------------------------------------------- /test/wrappers/AaveWrapperV3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/wrappers/AaveWrapperV3.js -------------------------------------------------------------------------------- /test/wrappers/BaseCoinWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/wrappers/BaseCoinWrapper.js -------------------------------------------------------------------------------- /test/wrappers/ChaiWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/wrappers/ChaiWrapper.js -------------------------------------------------------------------------------- /test/wrappers/CompoundV3Wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/wrappers/CompoundV3Wrapper.js -------------------------------------------------------------------------------- /test/wrappers/CompoundWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/wrappers/CompoundWrapper.js -------------------------------------------------------------------------------- /test/wrappers/Erc4626Wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/wrappers/Erc4626Wrapper.js -------------------------------------------------------------------------------- /test/wrappers/FulcrumWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/wrappers/FulcrumWrapper.js -------------------------------------------------------------------------------- /test/wrappers/FulcrumWrapperLegacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/wrappers/FulcrumWrapperLegacy.js -------------------------------------------------------------------------------- /test/wrappers/StataTokenWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/wrappers/StataTokenWrapper.js -------------------------------------------------------------------------------- /test/wrappers/WstETHWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/wrappers/WstETHWrapper.js -------------------------------------------------------------------------------- /test/wrappers/YVaultWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/test/wrappers/YVaultWrapper.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1inch/spot-price-aggregator/HEAD/yarn.lock --------------------------------------------------------------------------------