Commit Graph

79 Commits

Author SHA1 Message Date
philip-morlier
2f0a270ff2 cgo adjustments to avoid compile time errors 2023-03-24 09:41:58 -07:00
Austin Roberts
9127848510 Add ommitted consensus package 2023-03-24 09:20:36 -05:00
Austin Roberts
2c24710d5d Updates for consensus engine injection 2023-03-23 16:37:02 -05:00
Philip Morlier
c6e1ed0c2b
Merge pull request #19 from openrelayxyz/hardfork/shanghai
Add withdrawals to Block
2023-02-23 08:26:24 -08:00
Philip Morlier
1014e826a2
Merge pull request #18 from openrelayxyz/merge/geth-v1.11.0
type and dependency adjustments to match geth v1.11.0
2023-02-21 15:27:35 -08:00
philip-morlier
0a85922a7a reverted BlockContext.Time to big.Int to preserve downstream plugins 2023-02-20 12:09:44 -08:00
philip-morlier
80b7d5ab57 Tracer interface restored to previous implementation to preserve tracer plugins. 2023-02-20 10:53:26 -08:00
philip-morlier
be5ed30749 type and dependency adjustments to match geth v1.11.0 2023-02-16 13:37:00 -08:00
Austin Roberts
920ed764db Add withdrawals to Block
Includes:
* restricted/types/withdrawal.go
* Additions to restricted/types/blocks.go

Note that I have not currently included withdrawal_gen.go, which
does not appear on the surface to be necessar,y but that may
require adjustment if testing shows otherwise.
2023-01-26 16:09:39 -06:00
Philip Morlier
06632b4360
Merge pull request #17 from openrelayxyz/feature/bor-cli-shim
interface added to core/interface to enable passing through of cli.v2…
2022-12-07 18:12:56 -08:00
philip-morlier
de66fbbc17 interface added to core/interface to enable passing through of cli.v2 methods into plugeth in order to enable polygon's dependency on cli.v1. 2022-12-07 17:59:37 -08:00
Austin Roberts
7fdf75482b Merge remote-tracking branch 'origin/master' 2022-08-25 14:53:10 -05:00
Austin Roberts
7eb3dbe7eb Align version numbers with latest geth 2022-08-25 14:44:46 -05:00
Philip Morlier
1da4bb0433
Merge pull request #15 from openrelayxyz/feature/update-to-go1.18
Updating to go1.18
2022-08-01 13:39:45 -07:00
philip-morlier
1a41acb54f Updating to go1.18 2022-08-01 13:09:43 -07:00
Austin Roberts
898e32c2d6 Upgrade dependencies to align with Geth 2022-06-15 09:49:31 -05:00
Philip Morlier
ec1b7edc32
Merge pull request #14 from openrelayxyz/feature/plugin-shutdown
Give plugins access to node.Close()
2022-05-16 09:03:55 -07:00
Austin Roberts
b36dcc7b53 Give plugins access to node.Close()
Prior to this update, plugins could shutdown Geth by panicking, but
had no mechanism to shutdown cleanly. Simply exposing the node.Close()
function (which already exists on the Node struct), plugins should
be able to initiate a clean shutdown.

In general, Plugins should make sparing use of this capability, but
in light of the fact that they were able to do unclean shutdowns
via a panic(), we can't avoid allowing them to stop Geth, and allowing
them to do so cleanly seems better than relying on panics.
2022-05-16 10:56:49 -05:00
Austin Roberts
05e3652c6c Update version numbers to align with PluGeth 2022-04-05 13:13:21 -05:00
Philip Morlier
a0bb001dd1
Merge pull request #13 from openrelayxyz/feature/pretracer
Initial commit of changes made to interface in service of pretracer t…
2022-02-24 15:43:02 -08:00
philip-morlier
04923f1972 Initial commit of changes made to interface in service of pretracer type. 2022-02-15 16:54:39 -08:00
Philip Morlier
eea0ccd0ae
Merge pull request #12 from openrelayxyz/pre-cardinal-docs-update
Corrections to documentation.
2022-02-14 13:15:56 -05:00
philip-morlier
28725419ac Corrections to documentation. 2022-02-14 10:15:11 -08:00
Philip Morlier
3e6e60003b
Merge pull request #11 from openrelayxyz/pre-cardinal-docs-update
Pre cardinal docs update
2022-02-14 13:06:50 -05:00
philip-morlier
773a47597c Further updates to documentation 2022-02-14 10:02:35 -08:00
philip-morlier
1c6482a233 Updated docs for cardinal release 2022-02-10 15:18:33 -08:00
Philip Morlier
1b25f57d6c
Merge pull request #10 from openrelayxyz/feature/adding_blockcontext_object
Changes made in service of adding block context object interface to i…
2022-02-09 16:41:27 -05:00
philip-morlier
60db12bbe7 Initial commit of pre caridnal documentation updates. 2022-02-09 12:46:40 -08:00
philip-morlier
6f1c546bb3 Changes made in service of adding block context object interface to interfaces. 2022-02-02 20:48:25 -08:00
Philip Morlier
393e2167a2
Merge pull request #9 from openrelayxyz/bugfix/unmarshal-panic
Appending unmarshalJSON methods to avoid panic if mal-formed arguments are passed.
2022-01-27 14:14:40 -05:00
philip-morlier
ff5d2e8030 Appending unmarshalJSON methods to avoid panic if mal-formed arguments are passed. 2022-01-27 11:12:56 -08:00
AusIV
44c7e0e589
Merge pull request #8 from openrelayxyz/feature/plugeth-parity-vmtrace
Updated core/interface.go to include code(), and input() fields on co…
2022-01-14 15:29:02 -06:00
philip-morlier
b27029cd43 Updated core/interface.go to include code(), and input() fields on contract object 2022-01-14 13:25:37 -08:00
Philip Morlier
9048547fd9
Merge pull request #7 from openrelayxyz/feature/v1.10.14_updates
Updates to Dwonloader.Progress to reflect geth v1.10.14 changes.
2021-12-27 18:13:18 -05:00
philip-morlier
d395f304f2 Updates to Dwonloader.Progress to reflect geth v1.10.14 changes. 2021-12-27 15:10:33 -08:00
AusIV
0ceb118544
Merge pull request #6 from openrelayxyz/feature/blockTracer
Changes to core/interface and addition of opcodes also in service of …
2021-11-11 09:24:55 -06:00
philip-morlier
a1532d773b Changes to core/interface and addition of opcodes also in service of block tracer 2021-11-05 17:08:42 -07:00
AusIV
c180779400
Merge pull request #5 from openrelayxyz/feature/tracer-capture-enter
updated interface to relfect changes to tracer interface
2021-10-22 14:51:24 -05:00
philip-morlier
492f77eaa0 updated interface to relfect changes to tracer interface 2021-10-20 08:37:34 -07:00
philip-morlier
25a7f188e8
Merge pull request #4 from openrelayxyz/documentation
Documentation
2021-10-18 16:41:22 -07:00
philip-morlier
11043bd4a8
Most recent docs update before release 2021-10-18 16:25:33 -07:00
philip-morlier
63df231981
changes to install page 2021-10-18 13:13:38 -07:00
philip-morlier
f5f8fee06f
removing core/opcodes 2021-10-17 10:42:24 -07:00
Austin Roberts
9c6b92c284 Update today, add hook writing guide 2021-10-15 15:27:20 -05:00
Austin Roberts
322eb88b8c Remove docs build directory 2021-10-15 14:56:12 -05:00
philip-morlier
8235ccf361
Deleting redundant documentation directory 2021-10-14 16:51:55 -07:00
philip-morlier
816fa6ef71
Merge pull request #3 from openrelayxyz/feature/isSynced-improvement
Feature/is synced improvement
2021-10-08 14:05:36 -07:00
philip-morlier
414de49dac Yet another reset 2021-10-08 14:04:39 -07:00
philip-morlier
708c7643ee
Moving Austin's work into most current version 2021-10-05 15:43:09 -07:00
Austin Roberts
3af8a5be89 Merge remote-tracking branch 'origin/documentation' into documentation 2021-10-04 13:56:54 -05:00