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>
16 lines
520 B
Solidity
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();
|
|
}
|
|
}
|