Skip to content

Commit

Permalink
Add WERC721Factory deployment script
Browse files Browse the repository at this point in the history
  • Loading branch information
kphed committed Sep 18, 2023
1 parent ca67f10 commit 2c8eb76
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions script/WERC721Factory.s.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

import "forge-std/Script.sol";
import {WERC721Factory} from "src/WERC721Factory.sol";

contract WERC721FactoryScript is Script {
function run() external {
vm.broadcast(vm.envUint("PRIVATE_KEY"));

new WERC721Factory();
}
}

0 comments on commit 2c8eb76

Please sign in to comment.