-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy path2022-01-Modularity.iuml
More file actions
35 lines (30 loc) · 937 Bytes
/
2022-01-Modularity.iuml
File metadata and controls
35 lines (30 loc) · 937 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@startuml
class Mars
Mars : new (behaviors: MarsBehaviors)
interface MarsBehaviors
MarsBehaviors : networkState: NetworkState
MarsBehaviors : contractCreator: ContractCreator
MarsBehaviors : transactionDispatcher: TransactionDispatcher
MarsBehaviors : ...
abstract NetworkState
class FileNetworkState
NetworkState <|-- FileNetworkState
abstract ContractVerifier
class EtherscanContractVerifier
ContractVerifier <|-- EtherscanContractVerifier
abstract ContractCreator
class BasicContractCreator
class Create2ContractCreator
ContractCreator <|-- BasicContractCreator
ContractCreator <|-- Create2ContractCreator
abstract TransactionDispatcher
class InstantTransactionDispatcher
class MultisigTransactionDispatcher
TransactionDispatcher <|-- InstantTransactionDispatcher
TransactionDispatcher <|-- MultisigTransactionDispatcher
interface Proxy
class CustomProxy
class Eip1967Proxy
Proxy <|-- CustomProxy
Proxy <|-- Eip1967Proxy
@enduml