/* Imports: External */ import { DeployFunction } from 'hardhat-deploy/dist/types' /* Imports: Internal */ import { deployAndRegister, getDeployedContract, } from '../src/hardhat-deploy-ethers' const deployFn: DeployFunction = async (hre) => { const Lib_AddressManager = await getDeployedContract( hre, 'Lib_AddressManager' ) await deployAndRegister({ hre,
name: 'ChainStorageContainer-CTC-queue', contract: 'ChainStorageContainer', args: [Lib_AddressManager.address, 'CanonicalTransactionChain'],
}) } deployFn.dependencies = ['Lib_AddressManager']
deployFn.tags = ['ChainStorageContainer_ctc_queue']
export default deployFn