The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hyperlane-monorepo/solidity/optics-core/test/cross-chain/generateTestChainConfigs.js

54 lines
1.2 KiB

const { waffle } = require('hardhat');
const { provider } = waffle;
/*
* Given an array of domains,
* generate an array of ChainConfigs
* which can be used to deploy Optics to each domain
* for cross-chain tests
*
* @param domains - array of domains (integers) for chains we want to deploy Optics on
*
* @return configs - TestChainConfig[]
*/
async function domainsToTestConfigs(domains) {
let configs = domains.map((domain) => {
return {
domain,
currentRoot:
'0x0000000000000000000000000000000000000000000000000000000000000000',
lastProcessedIndex: 0,
optimisticSeconds: 3,
};
});
const wallets = provider.getWallets();
if (wallets.length < domains.length) {
throw new Error('need more wallets to add updaters for all chains');
}
// add the domain + updater + initialization arguments to config
for (let i = 0; i < configs.length; i++) {
let config = configs[i];
const { domain } = config;
const signer = wallets[i];
const updaterObject = await optics.Updater.fromSigner(signer, domain);
configs[i] = {
...config,
updater: signer.address,
updaterObject,
signer,
};
}
return configs;
}
module.exports = {
domainsToTestConfigs,
};