This PR adds support for the latest version of the Cosmos App (v.1.5). The app is not been released yet by Ledger but the PR is backwards compatible. We can later remove backwards compatibility and enforce v1.5 only. When creating a new account, `gaiacli` now shows the account/index and address in the device and requires user confirmation. Related PRs: https://github.com/cosmos/ledger-cosmos-go/pull/3 https://github.com/cosmos/ledger-cosmos-go/pull/4 https://github.com/cosmos/ledger-cosmos-go/pull/5 https://github.com/cosmos/ledger-cosmos-go/pull/6 Changes in the app can be found here: https://github.com/LedgerHQ/ledger-app-cosmos/pull/5
55 lines
2.4 KiB
Modula-2
55 lines
2.4 KiB
Modula-2
module github.com/cosmos/cosmos-sdk
|
|
|
|
require (
|
|
bou.ke/monkey v1.0.1 // indirect
|
|
github.com/VividCortex/gohistogram v1.0.0 // indirect
|
|
github.com/bartekn/go-bip39 v0.0.0-20171116152956-a05967ea095d
|
|
github.com/bgentry/speakeasy v0.1.0
|
|
github.com/btcsuite/btcd v0.0.0-20190115013929-ed77733ec07d
|
|
github.com/cosmos/go-bip39 v0.0.0-20180618194314-52158e4697b8
|
|
github.com/cosmos/ledger-cosmos-go v0.10.2
|
|
github.com/fortytw2/leaktest v1.3.0 // indirect
|
|
github.com/go-logfmt/logfmt v0.4.0 // indirect
|
|
github.com/gogo/protobuf v1.1.1
|
|
github.com/golang/protobuf v1.2.0
|
|
github.com/golang/snappy v0.0.1 // indirect
|
|
github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf // indirect
|
|
github.com/gorilla/mux v1.7.0
|
|
github.com/gorilla/websocket v1.4.0 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
github.com/jmhodges/levigo v1.0.0 // indirect
|
|
github.com/magiconair/properties v1.8.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.6
|
|
github.com/mitchellh/mapstructure v1.1.2 // indirect
|
|
github.com/otiai10/copy v0.0.0-20180813032824-7e9a647135a1
|
|
github.com/otiai10/curr v0.0.0-20150429015615-9b4961190c95 // indirect
|
|
github.com/otiai10/mint v1.2.3 // indirect
|
|
github.com/pelletier/go-toml v1.2.0
|
|
github.com/pkg/errors v0.8.1
|
|
github.com/prometheus/client_golang v0.9.2 // indirect
|
|
github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90 // indirect
|
|
github.com/prometheus/common v0.2.0 // indirect
|
|
github.com/prometheus/procfs v0.0.0-20190227231451-bbced9601137 // indirect
|
|
github.com/rakyll/statik v0.1.4
|
|
github.com/rcrowley/go-metrics v0.0.0-20180503174638-e2704e165165 // indirect
|
|
github.com/rs/cors v1.6.0 // indirect
|
|
github.com/spf13/afero v1.2.1 // indirect
|
|
github.com/spf13/cast v1.3.0 // indirect
|
|
github.com/spf13/cobra v0.0.3
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.3
|
|
github.com/spf13/viper v1.0.3
|
|
github.com/stretchr/testify v1.3.0
|
|
github.com/syndtr/goleveldb v0.0.0-20180708030551-c4c61651e9e3 // indirect
|
|
github.com/tendermint/btcd v0.1.1
|
|
github.com/tendermint/go-amino v0.14.1
|
|
github.com/tendermint/iavl v0.12.1
|
|
github.com/tendermint/tendermint v0.31.5
|
|
golang.org/x/crypto v0.0.0-20180904163835-0709b304e793
|
|
google.golang.org/grpc v1.19.0 // indirect
|
|
gopkg.in/yaml.v2 v2.2.2 // indirect
|
|
)
|
|
|
|
replace golang.org/x/crypto => github.com/tendermint/crypto v0.0.0-20180820045704-3764759f34a5
|