Skip to content

Commit

Permalink
sol version
Browse files Browse the repository at this point in the history
  • Loading branch information
MaanavKhaitan committed Nov 20, 2024
1 parent 6009c55 commit 778158c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contracts/script/Deployer.s.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
pragma solidity ^0.8.28;

import {Script, console} from "forge-std/Script.sol";
import {JobManager} from "../src/coprocessor/JobManager.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/ProgramID.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.8.13;
pragma solidity ^0.8.28;

library ProgramID {
bytes32 public constant SQUARE_ROOT_ID = bytes32(0x3bbdaf6d405d7da83f503d17334267694f68d75376768f561b1374917539800f);
Expand Down
4 changes: 2 additions & 2 deletions zkvm-utils/src/sol.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use alloy::primitives::hex;
use anyhow::{anyhow, bail, Context, Result};
use ivm_zkvm::Zkvm;

const PROGRAM_ID_LIB_HEADER: &str = r#"pragma solidity ^0.8.13;
const PROGRAM_ID_LIB_HEADER: &str = r#"pragma solidity ^0.8.28;
library ProgramID {
"#;
Expand Down Expand Up @@ -136,7 +136,7 @@ pub fn generate_deploy_script(programs: &[ProgramMetadata]) -> Result<Vec<u8>> {
let file_content = format!(
r#"
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
pragma solidity ^0.8.28;
import {{Script, console}} from "forge-std/Script.sol";
import {{JobManager}} from "../src/coprocessor/JobManager.sol";
Expand Down

0 comments on commit 778158c

Please sign in to comment.