From 2f00d335118759712044a136e3708e9819b2ca28 Mon Sep 17 00:00:00 2001 From: Davion Date: Fri, 1 Nov 2024 03:05:32 +0300 Subject: [PATCH 1/3] Edited the documentation to remove errors --- pages/builders/chain-operators/self-hosted.mdx | 2 +- pages/builders/chain-operators/tools/op-conductor.mdx | 4 ++-- pages/builders/chain-operators/tools/op-deployer.mdx | 2 +- .../builders/chain-operators/tutorials/adding-precompiles.mdx | 2 +- pages/builders/node-operators/management/metrics.mdx | 4 ++-- pages/builders/node-operators/tutorials/mainnet.mdx | 4 ++-- pages/builders/tools/monitor/regenesis-history.mdx | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/pages/builders/chain-operators/self-hosted.mdx b/pages/builders/chain-operators/self-hosted.mdx index a94ee4080..31dc22ac9 100644 --- a/pages/builders/chain-operators/self-hosted.mdx +++ b/pages/builders/chain-operators/self-hosted.mdx @@ -24,7 +24,7 @@ There are two main steps to get started building your own self-hosted OP Chain: blockchain to manage aspects of the Rollup. Each OP Stack chain has its own set of [L1 smart contracts](/stack/smart-contracts#layer-1-contracts), [L2 predeploy contracts](/stack/smart-contracts#layer-2-contracts-predeploys), - and [L2 preinstall contracts](/builders/chain-operators/features/preinstalls). + and [L2 preinstall contracts](/builders/chain-operators/features/preinstalls) that are deployed when the chain is created. * **Preinstalls**: OP Chains come with [preinstalled core contracts](/builders/chain-operators/features/preinstalls), making them usable as soon as a chain is initialized on the OP Stack. diff --git a/pages/builders/chain-operators/tools/op-conductor.mdx b/pages/builders/chain-operators/tools/op-conductor.mdx index 43dfaf4f1..8dc4b6695 100644 --- a/pages/builders/chain-operators/tools/op-conductor.mdx +++ b/pages/builders/chain-operators/tools/op-conductor.mdx @@ -153,7 +153,7 @@ This setup guide has the following assumptions: ```yaml OP_NODE_CONDUCTOR_ENABLED: "true" # this is what commits unsafe blocks to the raft logs - OP_NODE_RPC_ADMIN_STATE: "" # this flag cant be used with conductor + OP_NODE_RPC_ADMIN_STATE: "" # this flag can't be used with conductor ``` {

Confirm sequencer switch was successful

} @@ -192,7 +192,7 @@ This setup guide has the following assumptions: Confirm all conductors successfully resumed with [conductor_paused](#conductor_paused) - {

Tranfer leadership

} + {

Transfer leadership

} Trigger leadership transfer to `sequencer-0` using [conductor_transferLeaderToServer](#conductor_transferleadertoserver) diff --git a/pages/builders/chain-operators/tools/op-deployer.mdx b/pages/builders/chain-operators/tools/op-deployer.mdx index 274e782a6..6f5aba921 100644 --- a/pages/builders/chain-operators/tools/op-deployer.mdx +++ b/pages/builders/chain-operators/tools/op-deployer.mdx @@ -83,7 +83,7 @@ l2ContractsLocator = "tag://op-contracts/v1.7.0-beta.1+l2-contracts" # L2 smart [[chains]] # Your chain's ID, encoded as a 32-byte hex string id = "0x0000000000000000000000000000000000000000000000000000000000003039" - # Update the fee receipiant contract + # Update the fee recipient contract baseFeeVaultRecipient = "0x0000000000000000000000000000000000000000" l1FeeVaultRecipient = "0x0000000000000000000000000000000000000000" sequencerFeeVaultRecipient = "0x0000000000000000000000000000000000000000" diff --git a/pages/builders/chain-operators/tutorials/adding-precompiles.mdx b/pages/builders/chain-operators/tutorials/adding-precompiles.mdx index 70d8e678d..98b352c73 100644 --- a/pages/builders/chain-operators/tutorials/adding-precompiles.mdx +++ b/pages/builders/chain-operators/tutorials/adding-precompiles.mdx @@ -88,7 +88,7 @@ It means that for every precompile you need two functions: * `RequiredGas` which returns the gas cost for the call. This function takes an array of bytes as input, and returns a single value, the gas cost. * `Run` which runs the actual precompile. This function also takes an array of bytes, but it returns two values: the call's output (a byte array) and an error. -For every fork that changes the precompiles you have a [`map`](https://www.w3schools.com/go/go_maps.php)from addresses to the `PrecompiledContract` definitions: +For every fork that changes the precompiles you have a [`map`](https://www.w3schools.com/go/go_maps.php) from addresses to the `PrecompiledContract` definitions: ```go // PrecompiledContractsBerlin contains the default set of pre-compiled Ethereum diff --git a/pages/builders/node-operators/management/metrics.mdx b/pages/builders/node-operators/management/metrics.mdx index 022f44f64..b7aedea32 100644 --- a/pages/builders/node-operators/management/metrics.mdx +++ b/pages/builders/node-operators/management/metrics.mdx @@ -33,10 +33,10 @@ A complete list of available metrics is below: | op\_node\_default\_rpc\_client\_requests\_total | Total RPC requests initiated by the opnode's RPC client | method | counter | | op\_node\_default\_rpc\_client\_request\_duration\_seconds | Histogram of RPC client request durations | method | histogram | | op\_node\_default\_rpc\_client\_responses\_total | Total RPC request responses received by the opnode's RPC client | method,error | counter | -| op\_node\_default\_l1\_source\_cache\_size | L1 Source cache cache size | type | gauge | +| op\_node\_default\_l1\_source\_cache\_size | L1 Source cache size | type | gauge | | op\_node\_default\_l1\_source\_cache\_get | L1 Source cache lookups, hitting or not | type,hit | counter | | op\_node\_default\_l1\_source\_cache\_add | L1 Source cache additions, evicting previous values or not | type,evicted | counter | -| op\_node\_default\_l2\_source\_cache\_size | L2 Source cache cache size | type | gauge | +| op\_node\_default\_l2\_source\_cache\_size | L2 Source cache size | type | gauge | | op\_node\_default\_l2\_source\_cache\_get | L2 Source cache lookups, hitting or not | type,hit | counter | | op\_node\_default\_l2\_source\_cache\_add | L2 Source cache additions, evicting previous values or not | type,evicted | counter | | op\_node\_default\_derivation\_idle | 1 if the derivation pipeline is idle | | gauge | diff --git a/pages/builders/node-operators/tutorials/mainnet.mdx b/pages/builders/node-operators/tutorials/mainnet.mdx index b2906a723..4ae527e4e 100644 --- a/pages/builders/node-operators/tutorials/mainnet.mdx +++ b/pages/builders/node-operators/tutorials/mainnet.mdx @@ -273,7 +273,7 @@ In this section, you'll learn how to download and verify the pre-migrated databa {

Download the Migrated Data Directory

} Click the link below to find the latest publicly available database snapshots for OP Mainnet. - Snapshots are available for multiple dates and snapshots get larger as they get closer the current date. + Snapshots are available for multiple dates and snapshots get larger as they get closer to the current date. Snapshots are large files and may take some time to download. [OP Mainnet Snapshots](/builders/node-operators/management/snapshots#op-mainnet) @@ -293,7 +293,7 @@ In this section, you'll learn how to download and verify the pre-migrated databa sha256sum mainnet-bedrock.tar.zst ``` - You should see then following output: + You should see the following output: ```bash ec4baf47e309a14ffbd586dc85376833de640c0f2a8d7355cb8a9e64c38bfcd1 mainnet-bedrock.tar.zst diff --git a/pages/builders/tools/monitor/regenesis-history.mdx b/pages/builders/tools/monitor/regenesis-history.mdx index 0938a0b58..c262e7ae3 100644 --- a/pages/builders/tools/monitor/regenesis-history.mdx +++ b/pages/builders/tools/monitor/regenesis-history.mdx @@ -63,6 +63,6 @@ people who needed this data already retrieved it). ### Going forward We recognize the inconvenience this has caused some of our community and their -uses and we're sorry for the frustrations. In an effort to prevent similar +users and we're sorry for the frustrations. In an effort to prevent similar situations from happening again in the future, we are evaluating and updating existing processes and frameworks. From 69ee5d3b6ce87395d4dccd117f426a2253eb410e Mon Sep 17 00:00:00 2001 From: krofax Date: Mon, 4 Nov 2024 13:56:47 +0100 Subject: [PATCH 2/3] fix lint issues --- .../builders/node-operators/management/metrics.mdx | 4 ++-- words.txt | 13 +------------ 2 files changed, 3 insertions(+), 14 deletions(-) diff --git a/pages/builders/node-operators/management/metrics.mdx b/pages/builders/node-operators/management/metrics.mdx index b7aedea32..85fbebb2c 100644 --- a/pages/builders/node-operators/management/metrics.mdx +++ b/pages/builders/node-operators/management/metrics.mdx @@ -33,10 +33,10 @@ A complete list of available metrics is below: | op\_node\_default\_rpc\_client\_requests\_total | Total RPC requests initiated by the opnode's RPC client | method | counter | | op\_node\_default\_rpc\_client\_request\_duration\_seconds | Histogram of RPC client request durations | method | histogram | | op\_node\_default\_rpc\_client\_responses\_total | Total RPC request responses received by the opnode's RPC client | method,error | counter | -| op\_node\_default\_l1\_source\_cache\_size | L1 Source cache size | type | gauge | +| op\_node\_default\_l1\_source\_cache\_size | L1 Source cache size | type | gauge | | op\_node\_default\_l1\_source\_cache\_get | L1 Source cache lookups, hitting or not | type,hit | counter | | op\_node\_default\_l1\_source\_cache\_add | L1 Source cache additions, evicting previous values or not | type,evicted | counter | -| op\_node\_default\_l2\_source\_cache\_size | L2 Source cache size | type | gauge | +| op\_node\_default\_l2\_source\_cache\_size | L2 Source cache size | type | gauge | | op\_node\_default\_l2\_source\_cache\_get | L2 Source cache lookups, hitting or not | type,hit | counter | | op\_node\_default\_l2\_source\_cache\_add | L2 Source cache additions, evicting previous values or not | type,evicted | counter | | op\_node\_default\_derivation\_idle | 1 if the derivation pipeline is idle | | gauge | diff --git a/words.txt b/words.txt index 2e0d2c443..b1249fcf6 100644 --- a/words.txt +++ b/words.txt @@ -11,7 +11,6 @@ Allocs allocs altda ANDI -Ankr Apeworx Arweave authrpc @@ -77,7 +76,6 @@ datacap DATADIR datadir Dencun -derviation Devnet devnet Devnode @@ -150,7 +148,6 @@ Holesky holesky IGNOREPRICE ignoreprice -Immunefi implicity Inator inator @@ -199,7 +196,6 @@ minsuggestedpriorityfee Mintable Mintplex MIPSEVM -Mitigations Monitorism Moralis Mordor @@ -293,8 +289,6 @@ Protip Proxied proxyd pseudorandomly -Pyth -Pyth's QRNG Quicknode quicknode @@ -329,9 +323,6 @@ safedb Schnorr secp SELFDESTRUCT -SEPOLIA -Sepolia -sepolia seqnr SEQUENCERHTTP sequencerhttp @@ -376,7 +367,6 @@ Thirdweb threadcreate tility timeseries -Tranfer trustlessly trustrpc txfeecap @@ -400,7 +390,6 @@ VMDEBUG vmdebug VMODULE vmodule -voxel wagmi Warpcast xlarge @@ -409,4 +398,4 @@ xtensibility ZKPs ZKVM Zora -zora \ No newline at end of file +zora From 479804cdc84855fe2dfe06396142e85d4366abba Mon Sep 17 00:00:00 2001 From: krofax Date: Mon, 4 Nov 2024 14:03:25 +0100 Subject: [PATCH 3/3] updated word --- words.txt | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/words.txt b/words.txt index b1249fcf6..2e0d2c443 100644 --- a/words.txt +++ b/words.txt @@ -11,6 +11,7 @@ Allocs allocs altda ANDI +Ankr Apeworx Arweave authrpc @@ -76,6 +77,7 @@ datacap DATADIR datadir Dencun +derviation Devnet devnet Devnode @@ -148,6 +150,7 @@ Holesky holesky IGNOREPRICE ignoreprice +Immunefi implicity Inator inator @@ -196,6 +199,7 @@ minsuggestedpriorityfee Mintable Mintplex MIPSEVM +Mitigations Monitorism Moralis Mordor @@ -289,6 +293,8 @@ Protip Proxied proxyd pseudorandomly +Pyth +Pyth's QRNG Quicknode quicknode @@ -323,6 +329,9 @@ safedb Schnorr secp SELFDESTRUCT +SEPOLIA +Sepolia +sepolia seqnr SEQUENCERHTTP sequencerhttp @@ -367,6 +376,7 @@ Thirdweb threadcreate tility timeseries +Tranfer trustlessly trustrpc txfeecap @@ -390,6 +400,7 @@ VMDEBUG vmdebug VMODULE vmodule +voxel wagmi Warpcast xlarge @@ -398,4 +409,4 @@ xtensibility ZKPs ZKVM Zora -zora +zora \ No newline at end of file