wormhole/ethereum/migrations/6_deploy_bridge_implementat...

13 lines
525 B
JavaScript
Raw Normal View History

2022-01-26 08:15:10 -08:00
// run with:
// npm run deploy-bridge-implementation-only
// e.g. Ethereum Mainnet
// INFURA_KEY="" MNEMONIC="" npm run deploy-bridge-implementation-only -- --network mainnet
// e.g. BSC
// MNEMONIC="" npm run deploy-bridge-implementation-only -- --network binance
// e.g. Polygon
// MNEMONIC="" npm run deploy-bridge-implementation-only -- --network polygon
const BridgeImplementation = artifacts.require("BridgeImplementation");
module.exports = async function(deployer) {
await deployer.deploy(BridgeImplementation);
};