diff options
author | Stephen Buttolph <[email protected]> | 2020-04-16 11:38:38 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2020-04-16 11:38:38 -0400 |
commit | 6a76dcccc5c5d9686b35595d3f9ab3a6cefd0446 (patch) | |
tree | 24ef681a6c846ba58ce2b8db2fa436c10404172b /plugin/main.go | |
parent | 756aac82152ba5265f62d234d94a1926cf572b38 (diff) | |
parent | 7981c59502a99b6f7938a18b6ae5c3803cf0a794 (diff) |
Merge pull request #5 from ava-labs/revert-4-revert-2-plugin
Added the EVM as a plugin
Diffstat (limited to 'plugin/main.go')
-rw-r--r-- | plugin/main.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/plugin/main.go b/plugin/main.go new file mode 100644 index 0000000..f5c9909 --- /dev/null +++ b/plugin/main.go @@ -0,0 +1,21 @@ +package main + +import ( + "github.com/hashicorp/go-plugin" + + "github.com/ava-labs/gecko/vms/rpcchainvm" + + "github.com/ava-labs/coreth/plugin/evm" +) + +func main() { + plugin.Serve(&plugin.ServeConfig{ + HandshakeConfig: rpcchainvm.Handshake, + Plugins: map[string]plugin.Plugin{ + "vm": rpcchainvm.New(&evm.VM{}), + }, + + // A non-nil value here enables gRPC serving for this plugin... + GRPCServer: plugin.DefaultGRPCServer, + }) +} |