blob: f5c9909b9cbae983591e87f0f5afb43971bbd256 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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,
})
}
|