- 13 Aug, 2021 9 commits
-
-
Mark Tyneway authored
l2geth: allow RPC transactions to go to `address(0)`
-
Mark Tyneway authored
l2geth: removes the id from the evm
-
Mark Tyneway authored
Version Packages
-
github-actions[bot] authored
-
Mark Tyneway authored
Merge develop into master.
-
Mark Tyneway authored
l2geth: small style fix to the state manager precompile
-
Mark Tyneway authored
l2geth: delete pending tasks in miner
-
Mark Tyneway authored
This PR deletes pending tasks in the miner codepath that result in a buildup of state objects. The pending tasks will grow over time without deleting them, resulting in a memory leak.
-
Mark Tyneway authored
Updates the style to encapsulate the `err` so that it doesn't need to reassign `err` and can instead keep the `err` in its own scope.
-
- 11 Aug, 2021 3 commits
-
-
Mark Tyneway authored
When the custom batch serialization was being used instead of RLP, a transaction being sent to `address(0)` was not allowed because that meant that it was a contract creation because there is no abi encoding for `nil`. To prevent collisions, transactions sent via RPC to `address(0)` were banned. Now the RLP transactions are being used, this check can be removed. It helps to reduce the diff from upstream geth.
-
Kevin Ho authored
Faster development node (download instead of build)
-
Ori Pomerantz authored
Replacement to #1314
-
- 10 Aug, 2021 5 commits
-
-
Mark Tyneway authored
l2geth: remove diffdb
-
Mark Tyneway authored
l2geth: remove unnecessary reflect
-
Mark Tyneway authored
l2geth: small changes to miner codepath
-
Mark Tyneway authored
l2geth: small syntax fix in the syncservice
-
Mark Tyneway authored
This PR removes the diffdb as it is not currently being used. Removing the diffdb is meant to help with resource usage of the node.
-
- 07 Aug, 2021 9 commits
-
-
Mark Tyneway authored
Very minor fix to the syncservice
-
Mark Tyneway authored
These are minor changes to the miner codepath.
-
Mark Tyneway authored
l2geth: remove layer of indirection with state manager
-
Kevin Ho authored
Add hardhat task for withdrawing ETH fees
-
Mark Tyneway authored
There was a usage of `refect` that was not required. This PR removes its usage so that the code is simplified.
-
Mark Tyneway authored
This PR removes the assignment of a pointer to the state manager abi and just directly uses it instead. There is an assumption that the state manager abi exists, but this check happens at startup time, when the abis are pulled from the state dump.
-
Mark Tyneway authored
The `id` field was added to the EVM to allow for the logs to make sense during concurrent calls to EVM execution. It adds a diff and is not required now that `eth_call` is no longer logged.
-
Mark Tyneway authored
l2geth: update the start script to work with regenesis 0.4.0
-
Kevin Ho authored
-
- 06 Aug, 2021 3 commits
-
-
Mark Tyneway authored
Adding k8s api client to op_exporter
-
Mark Tyneway authored
`scripts/start.sh` was never updated to work with the latest regenesis, this should update it so that it does. I confirmed that the genesis state roots do match when starting a node using this script and mainnet.
-
Ben Wilson authored
Update health handler to return version Remove dead code, continue, return nil Added ticker for k8s loop
-
- 05 Aug, 2021 6 commits
-
-
Karl Floersch authored
fix: estimate gas when pending tx in mempool
-
Karl Floersch authored
-
Karl Floersch authored
-
Karl Floersch authored
style: address pr feedback
-
Mark Tyneway authored
chore(deps): bump tar from 4.4.13 to 4.4.15
-
Mark Tyneway authored
contracts: add hardhat task for whitelisting addresses
-
- 04 Aug, 2021 2 commits
-
-
Mark Tyneway authored
This PR adds a hardhat task for whitelisting addresses. It can be used like so: ``` $ npx hardhat whitelist --address 0x.. --use-ledger true --contracts-rpc-url https://... ```
-
dependabot[bot] authored
Bumps [tar](https://github.com/npm/node-tar) from 4.4.13 to 4.4.15. - [Release notes](https://github.com/npm/node-tar/releases) - [Changelog](https://github.com/npm/node-tar/blob/main/CHANGELOG.md) - [Commits](https://github.com/npm/node-tar/compare/v4.4.13...v4.4.15) --- updated-dependencies: - dependency-name: tar dependency-type: indirect ... Signed-off-by:
dependabot[bot] <support@github.com>
-
- 02 Aug, 2021 1 commit
-
-
Annie Ke authored
feat: migrate and refactor replica-healthcheck from op-replica
-
- 31 Jul, 2021 2 commits
-
-
Annie Ke authored
-
Mark Tyneway authored
l2geth: make block hashes deterministic
-