Registry /
utility / ava-labs-avalanche-network-runner
Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
networkrunner
✓ github.com/ava-labs/avalanche-network-runner
Connects to a running network runner server and prints its status.
package main
import (
"log"
"github.com/ava-labs/avalanche-network-runner/client"
)
func main() {
cli, err := client.New(client.Config{Endpoint: "localhost:8080"})
if err != nil {
log.Fatal(err)
}
defer cli.Close()
info, err := cli.Status()
if err != nil {
log.Fatal(err)
}
log.Printf("Network status: %+v", info)
}
Debug
Known issues
No known issues recorded.
Upgrade
Version history
1.8.3latest on pkg.go.dev
Audit
Dependencies
No dependency data recorded yet.