From edebb5afde23f76c9316904ee44d7ce95bbab1bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Volpe?= Date: Thu, 19 Oct 2023 18:25:22 +0200 Subject: [PATCH] Create 26_01_uniswap_fee_handler_seller.ts (#10662) --- .../26_01_uniswap_fee_handler_seller.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 packages/protocol/migrations_ts/26_01_uniswap_fee_handler_seller.ts diff --git a/packages/protocol/migrations_ts/26_01_uniswap_fee_handler_seller.ts b/packages/protocol/migrations_ts/26_01_uniswap_fee_handler_seller.ts new file mode 100644 index 00000000000..5e1e192687c --- /dev/null +++ b/packages/protocol/migrations_ts/26_01_uniswap_fee_handler_seller.ts @@ -0,0 +1,15 @@ +import { CeloContractName } from '@celo/protocol/lib/registry-utils' +import { deploymentForCoreContract } from '@celo/protocol/lib/web3-utils' +import { config } from '@celo/protocol/migrationsConfig' +import { UniswapFeeHandlerSellerInstance } from 'types' + +const initializeArgs = async () => { + return [config.registry.predeployedProxyAddress, [], []] +} + +module.exports = deploymentForCoreContract( + web3, + artifacts, + CeloContractName.UniswapFeeHandlerSeller, + initializeArgs +)