1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-06-22 09:21:32 +00:00
Files
.circleci
.github
DOCKER
abci
benchmarks
blockchain
cmd
config
consensus
crypto
docs
.vuepress
app-dev
architecture
imgs
interviews
introduction
networks
research
spec
abci
blockchain
consensus
p2p
reactors
scripts
crypto.go
software
README.md
tendermint-core
tools
.python-version
.textlintrc.json
DOCS_README.md
README.md
package-lock.json
package.json
stop-words.txt
yarn.lock
evidence
libs
lite
mempool
networks
node
p2p
privval
proxy
rpc
scripts
state
test
tools
types
version
.editorconfig
.gitignore
CHANGELOG.md
CHANGELOG_PENDING.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Gopkg.lock
Gopkg.toml
LICENSE
Makefile
README.md
ROADMAP.md
SECURITY.md
UPGRADING.md
Vagrantfile
appveyor.yml
codecov.yml
docker-compose.yml
tendermint/docs/spec/scripts/crypto.go

17 lines
267 B
Go
Raw Normal View History

package main
import (
"fmt"
2018-07-02 14:20:27 -04:00
"os"
2018-07-02 14:20:27 -04:00
amino "github.com/tendermint/go-amino"
cryptoAmino "github.com/tendermint/tendermint/crypto/encoding/amino"
)
func main() {
2018-07-02 14:20:27 -04:00
cdc := amino.NewCodec()
cryptoAmino.RegisterAmino(cdc)
2018-07-02 14:20:27 -04:00
cdc.PrintTypes(os.Stdout)
fmt.Println("")
}