aboutsummaryrefslogblamecommitdiff
path: root/plugin/main.go
blob: 9c0a28a4b4c6dc1c07484165484af44f46cfe2e6 (plain) (tree)
1
2
3
4
5
6




                                        
                                                        







                                                      
                                                                            





                                                                               
package main

import (
	"github.com/hashicorp/go-plugin"

	"github.com/ava-labs/avalanchego/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{CLIConfig: cliConfig}),
		},

		// A non-nil value here enables gRPC serving for this plugin...
		GRPCServer: plugin.DefaultGRPCServer,
	})
}