-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
249 changed files
with
3,943 additions
and
1,661 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
* @ethereum-optimism/docs-reviewers | ||
|
||
# Giving Marine privileges to review RPC providers, account abstraction, oracles, alt-da, and block explorers | ||
/pages/builders/tools/connect/rpc-providers.mdx @ethereum-optimism/docs-reviewers @0xmariniere | ||
/pages/builders/tools/build/block-explorers.mdx @ethereum-optimism/docs-reviewers @0xmariniere | ||
/pages/builders/tools/build/oracles.mdx @ethereum-optimism/docs-reviewers @0xmariniere | ||
/pages/builders/chain-operators/features/alt-da-mode.mdx @ethereum-optimism/docs-reviewers @0xmariniere | ||
/pages/builders/tools/build/account-abstraction.mdx @ethereum-optimism/docs-reviewers @0xmariniere | ||
/pages/app-developers/tools/connect/rpc-providers.mdx @ethereum-optimism/docs-reviewers @0xmariniere | ||
/pages/app-developers/tools/build/block-explorers.mdx @ethereum-optimism/docs-reviewers @0xmariniere | ||
/pages/app-developers/tools/build/oracles.mdx @ethereum-optimism/docs-reviewers @0xmariniere | ||
/pages/app-developers/chain-operators/features/alt-da-mode.mdx @ethereum-optimism/docs-reviewers @0xmariniere | ||
/pages/app-developers/tools/build/account-abstraction.mdx @ethereum-optimism/docs-reviewers @0xmariniere |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"--- App Devs": { | ||
"title": "App Developers", | ||
"type": "separator" | ||
}, | ||
"get-started": "Getting started", | ||
"starter-kit": "SuperchainERC20 starter kit", | ||
"interop": "Interoperability", | ||
"building-apps": "Building apps on the Superchain", | ||
"testing-apps": "Testing apps for the Superchain", | ||
"bridging": "Bridging", | ||
"transactions": "Transactions", | ||
"+++ Tutorials": { | ||
"title": "", | ||
"type": "separator" | ||
}, | ||
"--- Tutorials": { | ||
"title": "Tutorials", | ||
"type": "separator" | ||
}, | ||
"tutorials": { | ||
"title": "Tutorials", | ||
"display": "children" | ||
}, | ||
"+++ DevTools": { | ||
"title": "", | ||
"type": "separator" | ||
}, | ||
"--- DevTools": { | ||
"title": "Developer tools", | ||
"type": "separator" | ||
}, | ||
"tools": { | ||
"title": "Developer tools", | ||
"display": "children" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
title: Bridging guides | ||
lang: en-US | ||
description: Learn about bridging basics, custom bridges, data transmission between L1 and L2, and using the standard bridge in OP Stack. | ||
--- | ||
|
||
import { Card, Cards } from 'nextra/components' | ||
|
||
# Bridging guides | ||
|
||
Looking to build an application that sends ETH, tokens, or data between OP Mainnet and Ethereum? | ||
You'll find some useful guides and tutorials in this area of the docs. | ||
For instance, if you want to learn how to bridge a token from Ethereum to OP Mainnet (or vice versa!), you should check out the [Standard Token Bridge](bridging/standard-bridge). | ||
|
||
If you're looking for something more advanced, take a look at the guide on [sending data between L1 and L2](bridging/messaging). | ||
Contracts on one chain can trigger contract functions on the other chain, which is pretty cool! | ||
The Standard Token Bridge for OP Mainnet even uses this same message-passing infrastructure under the hood. | ||
|
||
<Cards> | ||
<Card title="Bridging basics" href="/app-developers/bridging/basics" icon={<img src="/img/icons/shapes.svg" />} /> | ||
<Card title="Standard bridge" href="/app-developers/bridging/standard-bridge" icon={<img src="/img/icons/shapes.svg" />} /> | ||
<Card title="Custom bridges" href="/app-developers/bridging/custom-bridge" icon={<img src="/img/icons/shapes.svg" />} /> | ||
<Card title="Sending data between L1 and L2" href="/app-developers/bridging/messaging" icon={<img src="/img/icons/shapes.svg" />} /> | ||
</Cards> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.