Skip to content

Commit

Permalink
documentation cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani committed Oct 16, 2024
1 parent 70ab895 commit e38c639
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 4 additions & 1 deletion contracts/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,7 @@ ETHERSCAN_API_URL_BASE_SEPOLIA=https://api-sepolia.basescan.org/api
ETHERSCAN_API_URL_OPTIMISM=https://api-optimistic.etherscan.io/api
ETHERSCAN_API_URL_OPTIMISM_SEPOLIA=https://api-sepolia-optimistic.etherscan.io/api
ETHERSCAN_API_URL_SCROLL=https://api.scrollscan.com/api
ETHERSCAN_API_URL_SCROLL_SEPOLIA=https://api-sepolia.scrollscan.com/api
ETHERSCAN_API_URL_SCROLL_SEPOLIA=https://api-sepolia.scrollscan.com/api

## Contract Deployer Private Key
PRIVATE_KEY=
4 changes: 3 additions & 1 deletion contracts/deployments/11155111.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,7 @@
"V2_0_0_SP1_VERIFIER_PLONK": "0xaeE21CeadF7A03b3034DAE4f190bFE5F861b6ebf",
"V3_0_0_RC1_SP1_VERIFIER_GROTH16": "0x8dB92f28D7C30154d38E55DbA1054b5A7Fc5A829",
"V3_0_0_RC3_SP1_VERIFIER_GROTH16": "0x890E1c4ff98453f1201e5cB65F6C588FD28748b0",
"V3_0_0_RC3_SP1_VERIFIER_PLONK": "0x31aeD863BecC509B9e16403c52C07560A0d4ecBf"
"V3_0_0_RC3_SP1_VERIFIER_PLONK": "0x31aeD863BecC509B9e16403c52C07560A0d4ecBf",
"V3_0_0_RC4_SP1_VERIFIER_GROTH16": "0xbEe24654bF5D675D88e504a0DC148022664Ce436",
"V3_0_0_RC4_SP1_VERIFIER_PLONK": "0xAF58C8Feee48f9952A444cD897Fd16e99000a4E1"
}
2 changes: 1 addition & 1 deletion contracts/src/v3.0.0-rc4/SP1VerifierGroth16.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ contract SP1Verifier is Groth16Verifier, ISP1VerifierWithHash {
error InvalidProof();

function VERSION() external pure returns (string memory) {
return "v3.0.0-rc3";
return "v3.0.0-rc4";
}

/// @inheritdoc ISP1VerifierWithHash
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/v3.0.0-rc4/SP1VerifierPlonk.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ contract SP1Verifier is PlonkVerifier, ISP1VerifierWithHash {
error InvalidProof();

function VERSION() external pure returns (string memory) {
return "v3.0.0-rc3";
return "v3.0.0-rc4";
}

/// @inheritdoc ISP1VerifierWithHash
Expand Down

0 comments on commit e38c639

Please sign in to comment.