Skip to content

Commit

Permalink
disclaimers and quick link changes (#374)
Browse files Browse the repository at this point in the history
* disclaimers and quick link changes

* Update index.tsx

* Update index.tsx

linter fix

* Update .eslintignore

* Update transaction-lifecycle.md

added 10 M fas maximum limit

* Update docs/build-on-linea/run-a-node.mdx

Co-authored-by: jlwllmr <[email protected]>

* Update docs/build-on-linea/run-a-node.mdx

Co-authored-by: jlwllmr <[email protected]>

---------

Co-authored-by: jlwllmr <[email protected]>
  • Loading branch information
cedrabner and jlwllmr authored Dec 11, 2023
1 parent 0d10030 commit 45e2178
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 15 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ docs/test-api
*.mp4
**/*.mov
src/components/cardlist.jsx
src/components/HomepageCards/index.tsx
sidebars.js
LICENSE
2 changes: 1 addition & 1 deletion docs/architecture/transaction-lifecycle.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ A transaction is rejected if it:

- Originates from a non-existent account, or an account that is not funded
- Has a gas price below the minimum
- Has a gas limit above the maximum
- Has a gas limit above the 10 million maximum
- Has the same nonce as another transaction from the same account (in this case, the transaction with the higher gas fee is chosen, and the other rejected)
- Has a total `calldata` size greater than 25kb.

Expand Down
20 changes: 11 additions & 9 deletions docs/build-on-linea/run-a-node.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,18 @@ title: "Run a Linea Node"
id: "run-a-node"
---

import VolumeCreation from './volume-creation.mdx';
### Interested in running a Linea node yourself? Of course you are.

> The Linea network only produces blocks if there is currently at least 1 pending transaction. If you see no incoming blocks to your node, **that does not mean that the node is not syncing**.
>
> **If you don't see any incoming blocks**, check and make sure that you have **at least one peer from the bootnodes below**; otherwise, you might not be connected to the Linea network.
**Running your own Linea node does not have any financial incentives, but does offer the following benefits:**

### Interested in running a Linea node yourself? Of course you are.
- You can submit transactions to the mempool without relying on an RPC provider
- You receive a local copy of the Linea database. This view of the state is "trusted" until the block/transaction has been finalized on L1

If you're unfamiliar with how public blockchain networks share the responsibility of keeping common resources secure, check out [this explainer from MetaMask](https://support.metamask.io/hc/en-us/articles/360015489611-Learn-the-basics-of-blockchains-and-Ethereum-miners-and-validators-gas-cryptocurrencies-and-NFTs-block-explorer-networks-etc-).

:::note

Running a sequencer node is currently not possible. The Ethereum client being used in this walkthrough (Geth) will soon be
**Running a sequencer node is currently not possible and there is no option to vote on blocks as part of the consensus/fork-choice like on Ethereum.** The Ethereum client being used in this walkthrough (Geth) will soon be
updated, including breaking changes. Please get in touch to make sure we keep
you posted if you decide to run a node. ** You can run a Dockerized
version as long as you keep the same parameters.**
Expand Down Expand Up @@ -83,8 +82,6 @@ geth \

---

**If you're having trouble with your node**, hop over to [the Support page](https://support.linea.build) and open a ticket with our agents.

###

</TabItem>
Expand Down Expand Up @@ -140,12 +137,17 @@ geth \
--metrics \
--verbosity 3
```

###

</TabItem>
</Tabs>

import VolumeCreation from './volume-creation.mdx';

> The Linea network only produces blocks if there is currently at least 1 pending transaction. If you see no incoming blocks to your node, **that does not mean that the node is not syncing**.
>
> **If you don't see any incoming blocks**, check and make sure that you have **at least one peer from the bootnodes below**; otherwise, you might not be connected to the Linea network.
<aside>
{/* Is this a Discord channel? */}
💡 Please feel free to contact us at the Linea Community Forum <a href="https://community.linea.build/c/developer-support/5">
Expand Down
5 changes: 5 additions & 0 deletions docs/use-mainnet/bridges-of-linea/bridging-non-dev.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ title: Bridge your funds
**[Go to the Portfolio Bridge](https://portfolio.metamask.io/bridge)**

:::info
For dapp teams, liquidity providers, and technology operators bridging large amounts of liquidity, please use [this page](/use-mainnet/bridges-of-linea/index.mdx) to see what your best options are.

:::

### Using ecosystem bridges

As mentioned, MetaMask Portfolio's Bridge feature surveys bridges across Linea to source its routes and rates.
Expand Down
10 changes: 5 additions & 5 deletions src/components/HomepageCards/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ type CardItem = {

const CardList: CardItem[] = [
{
title: "Wallet Set Up",
link: "/use-mainnet",
title: "Bridge Your Funds",
link: "/use-mainnet/bridges-of-linea/bridging-non-dev",
description: (
<>
Set up and fund your wallet to start bridging, swapping, and transacting
on Linea!
Learn how to bridge your funds to start transacting on Linea!

</>
),
buttonName: "Transact",
buttonName: "Bridge",
buttonType: "primary",
},
{
Expand Down

1 comment on commit 45e2178

@vercel
Copy link

@vercel vercel bot commented on 45e2178 Dec 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.