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 +)