We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3abf77c commit 5ef3f7dCopy full SHA for 5ef3f7d
script/DeployAmoyReceiver.s.sol
@@ -0,0 +1,17 @@
1
+// SPDX-License-Identifier: MIT
2
+pragma solidity 0.8.26;
3
+
4
+import {Script} from "forge-std/Script.sol";
5
+import {AmoyReceiver} from "../src/AmoyReceiver.sol";
6
7
+contract DeployAmoyReceiver is Script {
8
+ address constant AMOY_ROUTER = 0x9C32fCB86BF0f4a1A8921a9Fe46de3198bb884B2;
9
10
+ function run() public {
11
+ AmoyReceiver amoyReceiver;
12
13
+ vm.startBroadcast();
14
+ amoyReceiver = new AmoyReceiver(AMOY_ROUTER);
15
+ vm.stopBroadcast();
16
+ }
17
+}
0 commit comments