Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixer mixer #359

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
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
4 changes: 2 additions & 2 deletions contracts/script/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ Use the following steps to cancel an operation that is pending on the `TimelockC

1. Identifier the operation ID and set the environment variable.

> TIP: Once way to get the operation ID is to open the contract in Etherscan and look at the events.
> TIP: One way to get the operation ID is to open the contract in Etherscan and look at the events.
> On the `CallScheduled` event, the ID is labeled as `[topic1]`.
>
> ```zsh
Expand Down Expand Up @@ -673,7 +673,7 @@ If your private key is compromised, you can renounce your role(s) without waitin
* canceller

> ![WARNING]
> Renouncing authorization on the timelock controller may make permanently inoperable.
> Renouncing authorization on the timelock controller may make it permanently inoperable.

1. Dry run the transaction:

Expand Down
2 changes: 1 addition & 1 deletion contracts/src/RiscZeroSetVerifier.sol
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ library RiscZeroSetVerifierLib {
contract RiscZeroSetVerifier is IRiscZeroSetVerifier {
using ReceiptClaimLib for ReceiptClaim;

/// Semantic version of the the RISC Zero Set Verifier.
/// Semantic version of the RISC Zero Set Verifier.
string public constant VERSION = "0.2.0-alpha.1";

IRiscZeroVerifier public immutable VERIFIER;
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/config/Config.sol
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {console2} from "forge-std/console2.sol";
import {stdToml} from "forge-std/StdToml.sol";
import {SafeCast} from "@openzeppelin/contracts/utils/math/SafeCast.sol";

/// Deployment a single verifier.
/// Deployment of a single verifier.
///
/// Many verifiers may be part of a deployment, with the router serving the purpose of making them
/// all accessible at a single address.
Expand Down
Loading