package main import ( "crypto/ecdsa" cRand "crypto/rand" "encoding/base64" "encoding/hex" "flag" "fmt" "io" "io/ioutil" "math/big" "math/rand" "os" "path" "strconv" "time" "github.com/ethereum/go-ethereum/common" crypto2 "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/log" "github.com/ethereum/go-ethereum/params" "github.com/harmony-one/harmony/api/client" clientService "github.com/harmony-one/harmony/api/client/service" "github.com/harmony-one/harmony/core/types" nodeconfig "github.com/harmony-one/harmony/internal/configs/node" "github.com/harmony-one/harmony/internal/utils" "github.com/harmony-one/harmony/internal/wallet/wallet" "github.com/harmony-one/harmony/node" "github.com/harmony-one/harmony/p2p" "github.com/harmony-one/harmony/p2p/p2pimpl" ) var ( version string builtBy string builtAt string commit string ) func printVersion(me string) { fmt.Fprintf(os.Stderr, "Harmony (C) 2018. %v, version %v-%v (%v %v)\n", path.Base(me), version, commit, builtBy, builtAt) os.Exit(0) } // AccountState includes the balance and nonce of an account type AccountState struct { balance *big.Int nonce uint64 } const ( rpcRetry = 3 ) var ( // Account subcommands accountImportCommand = flag.NewFlagSet("import", flag.ExitOnError) accountImportPtr = accountImportCommand.String("privateKey", "", "Specify the private key to import") // Transfer subcommands transferCommand = flag.NewFlagSet("transfer", flag.ExitOnError) transferSenderPtr = transferCommand.String("from", "0", "Specify the sender account address or index") transferReceiverPtr = transferCommand.String("to", "", "Specify the receiver account") transferAmountPtr = transferCommand.Float64("amount", 0, "Specify the amount to transfer") transferShardIDPtr = transferCommand.Int("shardID", 0, "Specify the shard ID for the transfer") transferInputDataPtr = transferCommand.String("inputData", "", "Base64-encoded input data to embed in the transaction") freeTokenCommand = flag.NewFlagSet("getFreeToken", flag.ExitOnError) freeTokenAddressPtr = freeTokenCommand.String("address", "", "Specify the account address to receive the free token") balanceCommand = flag.NewFlagSet("getFreeToken", flag.ExitOnError) balanceAddressPtr = balanceCommand.String("address", "", "Specify the account address to check balance for") ) var ( // list of bootnodes addrStrings = []string{"/ip4/100.26.90.187/tcp/9876/p2p/QmZJJx6AdaoEkGLrYG4JeLCKeCKDjnFz2wfHNHxAqFSGA9", "/ip4/54.213.43.194/tcp/9876/p2p/QmQayinFSgMMw5cSpDUiD9pQ2WeP6WNmGxpZ6ou3mdVFJX"} // list of rpc servers rpcServers = []struct { IP string Port string }{ {"18.236.96.207", "14555"}, {"18.206.91.170", "14555"}, {"54.213.63.26", "14555"}, {"13.229.96.10", "14555"}, {"34.243.2.56", "14555"}, } ) // setupLog setup log for verbose output func setupLog() { // enable logging for wallet h := log.StreamHandler(os.Stdout, log.TerminalFormat(true)) log.Root().SetHandler(h) } // The main wallet program entrance. Note the this wallet program is for demo-purpose only. It does not implement // the secure storage of keys. func main() { rand.Seed(int64(time.Now().Nanosecond())) // Verify that a subcommand has been provided // os.Arg[0] is the main command // os.Arg[1] will be the subcommand if len(os.Args) < 2 { fmt.Println("Usage:") fmt.Println(" wallet ") fmt.Println("Actions:") fmt.Println(" 1. new - Generates a new account and store the private key locally") fmt.Println(" 2. list - Lists all accounts in local keystore") fmt.Println(" 3. removeAll - Removes all accounts in local keystore") fmt.Println(" 4. import - Imports a new account by private key") fmt.Println(" --privateKey - the private key to import") fmt.Println(" 5. balances - Shows the balances of all addresses or specific address") fmt.Println(" --address - The address to check balance for") fmt.Println(" 6. getFreeToken - Gets free token on each shard") fmt.Println(" --address - The free token receiver account's address") fmt.Println(" 7. transfer") fmt.Println(" --from - The sender account's address or index in the local keystore") fmt.Println(" --to - The receiver account's address") fmt.Println(" --amount - The amount of token to transfer") fmt.Println(" --shardID - The shard Id for the transfer") fmt.Println(" --inputData - Base64-encoded input data to embed in the transaction") os.Exit(1) } // Enable log if the last parameter is -verbose if os.Args[len(os.Args)-1] == "--verbose" { setupLog() os.Args = os.Args[:len(os.Args)-1] } // Switch on the subcommand switch os.Args[1] { case "-version": printVersion(os.Args[0]) case "new": processNewCommnad() case "list": processListCommand() case "removeAll": clearKeystore() case "import": processImportCommnad() case "balances": processBalancesCommand() case "getFreeToken": processGetFreeToken() } switch os.Args[1] { case "transfer": processTransferCommand() default: fmt.Printf("Unknown action: %s\n", os.Args[1]) flag.PrintDefaults() os.Exit(1) } } // createWalletNode creates wallet server node. func createWalletNode() *node.Node { bootNodeAddrs, err := utils.StringsToAddrs(addrStrings) if err != nil { panic(err) } utils.BootNodes = bootNodeAddrs shardIDs := []uint32{0} // dummy host for wallet self := p2p.Peer{IP: "127.0.0.1", Port: "6999"} priKey, _, _ := utils.GenKeyP2P("127.0.0.1", "6999") host, err := p2pimpl.NewHost(&self, priKey) if err != nil { panic(err) } w := node.New(host, nil, nil) w.Client = client.NewClient(w.GetHost(), shardIDs) w.NodeConfig.SetRole(nodeconfig.ClientNode) w.ServiceManagerSetup() w.RunServices() return w } func processNewCommnad() { randomBytes := [32]byte{} _, err := io.ReadFull(cRand.Reader, randomBytes[:]) if err != nil { fmt.Println("Failed to get randomness for the private key...") os.Exit(0) } priKey, err := crypto2.GenerateKey() if err != nil { panic("Failed to generate the private key") } storePrivateKey(crypto2.FromECDSA(priKey)) fmt.Printf("New account created with address:{%s}\n", crypto2.PubkeyToAddress(priKey.PublicKey).Hex()) fmt.Printf("Please keep a copy of the private key:{%s}\n", hex.EncodeToString(crypto2.FromECDSA(priKey))) os.Exit(0) } func processListCommand() { for i, key := range readPrivateKeys() { fmt.Printf("Account %d:{%s}\n", i, crypto2.PubkeyToAddress(key.PublicKey).Hex()) fmt.Printf(" PrivateKey:{%s}\n", hex.EncodeToString(key.D.Bytes())) } os.Exit(0) } func processImportCommnad() { accountImportCommand.Parse(os.Args[2:]) priKey := *accountImportPtr if priKey == "" { fmt.Println("Error: --privateKey is required") os.Exit(0) } if !accountImportCommand.Parsed() { fmt.Println("Failed to parse flags") } priKeyBytes, err := hex.DecodeString(priKey) if err != nil { panic("Failed to parse the private key into bytes") } storePrivateKey(priKeyBytes) fmt.Println("Private key imported...") os.Exit(0) } func processBalancesCommand() { balanceCommand.Parse(os.Args[2:]) if *balanceAddressPtr == "" { for i, address := range ReadAddresses() { fmt.Printf("Account %d: %s:\n", i, address.Hex()) for shardID, balanceNonce := range FetchBalance(address) { fmt.Printf(" Balance in Shard %d: %s, nonce: %v \n", shardID, convertBalanceIntoReadableFormat(balanceNonce.balance), balanceNonce.nonce) } } } else { address := common.HexToAddress(*balanceAddressPtr) fmt.Printf("Account: %s:\n", address.Hex()) for shardID, balanceNonce := range FetchBalance(address) { fmt.Printf(" Balance in Shard %d: %s, nonce: %v \n", shardID, convertBalanceIntoReadableFormat(balanceNonce.balance), balanceNonce.nonce) } } os.Exit(0) } func processGetFreeToken() { freeTokenCommand.Parse(os.Args[2:]) if *freeTokenAddressPtr == "" { fmt.Println("Error: --address is required") } else { address := common.HexToAddress(*freeTokenAddressPtr) GetFreeToken(address) } os.Exit(0) } func processTransferCommand() { transferCommand.Parse(os.Args[2:]) if !transferCommand.Parsed() { fmt.Println("Failed to parse flags") } sender := *transferSenderPtr receiver := *transferReceiverPtr amount := *transferAmountPtr shardID := *transferShardIDPtr base64InputData := *transferInputDataPtr inputData, err := base64.StdEncoding.DecodeString(base64InputData) if err != nil { fmt.Printf("Cannot base64-decode input data (%s): %s\n", base64InputData, err) return } if shardID == -1 { fmt.Println("Please specify the shard ID for the transfer (e.g. --shardID=0)") return } if amount <= 0 { fmt.Println("Please specify positive amount to transfer") return } priKeys := readPrivateKeys() if len(priKeys) == 0 { fmt.Println("No imported account to use.") return } senderIndex, err := strconv.Atoi(sender) addresses := ReadAddresses() if err != nil { senderIndex = -1 for i, address := range addresses { if address.Hex() == sender { senderIndex = i break } } if senderIndex == -1 { fmt.Println("The specified sender account does not exist in the wallet.") return } } if senderIndex >= len(priKeys) { fmt.Println("Sender account index out of bounds.") return } receiverAddress := common.HexToAddress(receiver) if len(receiverAddress) != 20 { fmt.Println("The receiver address is not valid.") return } // Generate transaction senderPriKey := priKeys[senderIndex] senderAddress := addresses[senderIndex] walletNode := createWalletNode() shardIDToAccountState := FetchBalance(senderAddress) state, ok := shardIDToAccountState[uint32(shardID)] if !ok { fmt.Printf("Failed connecting to the shard %d\n", shardID) return } balance := state.balance balance = balance.Div(balance, big.NewInt(params.GWei)) if amount > float64(balance.Uint64())/params.GWei { fmt.Printf("Balance is not enough for the transfer, current balance is %.6f\n", float64(balance.Uint64())/params.GWei) return } amountBigInt := big.NewInt(int64(amount * params.GWei)) amountBigInt = amountBigInt.Mul(amountBigInt, big.NewInt(params.GWei)) tx, _ := types.SignTx(types.NewTransaction(state.nonce, receiverAddress, uint32(shardID), amountBigInt, params.TxGas, nil, inputData), types.HomesteadSigner{}, senderPriKey) wallet.SubmitTransaction(tx, walletNode, uint32(shardID)) } func convertBalanceIntoReadableFormat(balance *big.Int) string { balance = balance.Div(balance, big.NewInt(params.GWei)) strBalance := fmt.Sprintf("%d", balance.Uint64()) bytes := []byte(strBalance) hasDecimal := false for i := 0; i < 11; i++ { if len(bytes)-1-i < 0 { bytes = append([]byte{'0'}, bytes...) } if bytes[len(bytes)-1-i] != '0' && i < 9 { hasDecimal = true } if i == 9 { newBytes := append([]byte{'.'}, bytes[len(bytes)-i:]...) bytes = append(bytes[:len(bytes)-i], newBytes...) } } zerosToRemove := 0 for i := 0; i < len(bytes); i++ { if hasDecimal { if bytes[len(bytes)-1-i] == '0' { bytes = bytes[:len(bytes)-1-i] i-- } else { break } } else { if zerosToRemove < 5 { bytes = bytes[:len(bytes)-1-i] i-- zerosToRemove++ } else { break } } } return string(bytes) } // FetchBalance fetches account balance of specified address from the Harmony network // TODO add support for non beacon chain shards func FetchBalance(address common.Address) map[uint32]AccountState { result := make(map[uint32]AccountState) balance := big.NewInt(0) result[0] = AccountState{balance, 0} for retry := 0; retry < rpcRetry; retry++ { server := rpcServers[rand.Intn(len(rpcServers))] client, err := clientService.NewClient(server.IP, server.Port) if err != nil { continue } log.Debug("FetchBalance", "server", server) response, err := client.GetBalance(address) if err != nil { log.Info("failed to get balance, retrying ...") continue } log.Debug("FetchBalance", "response", response) balance.SetBytes(response.Balance) result[0] = AccountState{balance, response.Nonce} break } return result } // GetFreeToken requests for token test token on each shard func GetFreeToken(address common.Address) { for retry := 0; retry < rpcRetry; retry++ { server := rpcServers[0] client, err := clientService.NewClient(server.IP, server.Port) if err != nil { continue } log.Debug("GetFreeToken", "server", server) response, err := client.GetFreeToken(address) if err != nil { log.Info("failed to get free token, retrying ...") continue } log.Debug("GetFreeToken", "response", response) txID := common.Hash{} txID.SetBytes(response.TxId) fmt.Printf("Transaction Id requesting free token in shard %d: %s\n", int(0), txID.Hex()) break } } // ReadAddresses reads the addresses stored in local keystore func ReadAddresses() []common.Address { priKeys := readPrivateKeys() addresses := []common.Address{} for _, key := range priKeys { addresses = append(addresses, crypto2.PubkeyToAddress(key.PublicKey)) } return addresses } // storePrivateKey stores the specified private key in local keystore func storePrivateKey(priKey []byte) { privateKey, err := crypto2.ToECDSA(priKey) if err != nil { panic("Failed to deserialize private key") } for _, address := range ReadAddresses() { if address == crypto2.PubkeyToAddress(privateKey.PublicKey) { fmt.Println("The key already exists in the keystore") return } } f, err := os.OpenFile("keystore", os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644) if err != nil { panic("Failed to open keystore") } _, err = f.Write(priKey) if err != nil { panic("Failed to write to keystore") } f.Close() } // clearKeystore deletes all data in the local keystore func clearKeystore() { ioutil.WriteFile("keystore", []byte{}, 0644) fmt.Println("All existing accounts deleted...") os.Exit(0) } // readPrivateKeys reads all the private key stored in local keystore func readPrivateKeys() []*ecdsa.PrivateKey { keys, err := ioutil.ReadFile("keystore") if err != nil { return []*ecdsa.PrivateKey{} } priKeys := []*ecdsa.PrivateKey{} for i := 0; i < len(keys); i += 32 { priKey, err := crypto2.ToECDSA(keys[i : i+32]) if err != nil { fmt.Println("Failed deserializing key data: ", keys[i:i+32]) continue } priKeys = append(priKeys, priKey) } return priKeys }