github.com/iotexproject/iotex-core@v1.14.1-rc1/tools/addrgen/addrgen.go (about) 1 // Copyright (c) 2018 IoTeX 2 // This source code is provided 'as is' and no warranties are given as to title or non-infringement, merchantability 3 // or fitness for purpose and, to the extent permitted by law, all liability for your use of the code is disclaimed. 4 // This source code is governed by Apache License 2.0 that can be found in the LICENSE file. 5 6 // This is a testing tool to generate iotex addresses 7 // To use, run "make build" and " ./bin/addrgen" 8 package main 9 10 import "github.com/iotexproject/iotex-core/tools/addrgen/internal/cmd" 11 12 func main() { 13 cmd.Execute() 14 }