From 44f8d3b7323666755c6964dcf6163cd175656362 Mon Sep 17 00:00:00 2001 From: anim001k <140460766+anim001k@users.noreply.github.com> Date: Tue, 29 Jul 2025 19:32:19 +0200 Subject: [PATCH 1/3] Update README.md --- contracts/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/README.md b/contracts/README.md index 2d6f36085..d89245d38 100644 --- a/contracts/README.md +++ b/contracts/README.md @@ -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` | @@ -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 From 0b2bd3b61164d55995dc299aaf16b9fd629b37d3 Mon Sep 17 00:00:00 2001 From: anim001k <140460766+anim001k@users.noreply.github.com> Date: Tue, 29 Jul 2025 19:33:31 +0200 Subject: [PATCH 2/3] Update metricsgen.go --- node/ops-morph/metricsgen/metricsgen.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/ops-morph/metricsgen/metricsgen.go b/node/ops-morph/metricsgen/metricsgen.go index 830e0293d..5e18ad00c 100644 --- a/node/ops-morph/metricsgen/metricsgen.go +++ b/node/ops-morph/metricsgen/metricsgen.go @@ -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. From d760f22579da5fa50cdd04e8aafc0a9d9d3f2f69 Mon Sep 17 00:00:00 2001 From: anim001k <140460766+anim001k@users.noreply.github.com> Date: Tue, 29 Jul 2025 19:34:02 +0200 Subject: [PATCH 3/3] Update flags.go --- node/flags/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/flags/flags.go b/node/flags/flags.go index 7ea7c21b2..3914ce90c 100644 --- a/node/flags/flags.go +++ b/node/flags/flags.go @@ -309,7 +309,7 @@ var Flags = []cli.Flag{ L2SequencerAddr, GovAddr, - // sync optioins + // sync options SyncDepositContractAddr, SyncStartHeight, SyncPollInterval,