forked from compound-finance/comet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
L2 Configurator Diagram (compound-finance#560)
* L2 Configurator Diagram * add L2Timelock * update names
- Loading branch information
1 parent
99c8907
commit 5540825
Showing
1 changed file
with
35 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
@startuml | ||
|
||
rectangle "L1" { | ||
rectangle Governor | ||
rectangle Timelock as "Governance Timelock" | ||
} | ||
|
||
rectangle "L2" { | ||
rectangle BridgeReceiver | ||
rectangle ProxyAdmin | ||
rectangle ConfiguratorProxy | ||
rectangle ConfiguratorImpl | ||
rectangle CometFactory | ||
rectangle CometProxy | ||
rectangle CometImpl | ||
rectangle Bulker | ||
rectangle L2Timelock as "Local Timelock" | ||
} | ||
|
||
Governor --> Timelock : admin | ||
Timelock --> BridgeReceiver : admin | ||
BridgeReceiver --> L2Timelock | ||
L2Timelock --> ProxyAdmin : admin | ||
L2Timelock --> Bulker : admin | ||
ProxyAdmin --> ConfiguratorProxy : admin | ||
ProxyAdmin --> CometProxy : admin | ||
ConfiguratorProxy --> ConfiguratorImpl : impl | ||
ConfiguratorImpl --> CometFactory | ||
CometFactory ..> CometImpl : makes | ||
CometProxy --> CometImpl : impl | ||
Bulker --> CometProxy | ||
L2Timelock ~~> ConfiguratorImpl : governor | ||
L2Timelock ~~> CometImpl : governor | ||
|
||
@enduml |