Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
dantaik committed Aug 20, 2024
1 parent 4efa662 commit 1ed0b70
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/protocol/script/DeployOnL1.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ contract DeployOnL1 is DeployCapability {
});

deployProxy({
name: "tier_tee",
name: "tier_sgx",
impl: address(new SgxVerifier()),
data: abi.encodeCall(SgxVerifier.init, (owner, rollupAddressManager)),
registerTo: rollupAddressManager
Expand Down Expand Up @@ -401,7 +401,7 @@ contract DeployOnL1 is DeployCapability {
register(rollupAddressManager, "risc0_groth16_verifier", address(verifier));

deployProxy({
name: "tier_zk_risc0",
name: "tier_zkvm_risc0",
impl: address(new Risc0Verifier()),
data: abi.encodeCall(Risc0Verifier.init, (owner, rollupAddressManager)),
registerTo: rollupAddressManager
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/script/DeployRisc0Verifier.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ contract DeployRisc0Verifier is DeployCapability {
new RiscZeroGroth16Verifier(ControlID.CONTROL_ROOT, ControlID.BN254_CONTROL_ID);
register(rollupAddressManager, "risc0_groth16_verifier", address(verifier));
deployProxy({
name: "tier_zk_risc0",
name: "tier_zkvm_risc0",
impl: address(new Risc0Verifier()),
data: abi.encodeCall(Risc0Verifier.init, (address(0), rollupAddressManager)),
registerTo: rollupAddressManager
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/test/verifiers/Risc0Verifier.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ contract TestRiscZeroVerifier is TaikoL1TestBase {
// Deploy Taiko's RiscZero proof verifier
rv = Risc0Verifier(
deployProxy({
name: "tier_zk_risc0",
name: "tier_zkvm_risc0",
impl: address(new Risc0Verifier()),
data: abi.encodeCall(Risc0Verifier.init, (address(0), address(addressManager)))
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ contract RiscZeroGroth16VerifierTest is TaikoL1TestBase {
// Deploy Taiko's RiscZero proof verifier
rv = Risc0Verifier(
deployProxy({
name: "tier_zk_risc0",
name: "tier_zkvm_risc0",
impl: address(new Risc0Verifier()),
data: abi.encodeCall(Risc0Verifier.init, (address(0), address(addressManager)))
})
Expand Down

0 comments on commit 1ed0b70

Please sign in to comment.