Skip to content

Commit

Permalink
Create 26_01_uniswap_fee_handler_seller.ts (#10662)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinvol committed Oct 19, 2023
1 parent d49390c commit edebb5a
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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<UniswapFeeHandlerSellerInstance>(
web3,
artifacts,
CeloContractName.UniswapFeeHandlerSeller,
initializeArgs
)

0 comments on commit edebb5a

Please sign in to comment.