Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/get-started/how-to/run-a-node/beta-v4-migration.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Beta v4.0 migration guide
description: Instructions for running Maru alongside an execution layer client
image: /img/socialCards/beta-v4-migration-guide.jpg
image: /img/socialCards/beta-v40-migration-guide.jpg
---

Linea Beta v4.0 is a **mandatory hard fork** introducing **Maru**, the new consensus layer (CL).
Expand Down
46 changes: 46 additions & 0 deletions docs/get-started/tooling/cross-chain/reactive-network.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
title: Reactive Network
description: Learn how to use the Reactive Network to create reactive dApps
image: /img/socialCards/reactive-network.jpg
---

<div class="center-container">
<div className="img-large">
<img
src="/img/get_started/tooling/cross_chain/reactive/reactive.svg"
alt="Reactive Network logo"
/>
</div>
</div>

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.

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.

Reactive Network supports fast and cost-efficient execution through a parallelized EVM implementation, optimized for processing large volumes of event-driven computation.

## Reactive contracts

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:

- Monitor specified chains, contracts, and event signatures
- Receive and process event logs emitted on those chains
- Execute logic conditionally based on the contents of the received logs
- Initiate transactions or cross-chain messages in response to valid triggers

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:

- Writing to the internal state
- Sending data to another chain via Reactive's cross-chain infrastructure
- Triggering domain-specific workflows (e.g., settlements, governance updates, etc.)

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.

## Resources and contacts

- [Reactive Docs](https://dev.reactive.network/)
- [Telegram](https://t.me/reactivedevs)
- [GitHub](https://github.com/Reactive-Network)
- [X (Twitter)](https://x.com/0xReactive)
- [Discord](https://discord.com/invite/SaZAfkgZhj)
- [Blog](https://blog.reactive.network/)
1 change: 1 addition & 0 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ const sidebars = {
"get-started/tooling/cross-chain/ccip",
"get-started/tooling/cross-chain/ccip-read",
"get-started/tooling/cross-chain/layerzero",
"get-started/tooling/cross-chain/reactive-network",
"get-started/tooling/cross-chain/shortcuts",
"get-started/tooling/cross-chain/thirdweb",
],
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions static/img/get_started/tooling/cross_chain/reactive/reactive.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.