Files
smom-dbis-138/script/ops/DeployCWMirrorMeshBatch.s.sol
T
defiQUGandCursor 651fb59786 Add mainnet checkpoint stack: ISO attestation, participant Etherscan surface, and services.
Ship AddressActivityRegistry V1/V2, ISO20022IntakeGateway, Chain138ParticipantSurface,
checkpoint hub contracts, checkpoint-core package, aggregator/indexer/sdk services,
relay profile guards, M00 diamond bridge facet, and OMNL compliance contracts.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-24 21:54:05 -07:00

16 lines
520 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import "forge-std/Script.sol";
import {CWMirrorMeshBatch} from "../../contracts/ops/CWMirrorMeshBatch.sol";
contract DeployCWMirrorMeshBatch is Script {
function run() external returns (CWMirrorMeshBatch batch) {
address bridge = vm.envAddress("CW_L1_BRIDGE_CHAIN138");
address link = vm.envAddress("LINK_TOKEN_CHAIN138");
vm.startBroadcast();
batch = new CWMirrorMeshBatch(bridge, link);
vm.stopBroadcast();
}
}