UNPKG

cosmic-interchain-cli

Version:

A command-line utility for Cosmic Wire's interchain messaging protocol

16 lines 555 B
import { $ } from 'zx'; import { ANVIL_KEY, REGISTRY_PATH } from './helpers.js'; /** * Deploys the Hyperlane core contracts to the specified chain using the provided config. */ export async function hyperlaneCoreDeploy(chain, coreInputPath) { return $ `yarn workspace @hyperlane-xyz/cli run hyperlane core deploy \ --registry ${REGISTRY_PATH} \ --overrides " " \ --config ${coreInputPath} \ --chain ${chain} \ --key ${ANVIL_KEY} \ --verbosity debug \ --yes`; } //# sourceMappingURL=core.js.map