Skip to content
This repository has been archived by the owner on Jun 7, 2023. It is now read-only.

Commit

Permalink
1st
Browse files Browse the repository at this point in the history
  • Loading branch information
utamaro committed Mar 28, 2017
0 parents commit 5a595c2
Show file tree
Hide file tree
Showing 4 changed files with 315 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
language: go

go:
- 1.7
- 1.8

before_install:
- go get -u github.com/alecthomas/gometalinter
- go get -u github.com/mattn/goveralls
- export PATH=$PATH:$GOPATH/bin
- gometalinter --install --update

script:
- travis_wait 30 go test -v -covermode=count -coverprofile=coverage.out -timeout 100m

after_success:
- gometalinter -e bindata --deadline=1000s ./...
- goveralls -coverprofile=coverage.out -service=travis-ci

21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2017 Shinya Yagyu

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
53 changes: 53 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
gIOTA CLI tool
=====

CLI client tool for the IOTA reference implementation (IRI) using gIOTA lib.

Install
====
```
$ go get -u github.com/iotaledger/giota/giotan
```

Features
====

1. Sending iota token using [public nodes](http://iotasupport.com/lightwallet.shtml) with local PoW.
2. List used and unused Addresses which can be generated from seed.

This CLI mainly focuses on functions using seeds.

If you want to add some functions, please make an issue.

Examples
====

```
$ giotan new
$ giotan addresses
$ giotan send --recipient=SOMERECIPIENT --amount=1234
$ giotan send --recipient=SOMERECIPIENT --amount=1234 --sender=SOMEADDRESS1,SOMEADDRESS2,SOMEADDRESS3
```

When you use `addresses` and `send`, you will be prompted to input your seed.

When you use --sender, you must specify the addresses which can be generated from `seed`.

Note that `send` takes a long time to calculate Proof of Work.

Development Status: Alpha+
=========================

Tread lightly around here. This tool is still very much
in flux and there are going to be breaking changes.


TODO
=========================

* More functions(?)
* More tests :(

<hr>

Released under the [MIT License](LICENSE).
222 changes: 222 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,222 @@
/*
MIT License
Copyright (c) 2017 Shinya Yagyu
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/

package main

import (
"fmt"
"os"
"strings"
"syscall"

"golang.org/x/crypto/ssh/terminal"

"github.com/alecthomas/kingpin"
"github.com/iotaledger/giota"
)

func main() {
var (
app = kingpin.New("giotan", "giota CLI Tool")

send = app.Command("send", "Send token")
recipient = send.Flag("recipient", "recipient address").Required().String()
sender = send.Flag("sender", "sender addresses, separated with comma").String()
amount = send.Flag("amount", "amount to send").Required().Int64()
tag = send.Flag("tag", "tag to send").Default("PRETTYGIOTAN").String()
mwm = send.Flag("mwm", "MinWeightMagnituce").Default("18").Int64()

addresses = app.Command("addresses", "List used/unused addresses")

newseed = app.Command("new", "create a new seed")
)
switch kingpin.MustParse(app.Parse(os.Args[1:])) {
case send.FullCommand():
fmt.Print("input your seed:")
seed, err := terminal.ReadPassword(int(syscall.Stdin))
fmt.Println("")
if err != nil {
panic(err)
}
Send(string(seed), *recipient, *sender, *amount, *mwm, *tag)
case addresses.FullCommand():
fmt.Print("input your seed:")
seedA, err := terminal.ReadPassword(int(syscall.Stdin))
fmt.Println("")
if err != nil {
panic(err)
}
handleAddresses(string(seedA))
case newseed.FullCommand():
seed := giota.NewSeed()
fmt.Println("New seed: ", seed)
fmt.Printf("To display addresses, run\n\t%s addresses\n", os.Args[0])
fmt.Println("and input the seed above.")
}
}

func handleAddresses(seed string) {
server := giota.RandomNode()
fmt.Printf("using IRI server: %s\n", server)
seedT, err := giota.ToTrytes(seed)
if err != nil {
fmt.Fprintf(os.Stderr, "You must specify valid seed")
os.Exit(-1)
}
api := giota.NewAPI(server, nil)
adr, adrs, err := giota.GetUsedAddress(api, seedT, 2)
if err != nil {
fmt.Fprintf(os.Stderr, "cannot get addresses: %s\n", err.Error())
os.Exit(-1)
}
var resp *giota.GetBalancesResponse
if len(adrs) > 0 {
resp, err = api.GetBalances(adrs, 100)
if err != nil {
fmt.Fprintf(os.Stderr, "cannot get balance: %s\n", err.Error())
os.Exit(-1)
}
}
fmt.Println("address info:")
fmt.Println("used:")
for i, a := range adrs {
fmt.Printf("\t%s (balance=%d)\n", a, resp.Balances[i])
}
fmt.Println("\nunused:")
fmt.Printf("\t%s\n", adr)
}

func check(seed, recipient, sender string, amount int64) (giota.Trytes, giota.Address, []giota.Address) {
if amount <= 0 {
fmt.Fprintln(os.Stderr, "You must specify the amount with positive value.")
os.Exit(-1)
}
seedT, err := giota.ToTrytes(seed)
if err != nil {
fmt.Fprintln(os.Stderr, "You must specify valid seed")
os.Exit(-1)
}
recipientT, err := giota.ToAddress(recipient)
if err != nil {
fmt.Fprintln(os.Stderr, "You must specify valid recipient")
os.Exit(-1)
}
var senderT []giota.Address
if sender != "" {
senders := strings.Split(sender, ",")
senderT = make([]giota.Address, len(senders))
for i, s := range senders {
senderT[i], err = giota.ToAddress(s)
if err != nil {
fmt.Fprintln(os.Stderr, "You must specify valid sender")
os.Exit(-1)
}
}
}
return seedT, recipientT, senderT
}

func sendToSender(api *giota.API, trs []giota.Transfer, sender []giota.Address, seedT giota.Trytes, mwm int64) (giota.Bundle, error) {
_, adrs, err := giota.GetUsedAddress(api, seedT, 2)
if err != nil {
return nil, err
}
adrinfo := make([]giota.AddressInfo, len(sender))
for i, s := range sender {
for j, a := range adrs {
if s == a {
adrinfo[i] = giota.AddressInfo{
Seed: seedT,
Index: j,
Security: 2,
}
break
}
}
return nil, fmt.Errorf("cannot found address %s from seed", s)
}
bdl, err := giota.PrepareTransfers(api, seedT, trs, adrinfo, "", 2)
if err != nil {
return nil, err
}
name, pow := giota.GetBestPoW()
fmt.Fprintf(os.Stderr, "using PoW:%s\n", name)
err = giota.SendTrytes(api, giota.Depth, []giota.Transaction(bdl), mwm, pow)
return bdl, err
}

//Send handles send command.
func Send(seed, recipient, sender string, amount int64, mwm int64, tag string) {
seedT, recipientT, senderT := check(seed, recipient, sender, amount)
ttag, err := giota.ToTrytes(tag)
if err != nil {
panic(err)
}
trs := []giota.Transfer{
giota.Transfer{
Address: recipientT,
Value: amount,
Tag: ttag,
},
}

var bdl giota.Bundle
server := giota.RandomNode()
fmt.Printf("using IRI server: %s\n", server)

api := giota.NewAPI(server, nil)
name, pow := giota.GetBestPoW()
fmt.Fprintf(os.Stderr, "using PoW:%s\n", name)
if senderT == nil {
bdl, err = giota.PrepareTransfers(api, seedT, trs, nil, "", 2)
if err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(-1)
}
err = giota.SendTrytes(api, giota.Depth, []giota.Transaction(bdl), mwm, pow)
if err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(-1)
}
} else {
bdl, err = sendToSender(api, trs, senderT, seedT, mwm)
}
if err != nil {
fmt.Fprintf(os.Stderr, "cannot send: %s\n", err.Error())
os.Exit(-1)
}

fmt.Println("bundle info:")
fmt.Println("bundle hash: ", bdl.Hash())
for i, tx := range bdl {
fmt.Printf(`
No: %d/%d
Hash : %s
Address:%s
Value:%d
Timestamp:%s
`,
i, len(bdl), tx.Hash(), tx.Address, tx.Value, tx.Timestamp)
}
}

0 comments on commit 5a595c2

Please sign in to comment.