Skip to content

Commit ca3d9a5

Browse files
authored
A simple structure for the layers of the project (#66)
1 parent 095992e commit ca3d9a5

File tree

5 files changed

+27
-3
lines changed

5 files changed

+27
-3
lines changed

src/README.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Contracts
2+
3+
This directory contains the smart contracts for the stack.
4+
The most important contracts are in the `protocol` directory. These are the core contracts and interfaces that are central to the functionality of any rollup that uses the stack.
5+
Contracts in other directories are not part of the core protocol, but still provide useful functionality that most rollups will want to use.
6+
7+
## Project Structure
8+
9+
```
10+
src/
11+
├── blobs/ --> Common registry to store blob references
12+
├── bridges/ --> Bridge implementations for common token standards
13+
├── libs/ --> Utility libraries used by other contracts in this repository or that applications may use
14+
├── protocol/ --> Core contracts and interfaces
15+
│ ├── taiko_alethia/ --> Opinionated implementations for the Taiko Alethia rollup
16+
├── vendor/ --> Contracts and libraries from other projects that we use
17+
```

src/protocol/IInbox.sol

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// SPDX-License-Identifier: MIT
2+
pragma solidity ^0.8.28;
3+
4+
interface IInbox {
5+
function publish(uint256 nBlobs, uint64 anchorBlockId) external;
6+
}
File renamed without changes.

src/protocol/taiko_alethia/TaikoInbox.sol

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ import {IBlobRefRegistry} from "../../blobs/IBlobRefRegistry.sol";
55

66
import {IPublicationFeed} from "../IPublicationFeed.sol";
77

8-
import {IDelayedInclusionStore} from "./IDelayedInclusionStore.sol";
9-
import {ILookahead} from "./ILookahead.sol";
8+
import {IDelayedInclusionStore} from "../IDelayedInclusionStore.sol";
9+
import {IInbox} from "../IInbox.sol";
10+
import {ILookahead} from "../ILookahead.sol";
1011

11-
contract TaikoInbox {
12+
contract TaikoInbox is IInbox {
1213
struct Metadata {
1314
uint256 anchorBlockId;
1415
bytes32 anchorBlockHash;

0 commit comments

Comments
 (0)