Fork of plugeth with any needed changes for statediff plugin
Go to file
2023-10-24 09:29:09 -05:00
.circleci cirlce ci update to go 1.20 2023-09-15 07:08:02 -07:00
.github
accounts core, accounts, eth, trie: handle genesis state missing (#28171) 2023-09-28 10:00:53 +03:00
beacon beacon/engine: add shouldOverrideBuilder to payload envelope (#28029) 2023-09-04 09:26:13 -04:00
build build: upgrade -dlgo version to Go 1.21.1 (#28113) 2023-09-14 10:34:52 +03:00
cmd Added IsEIP1559() hook 2023-10-16 15:33:22 -07:00
common log: avoid stack lookups when not needed/used (#28069) 2023-09-07 08:48:49 -04:00
consensus Added IsEIP1559() hook 2023-10-16 15:33:22 -07:00
console console: add cleanup to avoid leaks in newTester (#27695) 2023-07-11 21:27:48 +02:00
core Use EIP160 case instead of EIP158 2023-10-24 09:29:09 -05:00
crypto crypto/bn256: eliminate dead store (#27944) 2023-08-23 21:26:30 +02:00
docs
eth Merge commit 'dc34fe829' into merge/geth-v1.13.2 2023-09-28 08:41:54 -07:00
ethclient ethclient: fix BlockReceipts parameter encoding (#28087) 2023-09-25 23:24:20 +02:00
ethdb core/rawdb, ethdb/pebble: avoid fsync db in tests (#27836) 2023-08-23 20:43:55 +02:00
ethstats
event
graphql graphql: add 4844 blob fields (#27963) 2023-09-14 10:23:16 +02:00
internal internal/ethapi: eth_call block parameter is optional (#28165) 2023-09-26 14:22:11 +02:00
les les: use new atomic types (#27856) 2023-08-23 21:19:04 +02:00
light all: use rlp.DecodeBytes instead of rlp.Decode where possible (#27994) 2023-08-24 11:47:42 +03:00
log internal, log: remove code for old unsupported go-versions (#28090) 2023-09-13 01:42:32 -04:00
metrics metrics: add support for enabling metrics from env vars (#28118) 2023-09-14 13:56:06 +03:00
miner core, accounts, eth, trie: handle genesis state missing (#28171) 2023-09-28 10:00:53 +03:00
node node: increase batch limits for auth rpc API (#27924) 2023-08-16 15:26:49 +02:00
p2p all: use rlp.DecodeBytes instead of rlp.Decode where possible (#27994) 2023-08-24 11:47:42 +03:00
params Syntax fix 2023-10-23 12:38:48 -05:00
plugins Added addBalance to wrapped state db 2023-10-10 14:32:52 -07:00
rlp rlp/rlpgen: remove build tag (#28106) 2023-09-14 12:28:40 +02:00
rpc Merge commit '7371b3817' into merge/geth-v1.13.0 2023-09-12 12:34:24 -07:00
signer all: use rlp.DecodeBytes instead of rlp.Decode where possible (#27994) 2023-08-24 11:47:42 +03:00
swarm
tests tests: use 'sender' in state tests if present (#28023) 2023-08-29 04:36:10 +02:00
trie Merge commit 'dc34fe829' into merge/geth-v1.13.2 2023-09-28 08:41:54 -07:00
.dockerignore
.gitattributes
.gitignore
.gitmodules
.golangci.yml
.mailmap
.travis.yml travis: get rid of old useless GO111MODULE directives (#27991) 2023-08-23 18:54:30 +03:00
appveyor.yml
AUTHORS
circle.yml
COPYING
COPYING.LESSER
Dockerfile Merge commit '7371b3817' into merge/geth-v1.13.0 2023-09-12 12:34:24 -07:00
Dockerfile.alltools
go.mod Added forkIDs plugin hook 2023-10-10 15:26:47 -07:00
go.sum Added forkIDs plugin hook 2023-10-10 15:26:47 -07:00
interfaces.go
Makefile travis: get rid of old useless GO111MODULE directives (#27991) 2023-08-23 18:54:30 +03:00
oss-fuzz.sh
README.md Added pull request test requirements to README 2023-09-10 13:50:16 -07:00
SECURITY.md
slack-post.sh

PluGeth

PluGeth is a fork of the Go Ethereum Client (Geth) that implements a plugin architecture, allowing developers to extend Geth's capabilities in a number of different ways using plugins, rather than having to create additional, new forks of Geth.

Documentation can be found here.

Design Goals

The upstream Geth client exists primarily to serve as a client for the Ethereum mainnet, though it also supports a number of popular testnets. Supporting the Ethereum mainnet is a big enough challenge in its own right that the Geth team generally avoids changes to support other networks, or to provide features only a small handful of users would be interested in.

The result is that many projects have forked Geth. Some implement their own consensus protocols or alter the behavior of the EVM to support other networks. Others are designed to extract information from the Ethereum mainnet in ways the standard Geth client does not support.

PluGeth aims to provide a single Geth fork that developers can choose to extend rather than forking the Geth project. Out of the box, PluGeth behaves exactly like upstream Geth, but by installing plugins written in Golang, developers can extend its functionality in a wide variety of way.

Submitting Pull Requests

We are eager to include contributions from the community into the project. We ask that pull requests which include new features to be covered by our test plugin found in: /plugins/test-plugin. The test design and instructions for use are documented there. If further assistance is needed please get in touch with us.

Contact Us

If you're trying to do something that isn't supported by the current plugin system, Reach out to us on Discord and we'll help you figure out how to make it work.

System Requirements

System requirements will vary depending on which network you are connecting to. On the Ethereum mainnet, you should have at least 8 GB RAM, 2 CPUs, and 350 GB of SSD disks.

PluGeth relies on Golang's Plugin implementation, which is only supported on Linux, FreeBSD, and macOS. Windows support is unlikely to be added in the foreseeable future.

Licensing Considerations

The Geth codebase is licensed under the LGPL. By linking with Geth, you have an obligation to enable anyone you provide your plugin binaries to run against their own modified versions of Geth. Because of how Golang plugins work running against updated versions of Geth may require recompiling the plugin.

If you plan to license your plugin under the LGPL or a more permissive license, you should be able to meet these requirements. If you plan to use your plugin privately without distributing it, you should be fine. If you plan to release your plugin without making the source available, you may find yourself in violation of Geth's license unless you can provide a way to relink it against more recent versions of Geth.