gomod2nix/tests/ethermint/cmd/main.go

16 lines
250 B
Go
Raw Normal View History

package main
import (
"fmt"
2022-05-20 08:31:44 +00:00
martian "github.com/google/martian/v3"
"github.com/tharsis/ethermint/crypto/hd"
2022-05-20 08:31:44 +00:00
"google.golang.org/grpc"
)
func main() {
fmt.Println(hd.NewExtendedKey())
2022-05-20 08:31:44 +00:00
fmt.Println(grpc.Version)
fmt.Println(martian.Noop(""))
}