Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions contracts/script/Deploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import {BaseScript} from "./Base.s.sol";
// - SP1_VECTOR_PROGRAM_VKEY
// - CREATE2_SALT
// - GUARDIAN_ADDRESS
// - SP1_VERIFIER_ADDRESS
// - SP1_TEE_PLONK_VERIFIER_ADDRESS

contract DeployScript is BaseScript {
using stdJson for string;
Expand All @@ -47,7 +47,7 @@ contract DeployScript is BaseScript {
address guardian = vm.envOr("GUARDIAN_ADDRESS", msg.sender);

ISP1Verifier verifier =
ISP1Verifier(vm.envOr("SP1_VERIFIER_ADDRESS", 0x3B6041173B80E77f038f3F2C0f9744f04837185e));
ISP1Verifier(vm.envOr("SP1_TEE_PLONK_VERIFIER_ADDRESS", 0x857364919fD97a1aF7d9C5E8F905C7d222af3D02));
SP1Vector sp1VectorImpl = new SP1Vector();
// ERC1967Proxy proxy = new ERC1967Proxy{salt: vm.envBytes32("CREATE2_SALT")}(address(sp1VectorImpl), "");
ERC1967Proxy proxy = new ERC1967Proxy(address(sp1VectorImpl), "");
Expand Down
1 change: 1 addition & 0 deletions script/bin/operator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ where

self.prover
.prove(&self.pk, &stdin)
.tee_2fa()
.strategy(FulfillmentStrategy::Reserved)
.skip_simulation(true)
.plonk()
Expand Down
Loading