Skip to content

Commit 883bb44

Browse files
adding Reactive to Linea docs (#1246)
* adding Reactive to Linea docs * Fix SVG to prevent build error, add to sidebar * case issue edits --------- Co-authored-by: jlwllmr <[email protected]>
1 parent 19f35eb commit 883bb44

File tree

5 files changed

+68
-1
lines changed

5 files changed

+68
-1
lines changed

docs/get-started/how-to/run-a-node/beta-v4-migration.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Beta v4.0 migration guide
33
description: Instructions for running Maru alongside an execution layer client
4-
image: /img/socialCards/beta-v4-migration-guide.jpg
4+
image: /img/socialCards/beta-v40-migration-guide.jpg
55
---
66

77
Linea Beta v4.0 is a **mandatory hard fork** introducing **Maru**, the new consensus layer (CL).
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
title: Reactive Network
3+
description: Learn how to use the Reactive Network to create reactive dApps
4+
image: /img/socialCards/reactive-network.jpg
5+
---
6+
7+
<div class="center-container">
8+
<div className="img-large">
9+
<img
10+
src="/img/get_started/tooling/cross_chain/reactive/reactive.svg"
11+
alt="Reactive Network logo"
12+
/>
13+
</div>
14+
</div>
15+
16+
Reactive Network is an EVM-compatible execution layer designed for decentralized automation across blockchains. It introduces reactive contracts, a new type of smart contract that operates using inversion of control, executing based on event logs from other chains rather than direct user interaction.
17+
18+
Unlike traditional contracts that rely on EOAs to initiate function calls, reactive contracts respond to event logs emitted by contracts on other chains. These contracts can independently evaluate conditions and initiate outbound messages or state changes without requiring user transactions.
19+
20+
Reactive Network supports fast and cost-efficient execution through a parallelized EVM implementation, optimized for processing large volumes of event-driven computation.
21+
22+
## Reactive contracts
23+
24+
Reactive contracts are standard Solidity contracts deployed on the Reactive Network that follow a specific execution pattern. Instead of exposing functions for users to call directly, these contracts are configurable to:
25+
26+
- Monitor specified chains, contracts, and event signatures
27+
- Receive and process event logs emitted on those chains
28+
- Execute logic conditionally based on the contents of the received logs
29+
- Initiate transactions or cross-chain messages in response to valid triggers
30+
31+
Each Reactive contract defines a subscription-like configuration for the event it listens to. When a matching log is detected, the contract is executed with structured input data derived from the event, allowing it to perform actions such as:
32+
33+
- Writing to the internal state
34+
- Sending data to another chain via Reactive's cross-chain infrastructure
35+
- Triggering domain-specific workflows (e.g., settlements, governance updates, etc.)
36+
37+
Reactive contracts are compatible with the standard EVM toolchain and can be written in Solidity using custom ABIs defined for event-based execution. Execution is trust-minimized: the logs are verifiable, emitted on origin chains, and the Reactive Network enforces that only matching, authentic events trigger contract logic.
38+
39+
## Resources and contacts
40+
41+
- [Reactive Docs](https://dev.reactive.network/)
42+
- [Telegram](https://t.me/reactivedevs)
43+
- [GitHub](https://github.com/Reactive-Network)
44+
- [X (Twitter)](https://x.com/0xReactive)
45+
- [Discord](https://discord.com/invite/SaZAfkgZhj)
46+
- [Blog](https://blog.reactive.network/)

sidebars.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ const sidebars = {
190190
"get-started/tooling/cross-chain/ccip",
191191
"get-started/tooling/cross-chain/ccip-read",
192192
"get-started/tooling/cross-chain/layerzero",
193+
"get-started/tooling/cross-chain/reactive-network",
193194
"get-started/tooling/cross-chain/shortcuts",
194195
"get-started/tooling/cross-chain/thirdweb",
195196
],
704 KB
Loading

static/img/get_started/tooling/cross_chain/reactive/reactive.svg

Lines changed: 20 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)