Skip to content

Commit d603f66

Browse files
chore: update sp1 contract addrs link for Proof Aggregator Service (#2177)
1 parent 9d93776 commit d603f66

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contracts/src/core/AlignedProofAggregationService.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ contract AlignedProofAggregationService is
2222
/// @dev This can either be a specific SP1Verifier for a specific version, or the
2323
/// SP1VerifierGateway which can be used to verify proofs for any version of SP1.
2424
/// For the list of supported verifiers on each chain, see:
25-
/// https://docs.succinct.xyz/onchain-verification/contract-addresses
25+
/// https://docs.succinct.xyz/docs/sp1/verification/contract-addresses
2626
address public sp1VerifierAddress;
2727

2828
/// @notice The address of the Wallet that is allowed to call the verify function.
@@ -73,7 +73,7 @@ contract AlignedProofAggregationService is
7373
{
7474
(bytes32 merkleRoot) = abi.decode(sp1PublicValues, (bytes32));
7575

76-
// In dev mode, poofs are mocked, so we skip the verification part
76+
// In dev mode, proofs are mocked, so we skip the verification part
7777
if (_isSP1VerificationEnabled()) {
7878
ISP1Verifier(sp1VerifierAddress).verifyProof(sp1AggregatorProgramVKHash, sp1PublicValues, sp1ProofBytes);
7979
}
@@ -88,7 +88,7 @@ contract AlignedProofAggregationService is
8888
{
8989
(bytes32 merkleRoot) = abi.decode(risc0JournalBytes, (bytes32));
9090

91-
// In dev mode, poofs are mocked, so we skip the verification part
91+
// In dev mode, proofs are mocked, so we skip the verification part
9292
if (_isRisc0VerificationEnabled()) {
9393
bytes32 risc0JournalDigest = sha256(risc0JournalBytes);
9494
IRiscZeroVerifier(risc0VerifierAddress).verify(

0 commit comments

Comments
 (0)