Skip to content

Commit 48c54d0

Browse files
committed
add note about proxy
reword style up up
1 parent 44e032b commit 48c54d0

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

gas-reports/report.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,8 @@ To provide a comparison point, we implemented tests that mirror typical rollup o
6363

6464
```solidity
6565
66-
uint256 numPublications = 20;
67-
6866
// Pre-populate publications to simulate active rollup state
69-
ProposeMultiplePublications109)
67+
_publishMultiplePublications(10);
7068
7169
// Measure 10 publications
7270
uint256 numPublications = 20;
@@ -139,7 +137,12 @@ It is worth noting this is somewhat consistent with taikos [gas analysis](https:
139137
- Taiko data: Real on-chain transactions with actual network conditions
140138
- Our data: Clinical test environment with idealised conditions using foundry
141139

142-
2. **Limited Sample Size**
140+
2. Architectural Differences
141+
- Taiko's inbox uses an upgradeable proxy pattern (DELEGATECALL), adding a gas overhead per call
142+
- Our minimal inbox is currently a direct implementation without proxy however we will most likely add one later
143+
- This represents a 'structural' gas cost unrelated to the core logic differences between proposeBatch and publish
144+
145+
3. **Limited Sample Size**
143146
- Only ~20 most recent transactions analysed
144147
- Longer-term patterns and edge cases not captured
145148

0 commit comments

Comments
 (0)