Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 864 Bytes

File metadata and controls

29 lines (21 loc) · 864 Bytes

go-anvil: Go Bindings for Anvil

Go Reference Go Report Card

go-anvil provides an easy way to use Anvil nodes from Go.

Note

go-anvil requires the foundy binary to be installed. See the foundry repository for installation instructions.

go get github.com/sprintertech/go-anvil

Getting Started

cli := anvil.New(
    anvil.WithPort(8545),
)

err := cli.Run()
if err != nil {
    print(err)	
} 

Warning

This package is pre-1.0. There might be breaking changes between minor versions.