serai/processor/ethereum/deployer/build.rs

6 lines
206 B
Rust
Raw Normal View History

2024-09-15 21:13:10 +00:00
fn main() {
let artifacts_path =
std::env::var("OUT_DIR").unwrap().to_string() + "/serai-processor-ethereum-deployer";
build_solidity_contracts::build(&[], "contracts", &artifacts_path).unwrap();
}