Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't merge this! #29

Open
wants to merge 44 commits into
base: clearchainctl
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
169e462
Update the Makefile
Mar 25, 2018
6b73f6b
Add draft of clearchainctl
Mar 25, 2018
7d1335a
Move clearing house name to const
Mar 27, 2018
e89cc43
Can create operators now
Mar 30, 2018
bb49e5c
Fix missing sequence, create asset account instead operator
Mar 30, 2018
5af1345
Add test script
Mar 30, 2018
c9ab48c
Revert "Add test script"
alessio Mar 31, 2018
6d915e0
Revert "Fix missing sequence, create asset account instead operator"
alessio Mar 31, 2018
c190857
Revert "Can create operators now"
alessio Mar 31, 2018
f7e5f1b
Revert "Move clearing house name to const"
alessio Mar 31, 2018
59ef821
Revert "Add draft of clearchainctl"
alessio Mar 31, 2018
95cb320
Revert "Update the Makefile"
alessio Mar 31, 2018
fe73d22
Get rid of glide
Mar 30, 2018
25f86c6
Start working on the types package
Mar 30, 2018
75c9d07
Stop ignoring vendor
Mar 30, 2018
ee7b7af
Now that I've finally come to get a reproducible state, I definitely …
Mar 30, 2018
76b65f5
Remove vendor/ again
Mar 30, 2018
9739f3a
Revert "Stop ignoring vendor"
Mar 30, 2018
7dfec11
Add Gopkg files
Mar 30, 2018
a488e87
Update Makefile
Mar 30, 2018
bdef32d
Port app and types packages to new cosmos
Mar 30, 2018
65a926e
Small fix to Makefile
Mar 30, 2018
0b54a6d
Delegate download of dep to circleci
Mar 30, 2018
046cf9f
Update travis CI config, make mkdir safe in Makefile
Mar 30, 2018
7bc9ffa
Fix clearchaind
Mar 30, 2018
aaa006d
Update Makefile
Apr 1, 2018
6f332b7
Refresh .gitignore
Apr 1, 2018
582e48a
Fix Gopkg.lock
Apr 1, 2018
f8b50cc
Update Gopkg.lock
Apr 2, 2018
6306182
Reintroduce changes carried out in the old branch
Apr 2, 2018
8d8b8a6
Reintroduce PubKeyFromHexString() and CreateAdminMsg constructor
Apr 2, 2018
7679e94
Start porting clearchainctl commands
Apr 2, 2018
07c2737
Add ShowNodeId command
Apr 2, 2018
ad642b4
Add Create txs constructors
Apr 2, 2018
e69cbaf
Add create-operator command
Apr 2, 2018
a742cd8
Add create asset command
Apr 2, 2018
022db38
Increase test coverage
Apr 2, 2018
5965b25
Port to cosmos 0.13.0
Apr 2, 2018
8311098
Merge pull request #30 from tendermint/cosmos-0.13
alessio Apr 2, 2018
8125008
Cleanup .gitignore
Apr 2, 2018
1a7529d
Expose commands, prepare for rest
Apr 2, 2018
591dfd0
Upgrade to latest cosmos-sdk
Apr 8, 2018
fcf1ec2
Remove unnecessary UserAccount interface
Apr 23, 2018
e8f1392
Add supported currencies
Apr 24, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,13 @@ _cgo_defun.c
_cgo_gotypes.go
_cgo_export.*

_testmain.go

*.exe
*.test
*.prof

.vscode/

ledger/.project

.project
ledger/.settings/com.googlecode.goclipse.core.prefs

build/

testbed/testbed.go
/vendor
data
/.idea
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ matrix:
install:
- export GOPATH=$HOME/gopath
- export PATH=$HOME/gopath/bin:$PATH
- curl https://glide.sh/get | sh
- mkdir -p $GOPATH/bin
- wget https://github.com/golang/dep/releases/download/v0.4.1/dep-linux-amd64 -O $GOPATH/bin/dep && chmod +x $GOPATH/bin/dep

script:
- export GOPATH=$HOME/gopath
Expand Down
Loading