From 8091c852c5b41a3bb02f507ed190a493a9924ff6 Mon Sep 17 00:00:00 2001 From: Mikhailo Shabodyash Date: Wed, 3 Jul 2024 15:56:55 +0300 Subject: [PATCH] fix: change price feed --- .../weth/migrations/1718791267_add_wbtc_as_collateral.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deployments/arbitrum/weth/migrations/1718791267_add_wbtc_as_collateral.ts b/deployments/arbitrum/weth/migrations/1718791267_add_wbtc_as_collateral.ts index 6d80b3b2d..0afb7c533 100644 --- a/deployments/arbitrum/weth/migrations/1718791267_add_wbtc_as_collateral.ts +++ b/deployments/arbitrum/weth/migrations/1718791267_add_wbtc_as_collateral.ts @@ -13,11 +13,12 @@ export default migration('1718791267_add_wbtc_as_collateral', { async prepare(deploymentManager: DeploymentManager) { const _wbtcScalingPriceFeed = await deploymentManager.deploy( 'WBTC:priceFeed', - 'pricefeeds/WBTCPriceFeed.sol', + 'pricefeeds/MultiplicativePriceFeed.sol', [ WBTC_BTC_PRICE_FEED_ADDRESS, // WBTC / BTC price feed BTC_ETH_PRICE_FEED_ADDRESS, // BTC / ETH price feed 8, // decimals + 'WBTC / BTC BTC / ETH', // description ] );