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
4 changes: 2 additions & 2 deletions contracts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This package contains the smart contracts that compose the on-chain component.
| Name | Proxy Type | Description |
| ---------------------------------------------------------------------------------- | ----------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------ |
| [`L1CrossDomainMessenger`](../../specs/messengers.md) | [`ResolvedDelegateProxy`](./contracts/legacy/ResolvedDelegateProxy.sol) | High-level interface for sending messages to and receiving messages from M |
| [`L1StandardBridge`](../../specs/bridges.md) | [`L1ChugSplashProxy`](./contracts/legacy/L1ChugSplashProxy.sol) | Standardized system for transfering ERC20 tokens to/from Mo r p h |
| [`L1StandardBridge`](../../specs/bridges.md) | [`L1ChugSplashProxy`](./contracts/legacy/L1ChugSplashProxy.sol) | Standardized system for transferring ERC20 tokens to/from Mo r p h |
| [`Rollup`](../../specs/proposals.md#rollup.sol) | [`Proxy`](./contracts/universal/Proxy.sol) | Stores commitments to the state of Morph which can be used by contracts on L1 to access L2 state |
| [`MorphPortal`](../../specs/deposits.md#deposit-contract) | [`Proxy`](./contracts/universal/Proxy.sol) | Low-level message passing interface |
| [`MorphMintableERC20Factory`](../../specs/predeploys.md#morphmintableerc20factory) | [`Proxy`](./contracts/universal/Proxy.sol) | Deploys standard `MorphMintableERC20` tokens that are compatible with either `StandardBridge` |
Expand Down Expand Up @@ -79,7 +79,7 @@ yarn test

You must have [Echidna](https://github.com/crytic/echidna) installed.

Contracts targetted for Echidna testing are located in `./contracts/echidna`.
Contracts targeted for Echidna testing are located in `./contracts/echidna`.
Each target contract is tested with a separate yarn command, for example:

```shell
Expand Down
2 changes: 1 addition & 1 deletion node/flags/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ var Flags = []cli.Flag{
L2SequencerAddr,
GovAddr,

// sync optioins
// sync options
SyncDepositContractAddr,
SyncStartHeight,
SyncPollInterval,
Expand Down
2 changes: 1 addition & 1 deletion node/ops-morph/metricsgen/metricsgen.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ func ParseMetricsDir(dir string, structName string) (TemplateData, error) {
return TemplateData{}, fmt.Errorf("multiple packages found in %s", dir)
}
if len(d) == 0 {
return TemplateData{}, fmt.Errorf("no go pacakges found in %s", dir)
return TemplateData{}, fmt.Errorf("no go packages found in %s", dir)
}

// Grab the package name.
Expand Down