- 04 Feb, 2022 2 commits
-
-
Kelvin Fichter authored
-
smartcontracts authored
feat(sdk): implement message wait time estimation
-
- 03 Feb, 2022 5 commits
-
-
Kelvin Fichter authored
-
Matthew Slipper authored
integration-tests: Remove superfluous nightly env tests
-
smartcontracts authored
Fix Typo In Comment
-
Matthew Slipper authored
These aren't needed anymore now that we've released the Berlin HF on Kovan and nightly has been reset.
-
smartcontracts authored
feat(sdk): refactor into single messenger class
-
- 02 Feb, 2022 18 commits
-
-
Matthew Slipper authored
Extract core BSS logic into bss-core package
-
Conner Fromknecht authored
-
Conner Fromknecht authored
-
Conner Fromknecht authored
-
Matthew Slipper authored
fix: actually allow BSS log level to be set via flags
-
Matthew Slipper authored
fix: mimic BSS timestamp bug fix from #2093
-
bbayazit16 authored
crtiical -> critical
-
Conner Fromknecht authored
See https://github.com/ethereum-optimism/optimism/pull/2093 for more details.
-
Mark Tyneway authored
l2geth: bring back unsupported RPC methods
-
Kelvin Fichter authored
-
Conner Fromknecht authored
This was a known bug, but recently caught the reason in combing through the new copy in the specs repo. The old hack that auto defaulted to debug has been removed.
-
smartcontracts authored
Removed constants from data-transport-layer
-
Antonis Kogias authored
-
smartcontracts authored
feat(sdk): implement finalize message
-
smartcontracts authored
Depreciated unused variable from Integration tests
-
Matthew Slipper authored
-
Kelvin Fichter authored
-
Rishi Kumar Ray authored
removed unused variable removed-sequencer removed-sequencer references remove sequencer variable removed unused variable removed-sequencer removed-sequencer references remove sequencer variable
-
- 01 Feb, 2022 15 commits
-
-
smartcontracts authored
feat(sdk): introduce token bridge adapters
-
Mark Tyneway authored
test(integration): withdrawing a fake L2 token
-
Matthew Slipper authored
fix(bss,dtl): correctly submit and parse timestamp information for L1 to L2 txs
-
Matthew Slipper authored
-
Matthew Slipper authored
go/batch-submitter: Downgrade Alpine version
-
Matthew Slipper authored
Alpine 3.14 has an issue (https://wiki.alpinelinux.org/wiki/Release_Notes_for_Alpine_3.14.0#faccessat2) that prevents it from working on CircleCI at this time.
-
Matthew Slipper authored
integration-tests: Increase withdrawal timeout
-
Matthew Slipper authored
-
Kelvin Fichter authored
This commit adds support for ERC20 deposits and withdrawals by introducing the concept of token bridge adapters. This gives the SDK a standard interface for interacting with token bridges even though the bridges may each have slightly different internal logic.
-
Mark Tyneway authored
This commit makes sure that the DTL correctly returns timestamps using the new scheme when the first batch submitter hardfork block is activated. If the block is not activated, the DTL will operate as it previously did.
-
Mark Tyneway authored
Monotonicity violations were being reported in two locations, once in the sync service and then later in the worker. Because of recent updates in the sync service, there's never a case where monotonicity violations would not be caught first within the sync service. This code path only triggered within L1 syncing verifiers and caused issues with unintended timestamp manipulation.
-
Mark Tyneway authored
.env files were not being ignored by docker. This meant that any local environment variable changes you placed into an .env file would be pulled into docker images built inside of the ops package. Docker images should only be using environment variables as specified in their respective environment folders and should not copy over .env files.
-
Mark Tyneway authored
This commit fixes a bug in the batch submitter where not all timestamp information was being correctly rolled up. This has temporarily caused certain L1 syncing nodes to generate an incorrect state root. This PR will be followed by a second PR with an update to the DTL to guarantee that incorrect timestampd data can be corrected.
-
Mark Tyneway authored
Add verifier integration tests behind the env var `RUN_VERIFIER_TESTS`. Note that this depends on the batch submitter correctly submitting batches because the verifier syncs from the batches submitted by the batch submitter. The verifier is not enabled by default with the `docker-compose.yml` file. To enable it, the replicas field must be updated from `0` to `1`.
-
Mark Tyneway authored
l2geth: bring back unsupported RPC methods Previously, any RPC methods involving hot keys and signing by the node were disabled when the node ran with the OVM configured. This was to prevent users from attempting to use these methods against the live sequencer. Now that the infrastructure is more mature with `proxyd`, particular RPC requests can be routed appropriately and blocked at the infra level. Allowing these methods makes local development easier. This change cannot be adopted without coordination from infra providers, ensuring that they will block these methods at their infrastructure. Each optimism node has at least 1 key that is used to ensure block production is deterministic when running in clique mode. Also forward transactions to the sequencer when running as the verifier for the RPC endpoint `eth_sendTransaction`. This RPC utilizes a key that the node is managing.
-