Skip to content

Commit

Permalink
Update contract list
Browse files Browse the repository at this point in the history
  • Loading branch information
ermyas committed Jan 2, 2024
1 parent eff7950 commit f9f67e4
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,11 @@ All code changes must be thoroughly tested. Please ensure that your tests cover
## Contracts
```
contracts
src
├── MultiBridgeMessageReceiver.sol
├── MultiBridgeMessageSender.sol
├── adapters
│   ├── BaseReceiverAdapter.sol
│   ├── BaseSenderAdapter.sol
│   ├── axelar
│   │   ├── AxelarReceiverAdapter.sol
Expand All @@ -122,19 +123,24 @@ contracts
│   └── WormholeSenderAdapter.sol
├── controllers
│   ├── GAC.sol
│   └── GovernanceTimelock.sol
│   ├── GovernanceTimelock.sol
│   ├── MessageReceiverGAC.sol
│   └── MessageSenderGAC.sol
├── interfaces
│   ├── EIP5164
│   │   ├── ExecutorAware.sol
│   │   ├── MessageDispatcher.sol
│   │   ├── MessageExecutor.sol
│   │   └── SingleMessageDispatcher.sol
│   ├── IGAC.sol
│   ├── IGovernanceTimelock.sol
│   ├── IMessageReceiverAdapter.sol
│   ├── IMessageSenderAdapter.sol
│   └── IMultiBridgeMessageReceiver.sol
│   ├── IMultiBridgeMessageReceiver.sol
│   ├── adapters
│   │   ├── IMessageReceiverAdapter.sol
│   │   └── IMessageSenderAdapter.sol
│   └── controllers
│   ├── IGAC.sol
│   └── IGovernanceTimelock.sol
└── libraries
├── EIP5164
│   └── ExecutorAware.sol
├── Error.sol
├── Message.sol
├── TypeCasts.sol
Expand Down

0 comments on commit f9f67e4

Please sign in to comment.