Skip to content

Commit 4fd4b0c

Browse files
MadelineAuwesfloyd
andauthored
Added brief concept topics for EigenLayer core and middleware contracts (#421)
Co-authored-by: Wes Floyd <[email protected]>
1 parent 1684eb2 commit 4fd4b0c

File tree

3 files changed

+37
-0
lines changed

3 files changed

+37
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"position": 1,
3+
"label": "EigenLayer Contracts"
4+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
sidebar_position: 1
3+
title: EigenLayer Core Contracts
4+
---
5+
6+
The EigenLayer core contracts are the set of contracts that implement the EigenLayer protocol. The EigenLayer protocol includes
7+
Staking, Operations, and AVS registration and allocation. The contracts for an AVS interact with the EigenLayer contracts.
8+
9+
We recommend new AVS developers use the [EigenLayer middleware contracts](middleware-contracts.md) as the higher level interface
10+
to the core contracts.
11+
12+
The EigenLayer core contracts are documented in the [eigenlayer-contracts](https://github.com/Layr-Labs/eigenlayer-contracts) repository. The core contracts include:
13+
* StrategyManager
14+
* DelegationManager
15+
* AVSDirectory
16+
* Slasher
17+
* RewardsCoordinator.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
sidebar_position: 1
3+
title: EigenLayer Middleware Contracts
4+
---
5+
6+
The EigenLayer middleware contracts are higher level interfaces to the [EigenLayer core contracts](core-contracts.md).
7+
The middleware contracts can be:
8+
* Deployed as is. The exception is the ServiceManager contract used to register and deregister an AVS with EigenLayer.
9+
* Modified to implement logic specific to the AVS before deploying
10+
* Not used. In this case, the interfaces present in the middleware contracts must be implemented in the AVS contracts.
11+
12+
We recommend new AVS developers use the middleware contracts as the higher level interface
13+
to the core contracts.
14+
15+
The middleware contracts are documented in the [eigenlayer-middleware](https://github.com/Layr-Labs/eigenlayer-middleware) repository.
16+
The ServiceManagerBase contract is the reference implementation for the onchain registration and deregistration that each AVS must have.

0 commit comments

Comments
 (0)