Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
645a787
Add error checking
edfelten Oct 6, 2021
6e29b92
Add queue data structure and retryable queue in state
edfelten Oct 6, 2021
b1a4f93
Code for retryable queue and auto-deletion, not tested
edfelten Oct 6, 2021
3158d61
Ignore entire idea folder
hkalodner Oct 9, 2021
6bb5413
Use constants for db keys
hkalodner Oct 9, 2021
90209cf
Simplify naming
hkalodner Oct 9, 2021
99fd535
Split out storage segment
hkalodner Oct 9, 2021
f315412
Don't require API object for parsing
hkalodner Oct 9, 2021
2195ac6
Refactoring and simplification
hkalodner Oct 9, 2021
e985996
Remove weiOwedToAggregators
hkalodner Oct 9, 2021
1692e91
Turn deposits into tx type
hkalodner Oct 9, 2021
9803161
Merge branch 'new-arbos-api' into time-out-retryables
edfelten Oct 10, 2021
68ab2b8
Merge integration
edfelten Oct 10, 2021
858e101
Refactor arbos
hkalodner Oct 10, 2021
5130ce1
Include extra segment
hkalodner Oct 10, 2021
fe0b0b5
Update go-ethereum
hkalodner Oct 10, 2021
310c251
Merge branch 'new-arbos-api' into arbos-refactor
hkalodner Oct 10, 2021
97d5ef0
Use iterative block building system
hkalodner Oct 10, 2021
969e985
Implement cursor reading through message segment
hkalodner Oct 11, 2021
3fd05b5
Add comment
hkalodner Oct 11, 2021
29a12ac
Make basic node process
hkalodner Oct 11, 2021
e2c5805
Add arbos state to tx processor
hkalodner Oct 11, 2021
19a1926
Add new inbox reader abstraction including delayed messages
PlasmaPower Oct 12, 2021
af14244
Always end block after sequencer l2 message
PlasmaPower Oct 12, 2021
4b75e4c
Move inbox reader out of replay command
PlasmaPower Oct 12, 2021
1df8d20
Rename inbox reader to inbox multiplexer
PlasmaPower Oct 12, 2021
0b0ea8c
Address PR comments
PlasmaPower Oct 12, 2021
a83847c
Re-add compression for L2 messages
PlasmaPower Oct 12, 2021
f1fd4a0
Cap BytestringFromReader size
PlasmaPower Oct 12, 2021
d651cba
Fix rlp stream limits
PlasmaPower Oct 12, 2021
d4b2e57
Update geth submodule
PlasmaPower Oct 12, 2021
4e340ab
Merge branch 'block-creation' into time-out-retryables-merge
hkalodner Oct 12, 2021
3b61aa9
Merge pull request #7 from OffchainLabs/time-out-retryables-merge
edfelten Oct 12, 2021
cde0b9d
Clean up expired retryables
edfelten Oct 13, 2021
d1d53d7
Refactor retryables and add cleanup of expired ones
edfelten Oct 13, 2021
e3088ba
Add gas pool and gas pricing
edfelten Oct 13, 2021
0e570bd
Move gas use notify to tx end hook
edfelten Oct 13, 2021
7b1324c
Add virtual storage (salted KVS)
edfelten Oct 13, 2021
a54230f
Keep list of valid retryables to protect against malicious ids
edfelten Oct 13, 2021
92983c5
Address code review comments
edfelten Oct 14, 2021
7949c92
Address code review comments
edfelten Oct 14, 2021
cace5bc
Update gas pricing in block finalizer
edfelten Oct 14, 2021
b319945
Advance inbox after message parsing error
PlasmaPower Oct 14, 2021
3ec93a2
Merge remote-tracking branch 'origin/clean-up-dead-retryables' into g…
edfelten Oct 17, 2021
9ccaa1a
Merge integration
edfelten Oct 17, 2021
a6b6b92
Comment empty block behavior and add error check
PlasmaPower Oct 18, 2021
2ef3987
Merge remote-tracking branch 'origin/inbox-reader' into gas-pricing
edfelten Oct 18, 2021
ffef2a9
Merge integration
edfelten Oct 18, 2021
ac27997
Merge pull request #9 from OffchainLabs/gas-pricing
PlasmaPower Oct 18, 2021
073de13
Merge pull request #8 from OffchainLabs/clean-up-dead-retryables
PlasmaPower Oct 18, 2021
ab6396d
Merge pull request #5 from OffchainLabs/block-creation
PlasmaPower Oct 18, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
record
replay
/record
/cmd/record/record
/replay
/cmd/replay/replay
/*.bin
.idea
cmd/node/data
cmd/node/node
8 changes: 0 additions & 8 deletions .idea/.gitignore

This file was deleted.

65 changes: 0 additions & 65 deletions arbos/api.go

This file was deleted.

175 changes: 0 additions & 175 deletions arbos/apiimpl.go

This file was deleted.

Loading