-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
2,492 additions
and
296 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
{ | ||
"SP1_VERIFIER_GATEWAY": "0x3B6041173B80E77f038f3F2C0f9744f04837185e", | ||
"V1_2_0_SP1_VERIFIER_PLONK": "0x6B6A7Ded061567d8A56279801DEA5cFB79be5bFc", | ||
"V2_0_0_SP1_VERIFIER_PLONK": "0x1764C29FBd94865198588f10FC75D4f6636d158d" | ||
"V2_0_0_SP1_VERIFIER_PLONK": "0x1764C29FBd94865198588f10FC75D4f6636d158d", | ||
"V3_0_0_SP1_VERIFIER_GROTH16": "0x6A87EFd4e6B2Db1ed73129A8b9c51aaA583d49e3", | ||
"V3_0_0_SP1_VERIFIER_PLONK": "0xd2832Cf1fC8bA210FfABF62Db9A8781153131d16" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.20; | ||
|
||
import {BaseScript} from "../../utils/Base.s.sol"; | ||
import {SP1Verifier} from "../../../src/v3.0.0/SP1VerifierGroth16.sol"; | ||
import {SP1VerifierGateway} from "../../../src/SP1VerifierGateway.sol"; | ||
import {ISP1VerifierWithHash} from "../../../src/ISP1Verifier.sol"; | ||
|
||
contract SP1VerifierScript is BaseScript { | ||
string internal constant KEY = "V3_0_0_SP1_VERIFIER_GROTH16"; | ||
|
||
function run() external multichain(KEY) broadcaster { | ||
// Read config | ||
bytes32 CREATE2_SALT = readBytes32("CREATE2_SALT"); | ||
address SP1_VERIFIER_GATEWAY = readAddress("SP1_VERIFIER_GATEWAY"); | ||
|
||
// Deploy contract | ||
address verifier = address(new SP1Verifier{salt: CREATE2_SALT}()); | ||
|
||
// Add the verifier to the gateway | ||
SP1VerifierGateway gateway = SP1VerifierGateway(SP1_VERIFIER_GATEWAY); | ||
gateway.addRoute(verifier); | ||
|
||
// Write address | ||
writeAddress(KEY, verifier); | ||
} | ||
|
||
function freeze() external multichain(KEY) broadcaster { | ||
// Read config | ||
address SP1_VERIFIER_GATEWAY = readAddress("SP1_VERIFIER_GATEWAY"); | ||
address SP1_VERIFIER = readAddress(KEY); | ||
|
||
// Freeze the verifier on the gateway | ||
SP1VerifierGateway gateway = SP1VerifierGateway(SP1_VERIFIER_GATEWAY); | ||
bytes4 selector = bytes4(ISP1VerifierWithHash(SP1_VERIFIER).VERIFIER_HASH()); | ||
gateway.freezeRoute(selector); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.20; | ||
|
||
import {BaseScript} from "../../utils/Base.s.sol"; | ||
import {SP1Verifier} from "../../../src/v3.0.0/SP1VerifierPlonk.sol"; | ||
import {SP1VerifierGateway} from "../../../src/SP1VerifierGateway.sol"; | ||
import {ISP1VerifierWithHash} from "../../../src/ISP1Verifier.sol"; | ||
|
||
contract SP1VerifierScript is BaseScript { | ||
string internal constant KEY = "V3_0_0_SP1_VERIFIER_PLONK"; | ||
|
||
function run() external multichain(KEY) broadcaster { | ||
// Read config | ||
bytes32 CREATE2_SALT = readBytes32("CREATE2_SALT"); | ||
address SP1_VERIFIER_GATEWAY = readAddress("SP1_VERIFIER_GATEWAY"); | ||
|
||
// Deploy contract | ||
address verifier = address(new SP1Verifier{salt: CREATE2_SALT}()); | ||
|
||
// Add the verifier to the gateway | ||
SP1VerifierGateway gateway = SP1VerifierGateway(SP1_VERIFIER_GATEWAY); | ||
gateway.addRoute(verifier); | ||
|
||
// Write address | ||
writeAddress(KEY, verifier); | ||
} | ||
|
||
function freeze() external multichain(KEY) broadcaster { | ||
// Read config | ||
address SP1_VERIFIER_GATEWAY = readAddress("SP1_VERIFIER_GATEWAY"); | ||
address SP1_VERIFIER = readAddress(KEY); | ||
|
||
// Freeze the verifier on the gateway | ||
SP1VerifierGateway gateway = SP1VerifierGateway(SP1_VERIFIER_GATEWAY); | ||
bytes4 selector = bytes4(ISP1VerifierWithHash(SP1_VERIFIER).VERIFIER_HASH()); | ||
gateway.freezeRoute(selector); | ||
} | ||
} |
Oops, something went wrong.