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