├── .DS_Store ├── .codecov.yml ├── .dockerignore ├── CONTRIBUTING.md ├── Dockerfile ├── Dockerfile.dev ├── GoBasics.md ├── Gopkg.lock ├── Gopkg.toml ├── Makefile ├── Plugins.md ├── README.md ├── TODO ├── Vagrantfile ├── _attic ├── app │ ├── app_test.go │ └── genesis_test.go ├── benchmarks │ ├── app_test.go │ ├── bonsai-speed.txt │ ├── cleanup-speed.txt │ └── unstable-speed.txt ├── bonus │ ├── doc.go │ ├── helpers.go │ ├── multiplexer.go │ └── multiplexer_test.go ├── client │ ├── commands │ │ ├── auto │ │ │ └── cmd.go │ │ ├── commits │ │ │ ├── export.go │ │ │ ├── import.go │ │ │ ├── root.go │ │ │ ├── show.go │ │ │ └── update.go │ │ ├── common.go │ │ ├── init.go │ │ ├── keys │ │ │ ├── delete.go │ │ │ ├── get.go │ │ │ ├── list.go │ │ │ ├── new.go │ │ │ ├── recover.go │ │ │ ├── root.go │ │ │ ├── update.go │ │ │ └── utils.go │ │ ├── proxy │ │ │ └── root.go │ │ ├── query │ │ │ ├── get.go │ │ │ ├── root.go │ │ │ ├── state.go │ │ │ └── tx.go │ │ ├── rpc │ │ │ ├── helpers.go │ │ │ ├── insecure.go │ │ │ ├── root.go │ │ │ └── secure.go │ │ ├── txs │ │ │ ├── helpers.go │ │ │ ├── root.go │ │ │ └── wrapper.go │ │ └── version.go │ ├── common.go │ ├── errors.go │ ├── errors_test.go │ ├── keys.go │ ├── proxy.go │ ├── query.go │ ├── query_test.go │ └── rest │ │ ├── handlers.go │ │ ├── helpers.go │ │ └── types.go ├── coins │ ├── bench_test.go │ ├── commands │ │ ├── query.go │ │ └── tx.go │ ├── genesis.go │ ├── handler.go │ ├── handler_test.go │ ├── helper.go │ ├── ibc_test.go │ ├── rest │ │ └── handlers.go │ └── store.go ├── docs │ ├── Makefile │ ├── architecture │ │ └── API.md │ ├── basecoin-basics.rst │ ├── basecoin-kubernetes.rst │ ├── basecoin-plugins.rst │ ├── basecoin-tool.rst │ ├── conf.py │ ├── glossary.rst │ ├── graphics │ │ ├── cosmos-sdk-image.png │ │ ├── datastore.png │ │ ├── dispatcher.png │ │ ├── infographic.xml │ │ ├── middleware.png │ │ ├── overview-framework.png │ │ ├── overview-security.png │ │ ├── permission.png │ │ └── tx.png │ ├── guide │ │ └── shunit2 │ ├── ibc.rst │ ├── index.rst │ ├── install.rst │ ├── key-management.rst │ ├── make.bat │ ├── overview.rst │ ├── roles-and-multi-sig.rst │ └── stdlib.rst ├── examples │ ├── basecoin │ │ ├── Makefile │ │ ├── app │ │ │ └── handler.go │ │ ├── cmd │ │ │ ├── basecli │ │ │ │ ├── LIGHT_NODE.md │ │ │ │ └── main.go │ │ │ ├── basecoin │ │ │ │ └── main.go │ │ │ └── baseserver │ │ │ │ └── main.go │ │ └── tests │ │ │ └── cli │ │ │ ├── basictx.sh │ │ │ ├── ibc.sh │ │ │ ├── init-server.sh │ │ │ ├── init.sh │ │ │ ├── keys.sh │ │ │ ├── rest.sh │ │ │ ├── restart.sh │ │ │ ├── roles.sh │ │ │ └── rpc.sh │ ├── counter │ │ ├── Makefile │ │ ├── cmd │ │ │ ├── counter │ │ │ │ └── main.go │ │ │ └── countercli │ │ │ │ ├── commands │ │ │ │ ├── counter.go │ │ │ │ └── query.go │ │ │ │ └── main.go │ │ ├── plugins │ │ │ └── counter │ │ │ │ ├── counter.go │ │ │ │ └── counter_test.go │ │ └── tests │ │ │ └── cli │ │ │ └── counter.sh │ └── eyes │ │ ├── Makefile │ │ ├── cmd │ │ ├── eyes │ │ │ ├── init.go │ │ │ └── main.go │ │ └── eyescli │ │ │ └── main.go │ │ ├── parser.go │ │ ├── tests │ │ └── cli │ │ │ └── eyes.sh │ │ └── tx.go ├── genesis │ ├── doc.go │ ├── parse.go │ ├── parse_test.go │ └── testdata │ │ └── genesis.json ├── ibc │ ├── commands │ │ ├── query.go │ │ └── tx.go │ ├── errors.go │ ├── handler.go │ ├── ibc_test.go │ ├── keys.go │ ├── middleware.go │ ├── provider.go │ ├── provider_test.go │ ├── store.go │ ├── test_helpers.go │ └── tx.go ├── modules │ ├── app │ │ ├── app_test.go │ │ └── genesis_test.go │ ├── bonus │ │ ├── doc.go │ │ ├── helpers.go │ │ ├── multiplexer.go │ │ └── multiplexer_test.go │ ├── docs │ │ ├── Makefile │ │ ├── architecture │ │ │ └── API.md │ │ ├── basecoin-basics.rst │ │ ├── basecoin-kubernetes.rst │ │ ├── basecoin-plugins.rst │ │ ├── basecoin-tool.rst │ │ ├── conf.py │ │ ├── glossary.rst │ │ ├── graphics │ │ │ ├── cosmos-sdk-image.png │ │ │ ├── datastore.png │ │ │ ├── dispatcher.png │ │ │ ├── infographic.xml │ │ │ ├── middleware.png │ │ │ ├── overview-framework.png │ │ │ ├── overview-security.png │ │ │ ├── permission.png │ │ │ └── tx.png │ │ ├── guide │ │ │ └── shunit2 │ │ ├── ibc.rst │ │ ├── index.rst │ │ ├── install.rst │ │ ├── key-management.rst │ │ ├── make.bat │ │ ├── overview.rst │ │ ├── roles-and-multi-sig.rst │ │ └── stdlib.rst │ ├── ibc │ │ ├── commands │ │ │ ├── query.go │ │ │ └── tx.go │ │ ├── errors.go │ │ ├── handler.go │ │ ├── ibc_test.go │ │ ├── keys.go │ │ ├── middleware.go │ │ ├── provider.go │ │ ├── provider_test.go │ │ ├── store.go │ │ ├── test_helpers.go │ │ └── tx.go │ ├── roles │ │ ├── commands │ │ │ ├── query.go │ │ │ ├── tx.go │ │ │ └── wrap.go │ │ ├── error.go │ │ ├── handler.go │ │ ├── handler_test.go │ │ ├── middleware.go │ │ ├── middleware_test.go │ │ ├── rest │ │ │ └── handlers.go │ │ ├── store.go │ │ ├── store_test.go │ │ └── tx.go │ ├── stack │ │ ├── checkpoint.go │ │ ├── checkpoint_test.go │ │ ├── context.go │ │ ├── dispatcher.go │ │ ├── helpers.go │ │ ├── helpers_test.go │ │ ├── helperware.go │ │ ├── interface.go │ │ ├── middleware.go │ │ ├── middleware_test.go │ │ ├── mock.go │ │ ├── prefixstore.go │ │ ├── recovery.go │ │ ├── recovery_test.go │ │ └── state_space_test.go │ └── store │ │ ├── queue.go │ │ └── queue_test.go ├── roles │ ├── commands │ │ ├── query.go │ │ ├── tx.go │ │ └── wrap.go │ ├── error.go │ ├── handler.go │ ├── handler_test.go │ ├── middleware.go │ ├── middleware_test.go │ ├── rest │ │ └── handlers.go │ ├── store.go │ ├── store_test.go │ └── tx.go ├── server │ └── commands │ │ ├── init.go │ │ ├── key.go │ │ ├── relay.go │ │ ├── reset.go │ │ ├── root.go │ │ └── start.go ├── stack │ ├── checkpoint.go │ ├── checkpoint_test.go │ ├── context.go │ ├── dispatcher.go │ ├── helpers.go │ ├── helpers_test.go │ ├── helperware.go │ ├── interface.go │ ├── middleware.go │ ├── middleware_test.go │ ├── mock.go │ ├── prefixstore.go │ ├── recovery.go │ ├── recovery_test.go │ └── state_space_test.go └── store │ ├── queue.go │ └── queue_test.go ├── _gen.go ├── app ├── app.go ├── app_test.go ├── app_val_test.go ├── base.go ├── bc.go ├── doc.go ├── example │ ├── basecoin │ │ ├── account.go │ │ ├── account_store.go │ │ └── main.go │ └── dummy │ │ └── main.go ├── genesis.go ├── genesis_test.go ├── init.go ├── log.go ├── query.go ├── router.go ├── store.go ├── testdata │ ├── genesis.json │ ├── genesis2.json │ ├── genesis2b.json │ └── genesis3.json ├── tmsp_test.go └── val_test.go ├── baseapp ├── baseapp.go ├── baseapp_test.go ├── context.go ├── data │ └── TestBasic.db │ │ ├── CURRENT │ │ ├── LOCK │ │ ├── LOG │ │ └── MANIFEST-000093 ├── doc.go ├── genesis.go ├── helpers.go ├── multimsg_test.go ├── query.go ├── router.go ├── testapp.go ├── testdata │ ├── genesis.json │ ├── genesis2.json │ ├── genesis2b.json │ └── genesis3.json └── testtx │ └── tx.go ├── benchmarks ├── app_test.go ├── bonsai-speed.txt ├── cleanup-speed.txt └── unstable-speed.txt ├── blackstar.go ├── circle.yml ├── client ├── builder │ └── builder.go ├── commands │ ├── auto │ │ └── cmd.go │ ├── commits │ │ ├── export.go │ │ ├── import.go │ │ ├── root.go │ │ ├── show.go │ │ └── update.go │ ├── common.go │ ├── init.go │ ├── keys │ │ ├── delete.go │ │ ├── get.go │ │ ├── list.go │ │ ├── new.go │ │ ├── recover.go │ │ ├── root.go │ │ ├── update.go │ │ └── utils.go │ ├── proofs │ │ ├── get.go │ │ ├── root.go │ │ ├── state.go │ │ └── tx.go │ ├── proxy │ │ └── root.go │ ├── query │ │ ├── get.go │ │ ├── query_test.go │ │ ├── root.go │ │ ├── state.go │ │ └── tx.go │ ├── rpc │ │ ├── helpers.go │ │ ├── insecure.go │ │ ├── root.go │ │ └── secure.go │ ├── seeds │ │ ├── export.go │ │ ├── import.go │ │ ├── root.go │ │ ├── show.go │ │ └── update.go │ ├── txs │ │ ├── helpers.go │ │ ├── presenter.go │ │ ├── root.go │ │ └── wrapper.go │ └── version.go ├── common.go ├── context │ ├── helpers.go │ ├── types.go │ └── viper.go ├── core │ ├── context.go │ └── core.go ├── errors.go ├── errors_test.go ├── flags.go ├── helpers.go ├── input.go ├── keys.go ├── keys │ ├── add.go │ ├── delete.go │ ├── get.go │ ├── list.go │ ├── new.go │ ├── recover.go │ ├── root.go │ ├── show.go │ ├── update.go │ ├── utils.go │ └── wire.go ├── lcd │ ├── helpers.go │ ├── keys.db │ │ ├── LOCK │ │ └── LOG │ ├── lcd_test.go │ ├── main_test.go │ ├── root.go │ ├── test_helpers.go │ ├── version.go │ └── wire.go ├── node.go ├── proxy.go ├── query.go ├── query_test.go ├── rest │ ├── cmd.go │ ├── handlers.go │ ├── helpers.go │ ├── proxy.go │ └── types.go ├── rpc │ ├── block.go │ ├── root.go │ ├── status.go │ ├── validators.go │ └── wire.go └── tx │ ├── broadcast.go │ ├── query.go │ ├── root.go │ ├── search.go │ ├── sign.go │ └── tx.go ├── clitest ├── basictx.sh ├── common.sh └── ibc.sh ├── cmd ├── adam │ └── main.go ├── basecli │ ├── LIGHT_NODE.md │ ├── adapters.go │ ├── apptx.go │ ├── commands │ │ ├── adapters.go │ │ ├── apptx.go │ │ ├── auto.go │ │ ├── cmds.go │ │ ├── query.go │ │ └── sendtx.go │ ├── counter.go │ ├── counter │ │ ├── counter.go │ │ └── query.go │ ├── main.go │ └── sendtx.go ├── basecoin │ ├── account.go │ ├── cmd.go │ ├── commands │ │ ├── counter.go │ │ ├── flags.go │ │ ├── ibc.go │ │ ├── init.go │ │ ├── key.go │ │ ├── plugin_util.go │ │ ├── query.go │ │ ├── relay.go │ │ ├── reset.go │ │ ├── root.go │ │ ├── start.go │ │ ├── tx.go │ │ ├── utils.go │ │ ├── utils_test.go │ │ └── version.go │ ├── flags.go │ ├── ibc.go │ ├── main.go │ ├── query.go │ ├── start.go │ ├── tx.go │ └── utils.go ├── baseserver │ └── main.go ├── commands │ ├── flags.go │ ├── ibc.go │ ├── init.go │ ├── key.go │ ├── log.go │ ├── plugin_util.go │ ├── query.go │ ├── relay.go │ ├── reset.go │ ├── root.go │ ├── start.go │ ├── tx.go │ ├── utils.go │ ├── utils_test.go │ └── version.go ├── counter │ ├── cmd.go │ └── main.go ├── countercli │ ├── commands │ │ ├── counter.go │ │ └── query.go │ └── main.go ├── eyes │ ├── init.go │ └── main.go ├── eyescli │ └── main.go ├── main.go ├── paytovote │ └── main.go ├── ton │ ├── app │ │ ├── app.go │ │ ├── app_test.go │ │ ├── genesis.go │ │ └── genesis_test.go │ ├── cli_test │ │ └── cli_test.go │ ├── cmd │ │ ├── gaiacli │ │ │ └── main.go │ │ ├── gaiadebug │ │ │ ├── hack.go │ │ │ └── main.go │ │ └── tond │ │ │ └── main.go │ └── testnets │ │ ├── STATUS.md │ │ ├── gaia-5001 │ │ ├── adrian.json │ │ ├── anton.json │ │ ├── aurel.json │ │ ├── bucky.json │ │ ├── cwgoes.json │ │ ├── iris.json │ │ ├── lino.json │ │ ├── pbostrom.json │ │ ├── poldsam.json │ │ ├── staked.json │ │ ├── zach.json │ │ └── zaki.json │ │ ├── gaia-6000 │ │ └── genesis.json │ │ ├── gaia-6001 │ │ └── genesis.json │ │ └── gaia-6002 │ │ └── genesis.json ├── toncli │ └── main.go └── tond │ └── main.go ├── commands ├── common.go ├── init.go ├── proofs │ ├── get.go │ ├── root.go │ ├── state.go │ └── tx.go ├── proxy │ └── root.go ├── rpc │ ├── helpers.go │ ├── insecure.go │ ├── root.go │ └── secure.go ├── seeds │ ├── export.go │ ├── import.go │ ├── root.go │ ├── show.go │ └── update.go └── txs │ ├── helpers.go │ └── root.go ├── common └── testing.go ├── context.go ├── crypto ├── CHANGELOG.md ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── Makefile ├── README.md ├── _gen.go ├── _nano │ ├── keys.go │ ├── keys_test.go │ ├── sign.go │ └── sign_test.go ├── amino.go ├── armor.go ├── armor_test.go ├── bcrypt │ ├── base64.go │ └── bcrypt.go ├── circle.yml ├── cmd │ ├── README.md │ ├── common.go │ ├── delete.go │ ├── get.go │ ├── keys │ │ └── main.go │ ├── list.go │ ├── new.go │ ├── recover.go │ ├── root.go │ ├── serve.go │ ├── update.go │ └── utils.go ├── crypto.go ├── crypto │ ├── Makefile │ ├── README.md │ ├── armor.go │ ├── armor_test.go │ ├── bcrypt │ │ ├── base64.go │ │ └── bcrypt.go │ ├── crypto.go │ ├── embed_test.go │ ├── encode_test.go │ ├── glide.yaml │ ├── hash.go │ ├── hd │ │ ├── address.go │ │ ├── address_test.go │ │ ├── hd_test.go │ │ └── test.json │ ├── priv_key.go │ ├── pub_key.go │ ├── pub_key_test.go │ ├── random.go │ ├── signature.go │ ├── signature_test.go │ ├── symmetric.go │ └── symmetric_test.go ├── cryptostore │ ├── docs.go │ ├── enc_storage.go │ ├── encoder.go │ ├── encoder_test.go │ ├── generator.go │ ├── holder.go │ ├── holder_test.go │ └── storage_test.go ├── doc.go ├── embed_test.go ├── encode_test.go ├── example_test.go ├── glide.lock ├── glide.yaml ├── hash.go ├── hd │ ├── address.go │ ├── address_test.go │ ├── hd_test.go │ └── test.json ├── keys.toml ├── keys.yaml ├── keys │ ├── Makefile │ ├── bcrypt │ │ ├── base64.go │ │ └── bcrypt.go │ ├── bip39 │ │ ├── wordcodec.go │ │ └── wordcodec_test.go │ ├── cmd │ │ ├── README.md │ │ ├── common.go │ │ ├── get.go │ │ ├── keys │ │ │ └── main.go │ │ ├── list.go │ │ ├── new.go │ │ ├── root.go │ │ ├── serve.go │ │ ├── update.go │ │ └── utils.go │ ├── cryptostore │ │ ├── docs.go │ │ ├── enc_storage.go │ │ ├── encoder.go │ │ ├── encoder_test.go │ │ ├── generator.go │ │ ├── holder.go │ │ ├── holder_test.go │ │ └── storage_test.go │ ├── ecc.go │ ├── ecc_test.go │ ├── glide.lock │ ├── glide.yaml │ ├── hd │ │ ├── address.go │ │ ├── address_test.go │ │ ├── fundraiser_test.go │ │ ├── hd_test.go │ │ ├── hdpath.go │ │ ├── hdpath_test.go │ │ └── test.json │ ├── keybase.go │ ├── keybase_test.go │ ├── keys.go │ ├── keys.toml │ ├── mintkey.go │ ├── server │ │ ├── README.md │ │ ├── helpers.go │ │ ├── keys.go │ │ ├── keys_test.go │ │ ├── types │ │ │ └── keys.go │ │ └── valid.go │ ├── storage.go │ ├── storage │ │ ├── filestorage │ │ │ ├── main.go │ │ │ └── main_test.go │ │ └── memstorage │ │ │ ├── main.go │ │ │ └── main_test.go │ ├── transactions.go │ ├── tx │ │ ├── docs.go │ │ ├── multi.go │ │ ├── multi_test.go │ │ ├── one.go │ │ ├── one_test.go │ │ ├── reader.go │ │ └── reader_test.go │ ├── types.go │ ├── wire.go │ ├── wordcodec.go │ ├── wordcodec_test.go │ ├── wordcodecbench_test.go │ ├── wordlist │ │ ├── chinese_simplified.txt │ │ ├── english.txt │ │ ├── japanese.txt │ │ ├── spanish.txt │ │ └── wordlist.go │ └── words │ │ ├── ecc.go │ │ ├── ecc_test.go │ │ ├── wordcodec.go │ │ ├── wordcodec_test.go │ │ ├── wordcodecbench_test.go │ │ └── wordlist │ │ ├── chinese_simplified.txt │ │ ├── english.txt │ │ ├── japanese.txt │ │ ├── spanish.txt │ │ └── wordlist.go ├── ledger.go ├── ledger_common.go ├── ledger_secp256k1.go ├── ledger_test.go ├── merkle │ ├── doc.go │ ├── simple_map.go │ ├── simple_map_test.go │ ├── simple_proof.go │ ├── simple_tree.go │ ├── simple_tree_test.go │ └── types.go ├── nano │ ├── keys.go │ ├── keys_test.go │ ├── sign.go │ └── sign_test.go ├── priv_key.go ├── priv_key_test.go ├── privkeyinner_holder.go ├── privkeyinner_wrapper.go ├── proxy │ ├── README.md │ ├── helpers.go │ ├── keys.go │ ├── keys_test.go │ ├── types │ │ └── keys.go │ └── valid.go ├── pub_key.go ├── pub_key_test.go ├── pubkeyinner_holder.go ├── pubkeyinner_wrapper.go ├── random.go ├── server │ ├── README.md │ ├── helpers.go │ ├── keys.go │ ├── keys_test.go │ ├── types │ │ └── keys.go │ └── valid.go ├── signature.go ├── signature_test.go ├── signatureinner_holder.go ├── signatureinner_wrapper.go ├── storage.go ├── storage │ ├── filestorage │ │ ├── main.go │ │ └── main_test.go │ └── memstorage │ │ ├── main.go │ │ └── main_test.go ├── symmetric.go ├── symmetric_test.go ├── tests │ └── keys.sh ├── tmhash │ ├── hash.go │ └── hash_test.go ├── transactions.go ├── tx │ ├── docs.go │ ├── multi.go │ ├── multi_test.go │ ├── one.go │ ├── one_test.go │ ├── reader.go │ └── reader_test.go ├── version.go ├── wire.go └── xchacha20poly1305 │ ├── xchachapoly.go │ └── xchachapoly_test.go ├── data ├── genesis.json ├── key.json ├── key2.json ├── priv_validator.json └── priv_validator2.json ├── db.go ├── decorators.go ├── demo ├── clean.sh ├── data │ ├── chain1 │ │ ├── basecoin │ │ │ ├── genesis.json │ │ │ ├── key.json │ │ │ └── priv_validator.json │ │ ├── config.toml │ │ ├── genesis.json │ │ ├── key.json │ │ ├── priv_validator.json │ │ └── tendermint │ │ │ ├── config.toml │ │ │ ├── genesis.json │ │ │ └── priv_validator.json │ └── chain2 │ │ ├── basecoin │ │ ├── genesis.json │ │ ├── key.json │ │ └── priv_validator.json │ │ ├── config.toml │ │ ├── genesis.json │ │ ├── key.json │ │ ├── priv_validator.json │ │ └── tendermint │ │ ├── config.toml │ │ ├── genesis.json │ │ └── priv_validator.json └── start.sh ├── docker-compose.yml ├── docs ├── Makefile ├── architecture │ └── API.md ├── basecoin-basics.rst ├── basecoin-kubernetes.rst ├── basecoin-plugins.rst ├── basecoin-tool.rst ├── basics.md ├── conf.py ├── design.md ├── glossary.md ├── glossary.rst ├── go_basics.md ├── graphics │ ├── datastore.png │ ├── dispatcher.png │ ├── infographic.xml │ ├── middleware.png │ ├── overview-framework.png │ ├── overview-security.png │ ├── permission.png │ ├── tepleton-sdk-image.png │ └── tx.png ├── guide.md ├── guide │ ├── basecoin-basics.md │ ├── basecoin-design.md │ ├── basecoin-plugins.md │ ├── basecoin-tool.md │ ├── counter │ │ ├── cmd │ │ │ ├── counter │ │ │ │ └── main.go │ │ │ └── countercli │ │ │ │ ├── commands │ │ │ │ ├── counter.go │ │ │ │ └── query.go │ │ │ │ └── main.go │ │ └── plugins │ │ │ └── counter │ │ │ ├── counter.go │ │ │ └── counter_test.go │ ├── deployment.md │ ├── example-counter.md │ ├── example-plugin.md │ ├── ibc.md │ ├── install.md │ ├── key-management.md │ ├── more-examples.md │ ├── plugin-design.md │ ├── roles-and-multi-sig.md │ ├── shunit2 │ └── src │ │ └── example-plugin │ │ ├── cmd.go │ │ ├── main.go │ │ └── plugin.go ├── ibc.rst ├── index.rst ├── install.rst ├── key-management.rst ├── make.bat ├── overview.md ├── overview.rst ├── quark │ ├── glossary.md │ ├── overview.md │ └── stdlib.md ├── rest │ └── API_draft.md ├── roles-and-multi-sig.rst ├── stdlib.md ├── stdlib.rst ├── tepleton_logo.png └── web-inspriation.md ├── errors ├── abci.go ├── common.go ├── common_test.go ├── errors.go ├── helpers.go ├── main.go └── main_test.go ├── examples ├── basecoin │ ├── Makefile │ ├── account.go │ ├── account_store.go │ ├── app.go │ ├── app │ │ ├── app.go │ │ ├── app_test.go │ │ ├── baseapp.go │ │ ├── basecoin_app.go │ │ ├── capkeys.go │ │ ├── handler.go │ │ ├── init_baseapp.go │ │ ├── init_capkeys.go │ │ ├── init_handlers.go │ │ ├── init_routes.go │ │ ├── init_stores.go │ │ ├── msgs.go │ │ ├── routes.go │ │ ├── sdkapp.go │ │ ├── stores.go │ │ └── testapp.go │ ├── cmd │ │ ├── basecli │ │ │ ├── LIGHT_NODE.md │ │ │ ├── account.go │ │ │ ├── client.go │ │ │ ├── commands.go │ │ │ ├── key.go │ │ │ ├── main.go │ │ │ └── sendtx.go │ │ ├── basecoin │ │ │ ├── commands │ │ │ │ ├── ibc.go │ │ │ │ ├── init.go │ │ │ │ ├── key.go │ │ │ │ ├── relay.go │ │ │ │ ├── reset.go │ │ │ │ ├── root.go │ │ │ │ └── start.go │ │ │ └── main.go │ │ ├── basecoind │ │ │ └── main.go │ │ └── baseserver │ │ │ └── main.go │ ├── glide.lock │ ├── glide.yaml │ ├── main.go │ ├── tests │ │ └── cli │ │ │ ├── basictx.sh │ │ │ ├── ibc.sh │ │ │ ├── init-server.sh │ │ │ ├── init.sh │ │ │ ├── keys.sh │ │ │ ├── rest.sh │ │ │ ├── restart.sh │ │ │ ├── roles.sh │ │ │ └── rpc.sh │ ├── tools │ │ ├── Makefile │ │ ├── glide.lock │ │ ├── glide.yaml │ │ ├── go-vendorinstall │ │ │ └── main.go │ │ └── main.go │ ├── types │ │ ├── account.go │ │ └── account_test.go │ └── x │ │ ├── cool │ │ ├── commands │ │ │ ├── cooltx.go │ │ │ └── tx.go │ │ ├── errors.go │ │ ├── handler.go │ │ ├── keeper.go │ │ ├── mapper.go │ │ └── types.go │ │ ├── coolmodule │ │ ├── handler.go │ │ └── types.go │ │ └── pow │ │ ├── commands │ │ └── tx.go │ │ ├── errors.go │ │ ├── handler.go │ │ ├── handler_test.go │ │ ├── keeper.go │ │ ├── keeper_test.go │ │ ├── mapper.go │ │ ├── mapper_test.go │ │ ├── types.go │ │ └── types_test.go ├── chub │ ├── client.go │ ├── key.go │ ├── main.go │ ├── node.go │ └── version.go ├── counter │ ├── Makefile │ ├── cmd │ │ ├── counter │ │ │ └── main.go │ │ └── countercli │ │ │ ├── commands │ │ │ ├── counter.go │ │ │ └── query.go │ │ │ └── main.go │ ├── plugins │ │ └── counter │ │ │ ├── counter.go │ │ │ └── counter_test.go │ └── tests │ │ └── cli │ │ └── counter.sh ├── democoin │ ├── Makefile │ ├── app │ │ ├── app.go │ │ └── app_test.go │ ├── cmd │ │ ├── democli │ │ │ └── main.go │ │ └── democoind │ │ │ └── main.go │ ├── mock │ │ └── validator.go │ ├── types │ │ └── account.go │ └── x │ │ ├── assoc │ │ ├── validator_set.go │ │ └── validator_set_test.go │ │ ├── cool │ │ ├── app_test.go │ │ ├── client │ │ │ └── cli │ │ │ │ └── tx.go │ │ ├── commands │ │ │ └── tx.go │ │ ├── errors.go │ │ ├── handler.go │ │ ├── keeper.go │ │ ├── keeper_test.go │ │ ├── types.go │ │ └── wire.go │ │ ├── oracle │ │ ├── errors.go │ │ ├── handler.go │ │ ├── keeper.go │ │ ├── keeper_keys.go │ │ ├── oracle_test.go │ │ └── types.go │ │ ├── pow │ │ ├── app_test.go │ │ ├── client │ │ │ └── cli │ │ │ │ └── tx.go │ │ ├── commands │ │ │ └── tx.go │ │ ├── errors.go │ │ ├── handler.go │ │ ├── handler_test.go │ │ ├── keeper.go │ │ ├── keeper_test.go │ │ ├── mine.go │ │ ├── types.go │ │ ├── types_test.go │ │ └── wire.go │ │ └── simplestake │ │ ├── client │ │ └── cli │ │ │ └── commands.go │ │ ├── errors.go │ │ ├── handler.go │ │ ├── keeper.go │ │ ├── keeper_test.go │ │ ├── msgs.go │ │ ├── msgs_test.go │ │ ├── types.go │ │ └── wire.go ├── dummy │ ├── main.go │ └── tx.go ├── examples.md ├── eyes │ ├── Makefile │ ├── cmd │ │ ├── eyes │ │ │ ├── init.go │ │ │ └── main.go │ │ └── eyescli │ │ │ └── main.go │ ├── parser.go │ ├── tests │ │ └── cli │ │ │ └── eyes.sh │ └── tx.go ├── kvstore │ ├── kvstore │ ├── main.go │ └── tx.go ├── ton │ ├── toncli │ │ ├── client.go │ │ ├── key.go │ │ └── main.go │ └── tond │ │ └── main.go ├── toncli │ ├── client.go │ ├── key.go │ ├── main.go │ └── version.go └── tond │ ├── main.go │ ├── node.go │ └── version.go ├── exports.go ├── genesis.json ├── genesis ├── doc.go ├── parse.go ├── parse_test.go └── testdata │ └── genesis.json ├── glide.lock ├── glide.yaml ├── handler.go ├── handlers ├── base.go ├── context.go ├── middleware.go ├── sigs.go └── util.go ├── main.go ├── mock ├── app.go ├── app_test.go ├── helpers.go ├── store.go ├── store_test.go └── tx.go ├── modules ├── auth │ ├── bench_test.go │ ├── commands │ │ └── wrap.go │ ├── errors.go │ ├── errors_test.go │ ├── helpers_test.go │ ├── signature.go │ ├── signature_test.go │ ├── tx.go │ └── tx_test.go ├── base │ ├── chain.go │ ├── chain_test.go │ ├── commands │ │ └── wrap.go │ ├── errors.go │ ├── errors_test.go │ ├── helpers.go │ ├── logger.go │ ├── multiplexer.go │ ├── multiplexer_test.go │ ├── tx.go │ └── tx_test.go ├── bonus │ ├── doc.go │ ├── helpers.go │ ├── multiplexer.go │ └── multiplexer_test.go ├── coin │ ├── bench_test.go │ ├── coin.go │ ├── coin_test.go │ ├── commands │ │ ├── query.go │ │ └── tx.go │ ├── errors.go │ ├── genesis.go │ ├── handler.go │ ├── handler_test.go │ ├── helper.go │ ├── ibc_test.go │ ├── rest │ │ └── handlers.go │ ├── store.go │ ├── tx.go │ └── tx_test.go ├── etc │ ├── commands │ │ ├── query.go │ │ └── tx.go │ ├── errors.go │ ├── handler.go │ ├── handler_test.go │ ├── store.go │ └── tx.go ├── eyes │ ├── _gen.go │ ├── commands │ │ ├── query.go │ │ └── tx.go │ ├── errors.go │ ├── eyestxinner_wrapper.go │ ├── handler.go │ ├── handler_test.go │ ├── store.go │ └── tx.go ├── fee │ ├── commands │ │ └── wrap.go │ ├── error_test.go │ ├── errors.go │ ├── handler.go │ ├── handler_test.go │ └── tx.go ├── ibc │ ├── commands │ │ ├── query.go │ │ └── tx.go │ ├── errors.go │ ├── handler.go │ ├── ibc_test.go │ ├── keys.go │ ├── middleware.go │ ├── provider.go │ ├── provider_test.go │ ├── store.go │ ├── test_helpers.go │ └── tx.go ├── nonce │ ├── commands │ │ ├── query.go │ │ └── wrap.go │ ├── errors.go │ ├── replaycheck.go │ ├── rest │ │ └── handlers.go │ ├── store.go │ ├── tx.go │ └── tx_test.go ├── roles │ ├── commands │ │ ├── query.go │ │ ├── tx.go │ │ └── wrap.go │ ├── error.go │ ├── handler.go │ ├── handler_test.go │ ├── middleware.go │ ├── middleware_test.go │ ├── rest │ │ └── handlers.go │ ├── store.go │ ├── store_test.go │ └── tx.go └── util │ ├── chain.go │ ├── chain_test.go │ ├── commands │ └── wrap.go │ ├── errors.go │ ├── errors_test.go │ ├── logger.go │ ├── recovery.go │ └── recovery_test.go ├── networks ├── local │ ├── Makefile │ └── gaiadnode │ │ ├── Dockerfile │ │ └── wrapper.sh └── remote │ ├── README.rst │ ├── ansible │ ├── ansible.cfg │ ├── clear-config.yml │ ├── inventory │ │ ├── COPYING │ │ ├── digital_ocean.ini │ │ └── digital_ocean.py │ ├── logzio.yml │ ├── roles │ │ ├── clear-config │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── logzio │ │ │ ├── files │ │ │ │ └── journalbeat.service │ │ │ ├── handlers │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ └── templates │ │ │ │ └── journalbeat.yml.j2 │ │ ├── setup-validators │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ └── tasks │ │ │ │ └── main.yml │ │ ├── start │ │ │ └── tasks │ │ │ │ └── main.yml │ │ └── stop │ │ │ └── tasks │ │ │ └── main.yml │ ├── setup-validators.yml │ ├── start.yml │ ├── status.yml │ └── stop.yml │ └── terraform │ ├── README.rst │ ├── cluster │ ├── main.tf │ ├── outputs.tf │ └── variables.tf │ ├── files │ ├── gaiad.service │ └── terraform.sh │ └── main.tf ├── plugins ├── counter │ ├── counter.go │ └── counter_test.go ├── ibc │ ├── ibc.go │ └── ibc_test.go └── vote │ ├── vote.go │ └── vote_test.go ├── publish ├── basecoin-builder │ └── Dockerfile ├── dist.sh ├── dist_build.sh ├── print_test_account.go ├── print_txs.go └── publish.sh ├── results.go ├── scripts ├── basecoin-builder │ └── Dockerfile ├── dist.sh ├── dist_build.sh ├── install.sh ├── install_sdk_bsd.sh ├── install_sdk_ubuntu.sh ├── print_test_account.go ├── print_txs.go └── publish.sh ├── server ├── commands │ ├── init.go │ ├── key.go │ ├── relay.go │ ├── reset.go │ ├── root.go │ └── start.go ├── config │ └── config.go ├── constructors.go ├── context.go ├── export.go ├── init.go ├── init_test.go ├── key.go ├── mock │ ├── app.go │ ├── app_test.go │ ├── helpers.go │ ├── store.go │ ├── store_test.go │ └── tx.go ├── reset.go ├── show_node_id.go ├── show_validator.go ├── start.go ├── start_test.go ├── test_helpers.go ├── testnet.go ├── tm_cmds.go ├── util.go ├── util_test.go └── wire.go ├── stack ├── chain.go ├── chain_test.go ├── checkpoint.go ├── checkpoint_test.go ├── context.go ├── dispatcher.go ├── helpers.go ├── helpers_test.go ├── helperware.go ├── interface.go ├── logger.go ├── middleware.go ├── middleware_test.go ├── mock.go ├── multiplexer.go ├── prefixstore.go ├── recovery.go ├── recovery_test.go ├── signature.go ├── signature_test.go └── state_space_test.go ├── state ├── account_cache.go ├── bonsai.go ├── chainstate.go ├── chainstate_test.go ├── errors.go ├── execution.go ├── execution_test.go ├── kvcache.go ├── kvcache_test.go ├── kvstore.go ├── kvstore_test.go ├── log.go ├── merkle.go ├── merkle │ ├── state.go │ └── store.go ├── merkle_test.go ├── queue.go ├── queue_test.go ├── set.go ├── set_test.go ├── span.go ├── span_test.go ├── state.go ├── state_test.go └── store_test.go ├── store ├── cacheiterkvstore.go ├── cachekvstore.go ├── cachekvstore_test.go ├── cachemergeiterator.go ├── cachemultistore.go ├── dbstoreadapter.go ├── firstlast.go ├── gaskvstore.go ├── gaskvstore_test.go ├── iavlstore.go ├── iavlstore_test.go ├── memiterator.go ├── multistore.go ├── prefixstore.go ├── prefixstore_test.go ├── queue.go ├── queue_test.go ├── rootmultistore.go ├── rootmultistore_test.go ├── types.go └── wire.go ├── test.txt ├── test_cover.sh ├── tests ├── check_basecli.sh ├── cli │ ├── basictx.sh │ ├── common.sh │ ├── counter.sh │ ├── eyes.sh │ ├── ibc.sh │ ├── init-server.sh │ ├── init.sh │ ├── keys.sh │ ├── rest.sh │ ├── restart.sh │ ├── roles.sh │ ├── rpc.sh │ └── shunit2 ├── common.go ├── gobash.go ├── mock │ ├── app.go │ └── simulate_block.go ├── process.go ├── stdlib_test.go ├── tepleton │ └── main.go ├── test_cover.sh ├── tests.go ├── util.go └── wrsp │ └── tmsp_test.go ├── testutils └── testing.go ├── tools ├── Gopkg.lock ├── Gopkg.toml ├── Makefile ├── glide.lock ├── glide.yaml ├── go-vendorinstall │ └── main.go └── main.go ├── tx.go ├── tx_test.go ├── txinner_wrapper.go ├── txs ├── base.go ├── base_test.go ├── send.go ├── sigs.go └── sigs_test.go ├── types ├── _gen.go ├── abci.go ├── account.go ├── account_cache.go ├── account_test.go ├── codec.go ├── codespacer.go ├── codespacer_test.go ├── coin.go ├── coin_test.go ├── coins.go ├── coins_test.go ├── context.go ├── context_test.go ├── decorators.go ├── decorators_test.go ├── errors.go ├── errors_test.go ├── gas.go ├── gaskvstore.go ├── gaskvstore_test.go ├── genesis.go ├── handler.go ├── initgenesis.go ├── int.go ├── int_test.go ├── kvstore.go ├── kvstore_test.go ├── lib │ ├── linear.go │ ├── linear_test.go │ ├── mapper.go │ ├── mapper_test.go │ ├── stdlib.go │ └── stdlib_test.go ├── logger.go ├── logger_test.go ├── model.go ├── msg.go ├── native.go ├── plugin.go ├── plugin_test.go ├── rational.go ├── rational_test.go ├── result.go ├── results.go ├── signature.go ├── stake.go ├── stdlib.go ├── stdlib │ ├── stdlib.go │ └── stdlib_test.go ├── store.go ├── store_test.go ├── tags.go ├── tags_test.go ├── test_helpers.go ├── tx.go ├── tx_msg.go ├── tx_msg_test.go ├── tx_test.go ├── types.go ├── utils.go ├── utils_test.go ├── validator_set.go └── wire.go ├── util ├── chain.go ├── chain_test.go ├── commands │ └── wrap.go ├── decorators.go ├── doc.go ├── errors.go ├── errors_test.go ├── helpers.go ├── helpers_test.go ├── logger.go ├── mock.go ├── prefix.go ├── recovery.go └── recovery_test.go ├── version ├── command.go └── version.go ├── wire └── wire.go └── x ├── .attic ├── eyes │ ├── _gen.go │ ├── commands │ │ ├── query.go │ │ └── tx.go │ ├── errors.go │ ├── eyestxinner_wrapper.go │ ├── handler.go │ ├── handler_test.go │ ├── store.go │ └── tx.go ├── fee │ ├── commands │ │ └── wrap.go │ ├── error_test.go │ ├── errors.go │ ├── handler.go │ ├── handler_test.go │ └── tx.go ├── logger │ └── logger.go ├── nonce │ ├── commands │ │ ├── query.go │ │ └── wrap.go │ ├── errors.go │ ├── replaycheck.go │ ├── rest │ │ └── handlers.go │ ├── store.go │ ├── tx.go │ └── tx_test.go └── recover │ ├── recovery.go │ └── recovery_test.go ├── _attic ├── eyes │ ├── _gen.go │ ├── commands │ │ ├── query.go │ │ └── tx.go │ ├── errors.go │ ├── eyestxinner_wrapper.go │ ├── handler.go │ ├── handler_test.go │ ├── store.go │ └── tx.go ├── fee │ ├── commands │ │ └── wrap.go │ ├── error_test.go │ ├── errors.go │ ├── handler.go │ ├── handler_test.go │ └── tx.go ├── logger │ └── logger.go ├── nonce │ ├── commands │ │ ├── query.go │ │ └── wrap.go │ ├── errors.go │ ├── replaycheck.go │ ├── rest │ │ └── handlers.go │ ├── store.go │ ├── tx.go │ └── tx_test.go └── recover │ ├── recovery.go │ └── recovery_test.go ├── account ├── account.go ├── account_test.go └── store.go ├── auth ├── account.go ├── account_test.go ├── ante.go ├── ante_test.go ├── baseaccount.go ├── baseaccount_test.go ├── bench_test.go ├── client │ ├── cli │ │ └── account.go │ └── rest │ │ └── query.go ├── commands │ └── account.go ├── context.go ├── context_test.go ├── decorator.go ├── errors.go ├── errors_test.go ├── feekeeper.go ├── feekeeper_test.go ├── handler.go ├── helpers_test.go ├── mapper.go ├── mapper_test.go ├── mock │ ├── app.go │ ├── auth_app_test.go │ └── simulate_block.go ├── msgs.go ├── msgs_test.go ├── rest │ ├── query.go │ └── root.go ├── signature.go ├── signature_test.go ├── stdtx.go ├── stdtx_test.go ├── store.go ├── tx.go ├── tx_test.go ├── types.go └── wire.go ├── bank ├── app_test.go ├── bench_test.go ├── client │ ├── cli │ │ └── sendtx.go │ ├── rest │ │ └── sendtx.go │ └── util.go ├── commands │ ├── account.go │ └── sendtx.go ├── errors.go ├── handler.go ├── keeper.go ├── keeper_test.go ├── mapper.go ├── msgs.go ├── msgs_test.go ├── rest │ ├── root.go │ └── sendtx.go ├── store.go ├── test_helpers.go ├── tx.go ├── tx_test.go └── wire.go ├── baseaccount ├── baseaccount.go ├── baseaccount_test.go ├── handler.go ├── msgs.go ├── msgs_test.go └── wire.go ├── coin ├── _attic │ ├── bench_test.go │ ├── commands │ │ ├── query.go │ │ └── tx.go │ ├── genesis.go │ ├── handler.go │ ├── handler_test.go │ ├── helper.go │ ├── ibc_test.go │ ├── rest │ │ └── handlers.go │ └── store.go ├── bench_test.go ├── coin.go ├── coin_test.go ├── commands │ ├── query.go │ └── tx.go ├── decorator.go ├── errors.go ├── genesis.go ├── handler.go ├── handler_test.go ├── helper.go ├── ibc_test.go ├── rest │ └── handlers.go ├── store.go ├── tx.go ├── tx_test.go ├── types.go └── utils.go ├── coinstore ├── _attic │ ├── bench_test.go │ ├── commands │ │ ├── query.go │ │ └── tx.go │ ├── genesis.go │ ├── handler.go │ ├── handler_test.go │ ├── helper.go │ ├── ibc_test.go │ ├── rest │ │ └── handlers.go │ ├── store.go │ └── utils.go ├── commands │ ├── query.go │ └── tx.go ├── decorator.go ├── errors.go ├── genesis.go ├── handler.go ├── rest │ └── handlers.go ├── store.go ├── tx.go ├── tx_test.go └── utils.go ├── eyes ├── _gen.go ├── commands │ ├── query.go │ └── tx.go ├── errors.go ├── eyestxinner_wrapper.go ├── handler.go ├── handler_test.go ├── store.go └── tx.go ├── fee ├── commands │ └── wrap.go ├── error_test.go ├── errors.go ├── handler.go ├── handler_test.go └── tx.go ├── fee_distribution ├── keeper.go ├── keeper_test.go ├── movement.go └── types.go ├── gov ├── client │ ├── cli │ │ └── tx.go │ └── rest │ │ ├── rest.go │ │ └── util.go ├── depositsvotes.go ├── endblocker_test.go ├── errors.go ├── genesis.go ├── handler.go ├── keeper.go ├── keeper_keys.go ├── keeper_test.go ├── msgs.go ├── msgs_test.go ├── procedures.go ├── proposals.go ├── tally.go ├── tally_test.go ├── test_common.go └── wire.go ├── ibc ├── app_test.go ├── client │ ├── cli │ │ ├── ibctx.go │ │ └── relay.go │ └── rest │ │ └── transfer.go ├── commands │ ├── flags.go │ ├── helpers.go │ ├── ibctx.go │ ├── relay.go │ ├── root.go │ └── send.go ├── errors.go ├── handler.go ├── ibc_test.go ├── mapper.go ├── rest │ ├── root.go │ └── transfer.go ├── types.go ├── types_test.go └── wire.go ├── logger └── logger.go ├── mock ├── app.go ├── app_test.go ├── doc.go ├── random_simulate_blocks.go ├── test_utils.go └── types.go ├── nonce ├── commands │ ├── query.go │ └── wrap.go ├── errors.go ├── replaycheck.go ├── rest │ └── handlers.go ├── store.go ├── tx.go └── tx_test.go ├── recover ├── recovery.go └── recovery_test.go ├── sendtx ├── errors.go ├── handler.go ├── tx.go └── tx_test.go ├── simplestake ├── client │ └── cli │ │ └── commands.go ├── commands │ └── commands.go ├── errors.go ├── handler.go ├── keeper.go ├── keeper_test.go ├── msgs.go ├── msgs_test.go └── types.go ├── slashing ├── app_test.go ├── client │ ├── cli │ │ ├── flags.go │ │ ├── query.go │ │ └── tx.go │ └── rest │ │ ├── query.go │ │ ├── rest.go │ │ └── tx.go ├── errors.go ├── handler.go ├── handler_test.go ├── keeper.go ├── keeper_test.go ├── msg.go ├── msg_test.go ├── params.go ├── signing_info.go ├── signing_info_test.go ├── test_common.go ├── tick.go ├── tick_test.go └── wire.go ├── stake ├── app_test.go ├── client │ ├── cli │ │ ├── flags.go │ │ ├── query.go │ │ └── tx.go │ └── rest │ │ ├── query.go │ │ ├── rest.go │ │ └── tx.go ├── commands │ ├── export.go │ ├── flags.go │ ├── query.go │ └── tx.go ├── delegation.go ├── errors.go ├── fee_distribution.go ├── genesis.go ├── handler.go ├── handler_test.go ├── inflation.go ├── inflation_test.go ├── keeper.go ├── keeper │ ├── _store.md │ ├── delegation.go │ ├── delegation_test.go │ ├── inflation.go │ ├── inflation_test.go │ ├── keeper.go │ ├── keeper_test.go │ ├── key.go │ ├── sdk_types.go │ ├── slash.go │ ├── slash_test.go │ ├── test_common.go │ ├── validator.go │ └── validator_test.go ├── keeper_keys.go ├── keeper_test.go ├── mapper.go ├── mapper_test.go ├── msg.go ├── msg_test.go ├── params.go ├── pool.go ├── pool_test.go ├── rest │ └── query.go ├── shares.go ├── stake.go ├── store.go ├── store.md ├── store_test.go ├── tags │ └── tags.go ├── test_common.go ├── tick.go ├── tick_test.go ├── tx.go ├── tx_test.go ├── types.go ├── types │ ├── delegation.go │ ├── delegation_test.go │ ├── errors.go │ ├── genesis.go │ ├── msg.go │ ├── msg_test.go │ ├── params.go │ ├── params_test.go │ ├── pool.go │ ├── pool_test.go │ ├── shares.go │ ├── shares_test.go │ ├── test_common.go │ ├── test_utils.go │ ├── validator.go │ ├── validator_test.go │ └── wire.go ├── types_test.go ├── validator.go ├── validator_test.go ├── view_slash_keeper.go ├── view_slash_keeper_test.go └── wire.go ├── staking ├── commands │ └── commands.go ├── errors.go ├── handler.go ├── keeper.go ├── keeper_test.go ├── mapper.go ├── mapper_test.go ├── msgs.go ├── msgs_test.go ├── types.go └── types_test.go └── store ├── account.go ├── coin.go └── errors.go /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/.DS_Store -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/.dockerignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/Dockerfile.dev -------------------------------------------------------------------------------- /GoBasics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/GoBasics.md -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/Makefile -------------------------------------------------------------------------------- /Plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/Plugins.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/TODO -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/Vagrantfile -------------------------------------------------------------------------------- /_attic/app/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/app/app_test.go -------------------------------------------------------------------------------- /_attic/bonus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/bonus/doc.go -------------------------------------------------------------------------------- /_attic/bonus/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/bonus/helpers.go -------------------------------------------------------------------------------- /_attic/client/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/client/common.go -------------------------------------------------------------------------------- /_attic/client/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/client/errors.go -------------------------------------------------------------------------------- /_attic/client/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/client/keys.go -------------------------------------------------------------------------------- /_attic/client/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/client/proxy.go -------------------------------------------------------------------------------- /_attic/client/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/client/query.go -------------------------------------------------------------------------------- /_attic/coins/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/coins/genesis.go -------------------------------------------------------------------------------- /_attic/coins/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/coins/handler.go -------------------------------------------------------------------------------- /_attic/coins/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/coins/helper.go -------------------------------------------------------------------------------- /_attic/coins/ibc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/coins/ibc_test.go -------------------------------------------------------------------------------- /_attic/coins/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/coins/store.go -------------------------------------------------------------------------------- /_attic/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/docs/Makefile -------------------------------------------------------------------------------- /_attic/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/docs/conf.py -------------------------------------------------------------------------------- /_attic/docs/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/docs/glossary.rst -------------------------------------------------------------------------------- /_attic/docs/guide/shunit2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/docs/guide/shunit2 -------------------------------------------------------------------------------- /_attic/docs/ibc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/docs/ibc.rst -------------------------------------------------------------------------------- /_attic/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/docs/index.rst -------------------------------------------------------------------------------- /_attic/docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/docs/install.rst -------------------------------------------------------------------------------- /_attic/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/docs/make.bat -------------------------------------------------------------------------------- /_attic/docs/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/docs/overview.rst -------------------------------------------------------------------------------- /_attic/docs/stdlib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/docs/stdlib.rst -------------------------------------------------------------------------------- /_attic/examples/basecoin/tests/cli/ibc.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_attic/genesis/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/genesis/doc.go -------------------------------------------------------------------------------- /_attic/genesis/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/genesis/parse.go -------------------------------------------------------------------------------- /_attic/ibc/commands/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/ibc/commands/tx.go -------------------------------------------------------------------------------- /_attic/ibc/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/ibc/errors.go -------------------------------------------------------------------------------- /_attic/ibc/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/ibc/handler.go -------------------------------------------------------------------------------- /_attic/ibc/ibc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/ibc/ibc_test.go -------------------------------------------------------------------------------- /_attic/ibc/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/ibc/keys.go -------------------------------------------------------------------------------- /_attic/ibc/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/ibc/middleware.go -------------------------------------------------------------------------------- /_attic/ibc/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/ibc/provider.go -------------------------------------------------------------------------------- /_attic/ibc/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/ibc/store.go -------------------------------------------------------------------------------- /_attic/ibc/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/ibc/tx.go -------------------------------------------------------------------------------- /_attic/modules/ibc/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/modules/ibc/tx.go -------------------------------------------------------------------------------- /_attic/roles/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/roles/error.go -------------------------------------------------------------------------------- /_attic/roles/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/roles/handler.go -------------------------------------------------------------------------------- /_attic/roles/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/roles/store.go -------------------------------------------------------------------------------- /_attic/roles/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/roles/tx.go -------------------------------------------------------------------------------- /_attic/stack/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/stack/context.go -------------------------------------------------------------------------------- /_attic/stack/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/stack/helpers.go -------------------------------------------------------------------------------- /_attic/stack/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/stack/interface.go -------------------------------------------------------------------------------- /_attic/stack/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/stack/mock.go -------------------------------------------------------------------------------- /_attic/stack/recovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/stack/recovery.go -------------------------------------------------------------------------------- /_attic/store/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_attic/store/queue.go -------------------------------------------------------------------------------- /_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/_gen.go -------------------------------------------------------------------------------- /app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/app/app.go -------------------------------------------------------------------------------- /app/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/app/app_test.go -------------------------------------------------------------------------------- /app/app_val_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/app/app_val_test.go -------------------------------------------------------------------------------- /app/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/app/base.go -------------------------------------------------------------------------------- /app/bc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/app/bc.go -------------------------------------------------------------------------------- /app/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/app/doc.go -------------------------------------------------------------------------------- /app/example/dummy/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/app/example/dummy/main.go -------------------------------------------------------------------------------- /app/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/app/genesis.go -------------------------------------------------------------------------------- /app/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/app/genesis_test.go -------------------------------------------------------------------------------- /app/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/app/init.go -------------------------------------------------------------------------------- /app/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/app/log.go -------------------------------------------------------------------------------- /app/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/app/query.go -------------------------------------------------------------------------------- /app/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/app/router.go -------------------------------------------------------------------------------- /app/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/app/store.go -------------------------------------------------------------------------------- /app/testdata/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/app/testdata/genesis.json -------------------------------------------------------------------------------- /app/tmsp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/app/tmsp_test.go -------------------------------------------------------------------------------- /app/val_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/app/val_test.go -------------------------------------------------------------------------------- /baseapp/baseapp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/baseapp/baseapp.go -------------------------------------------------------------------------------- /baseapp/baseapp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/baseapp/baseapp_test.go -------------------------------------------------------------------------------- /baseapp/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/baseapp/context.go -------------------------------------------------------------------------------- /baseapp/data/TestBasic.db/CURRENT: -------------------------------------------------------------------------------- 1 | MANIFEST-000093 2 | -------------------------------------------------------------------------------- /baseapp/data/TestBasic.db/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baseapp/data/TestBasic.db/LOG: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baseapp/data/TestBasic.db/MANIFEST-000093: -------------------------------------------------------------------------------- 1 | ft3"leveldb.BytewiseComparator\^ -------------------------------------------------------------------------------- /baseapp/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/baseapp/doc.go -------------------------------------------------------------------------------- /baseapp/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/baseapp/genesis.go -------------------------------------------------------------------------------- /baseapp/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/baseapp/helpers.go -------------------------------------------------------------------------------- /baseapp/multimsg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/baseapp/multimsg_test.go -------------------------------------------------------------------------------- /baseapp/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/baseapp/query.go -------------------------------------------------------------------------------- /baseapp/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/baseapp/router.go -------------------------------------------------------------------------------- /baseapp/testapp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/baseapp/testapp.go -------------------------------------------------------------------------------- /baseapp/testtx/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/baseapp/testtx/tx.go -------------------------------------------------------------------------------- /benchmarks/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/benchmarks/app_test.go -------------------------------------------------------------------------------- /blackstar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/blackstar.go -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/circle.yml -------------------------------------------------------------------------------- /client/builder/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/builder/builder.go -------------------------------------------------------------------------------- /client/commands/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/commands/common.go -------------------------------------------------------------------------------- /client/commands/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/commands/init.go -------------------------------------------------------------------------------- /client/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/common.go -------------------------------------------------------------------------------- /client/context/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/context/helpers.go -------------------------------------------------------------------------------- /client/context/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/context/types.go -------------------------------------------------------------------------------- /client/context/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/context/viper.go -------------------------------------------------------------------------------- /client/core/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/core/context.go -------------------------------------------------------------------------------- /client/core/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/core/core.go -------------------------------------------------------------------------------- /client/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/errors.go -------------------------------------------------------------------------------- /client/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/errors_test.go -------------------------------------------------------------------------------- /client/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/flags.go -------------------------------------------------------------------------------- /client/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/helpers.go -------------------------------------------------------------------------------- /client/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/input.go -------------------------------------------------------------------------------- /client/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/keys.go -------------------------------------------------------------------------------- /client/keys/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/keys/add.go -------------------------------------------------------------------------------- /client/keys/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/keys/delete.go -------------------------------------------------------------------------------- /client/keys/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/keys/get.go -------------------------------------------------------------------------------- /client/keys/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/keys/list.go -------------------------------------------------------------------------------- /client/keys/new.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/keys/new.go -------------------------------------------------------------------------------- /client/keys/recover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/keys/recover.go -------------------------------------------------------------------------------- /client/keys/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/keys/root.go -------------------------------------------------------------------------------- /client/keys/show.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/keys/show.go -------------------------------------------------------------------------------- /client/keys/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/keys/update.go -------------------------------------------------------------------------------- /client/keys/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/keys/utils.go -------------------------------------------------------------------------------- /client/keys/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/keys/wire.go -------------------------------------------------------------------------------- /client/lcd/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/lcd/helpers.go -------------------------------------------------------------------------------- /client/lcd/keys.db/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/lcd/keys.db/LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/lcd/keys.db/LOG -------------------------------------------------------------------------------- /client/lcd/lcd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/lcd/lcd_test.go -------------------------------------------------------------------------------- /client/lcd/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/lcd/main_test.go -------------------------------------------------------------------------------- /client/lcd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/lcd/root.go -------------------------------------------------------------------------------- /client/lcd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/lcd/version.go -------------------------------------------------------------------------------- /client/lcd/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/lcd/wire.go -------------------------------------------------------------------------------- /client/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/node.go -------------------------------------------------------------------------------- /client/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/proxy.go -------------------------------------------------------------------------------- /client/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/query.go -------------------------------------------------------------------------------- /client/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/query_test.go -------------------------------------------------------------------------------- /client/rest/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/rest/cmd.go -------------------------------------------------------------------------------- /client/rest/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/rest/handlers.go -------------------------------------------------------------------------------- /client/rest/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/rest/helpers.go -------------------------------------------------------------------------------- /client/rest/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/rest/proxy.go -------------------------------------------------------------------------------- /client/rest/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/rest/types.go -------------------------------------------------------------------------------- /client/rpc/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/rpc/block.go -------------------------------------------------------------------------------- /client/rpc/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/rpc/root.go -------------------------------------------------------------------------------- /client/rpc/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/rpc/status.go -------------------------------------------------------------------------------- /client/rpc/validators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/rpc/validators.go -------------------------------------------------------------------------------- /client/rpc/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/rpc/wire.go -------------------------------------------------------------------------------- /client/tx/broadcast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/tx/broadcast.go -------------------------------------------------------------------------------- /client/tx/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/tx/query.go -------------------------------------------------------------------------------- /client/tx/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/tx/root.go -------------------------------------------------------------------------------- /client/tx/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/tx/search.go -------------------------------------------------------------------------------- /client/tx/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/tx/sign.go -------------------------------------------------------------------------------- /client/tx/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/client/tx/tx.go -------------------------------------------------------------------------------- /clitest/basictx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/clitest/basictx.sh -------------------------------------------------------------------------------- /clitest/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/clitest/common.sh -------------------------------------------------------------------------------- /clitest/ibc.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "abi test not implemented" 4 | -------------------------------------------------------------------------------- /cmd/adam/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/adam/main.go -------------------------------------------------------------------------------- /cmd/basecli/LIGHT_NODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/basecli/LIGHT_NODE.md -------------------------------------------------------------------------------- /cmd/basecli/adapters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/basecli/adapters.go -------------------------------------------------------------------------------- /cmd/basecli/apptx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/basecli/apptx.go -------------------------------------------------------------------------------- /cmd/basecli/counter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/basecli/counter.go -------------------------------------------------------------------------------- /cmd/basecli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/basecli/main.go -------------------------------------------------------------------------------- /cmd/basecli/sendtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/basecli/sendtx.go -------------------------------------------------------------------------------- /cmd/basecoin/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/basecoin/account.go -------------------------------------------------------------------------------- /cmd/basecoin/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/basecoin/cmd.go -------------------------------------------------------------------------------- /cmd/basecoin/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/basecoin/flags.go -------------------------------------------------------------------------------- /cmd/basecoin/ibc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/basecoin/ibc.go -------------------------------------------------------------------------------- /cmd/basecoin/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/basecoin/main.go -------------------------------------------------------------------------------- /cmd/basecoin/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/basecoin/query.go -------------------------------------------------------------------------------- /cmd/basecoin/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/basecoin/start.go -------------------------------------------------------------------------------- /cmd/basecoin/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/basecoin/tx.go -------------------------------------------------------------------------------- /cmd/basecoin/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/basecoin/utils.go -------------------------------------------------------------------------------- /cmd/baseserver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/baseserver/main.go -------------------------------------------------------------------------------- /cmd/commands/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/commands/flags.go -------------------------------------------------------------------------------- /cmd/commands/ibc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/commands/ibc.go -------------------------------------------------------------------------------- /cmd/commands/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/commands/init.go -------------------------------------------------------------------------------- /cmd/commands/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/commands/key.go -------------------------------------------------------------------------------- /cmd/commands/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/commands/log.go -------------------------------------------------------------------------------- /cmd/commands/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/commands/query.go -------------------------------------------------------------------------------- /cmd/commands/relay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/commands/relay.go -------------------------------------------------------------------------------- /cmd/commands/reset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/commands/reset.go -------------------------------------------------------------------------------- /cmd/commands/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/commands/root.go -------------------------------------------------------------------------------- /cmd/commands/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/commands/start.go -------------------------------------------------------------------------------- /cmd/commands/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/commands/tx.go -------------------------------------------------------------------------------- /cmd/commands/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/commands/utils.go -------------------------------------------------------------------------------- /cmd/commands/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/commands/version.go -------------------------------------------------------------------------------- /cmd/counter/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/counter/cmd.go -------------------------------------------------------------------------------- /cmd/counter/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/counter/main.go -------------------------------------------------------------------------------- /cmd/countercli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/countercli/main.go -------------------------------------------------------------------------------- /cmd/eyes/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/eyes/init.go -------------------------------------------------------------------------------- /cmd/eyes/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/eyes/main.go -------------------------------------------------------------------------------- /cmd/eyescli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/eyescli/main.go -------------------------------------------------------------------------------- /cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/main.go -------------------------------------------------------------------------------- /cmd/paytovote/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/paytovote/main.go -------------------------------------------------------------------------------- /cmd/ton/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/ton/app/app.go -------------------------------------------------------------------------------- /cmd/ton/app/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/ton/app/app_test.go -------------------------------------------------------------------------------- /cmd/ton/app/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/ton/app/genesis.go -------------------------------------------------------------------------------- /cmd/ton/cmd/tond/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/ton/cmd/tond/main.go -------------------------------------------------------------------------------- /cmd/toncli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/toncli/main.go -------------------------------------------------------------------------------- /cmd/tond/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/cmd/tond/main.go -------------------------------------------------------------------------------- /commands/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/commands/common.go -------------------------------------------------------------------------------- /commands/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/commands/init.go -------------------------------------------------------------------------------- /commands/proofs/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/commands/proofs/get.go -------------------------------------------------------------------------------- /commands/proofs/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/commands/proofs/root.go -------------------------------------------------------------------------------- /commands/proofs/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/commands/proofs/state.go -------------------------------------------------------------------------------- /commands/proofs/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/commands/proofs/tx.go -------------------------------------------------------------------------------- /commands/proxy/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/commands/proxy/root.go -------------------------------------------------------------------------------- /commands/rpc/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/commands/rpc/helpers.go -------------------------------------------------------------------------------- /commands/rpc/insecure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/commands/rpc/insecure.go -------------------------------------------------------------------------------- /commands/rpc/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/commands/rpc/root.go -------------------------------------------------------------------------------- /commands/rpc/secure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/commands/rpc/secure.go -------------------------------------------------------------------------------- /commands/seeds/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/commands/seeds/export.go -------------------------------------------------------------------------------- /commands/seeds/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/commands/seeds/import.go -------------------------------------------------------------------------------- /commands/seeds/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/commands/seeds/root.go -------------------------------------------------------------------------------- /commands/seeds/show.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/commands/seeds/show.go -------------------------------------------------------------------------------- /commands/seeds/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/commands/seeds/update.go -------------------------------------------------------------------------------- /commands/txs/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/commands/txs/helpers.go -------------------------------------------------------------------------------- /commands/txs/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/commands/txs/root.go -------------------------------------------------------------------------------- /common/testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/common/testing.go -------------------------------------------------------------------------------- /context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/context.go -------------------------------------------------------------------------------- /crypto/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/CHANGELOG.md -------------------------------------------------------------------------------- /crypto/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/Gopkg.lock -------------------------------------------------------------------------------- /crypto/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/Gopkg.toml -------------------------------------------------------------------------------- /crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/LICENSE -------------------------------------------------------------------------------- /crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/Makefile -------------------------------------------------------------------------------- /crypto/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crypto/_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/_gen.go -------------------------------------------------------------------------------- /crypto/_nano/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/_nano/keys.go -------------------------------------------------------------------------------- /crypto/_nano/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/_nano/keys_test.go -------------------------------------------------------------------------------- /crypto/_nano/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/_nano/sign.go -------------------------------------------------------------------------------- /crypto/_nano/sign_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/_nano/sign_test.go -------------------------------------------------------------------------------- /crypto/amino.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/amino.go -------------------------------------------------------------------------------- /crypto/armor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/armor.go -------------------------------------------------------------------------------- /crypto/armor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/armor_test.go -------------------------------------------------------------------------------- /crypto/bcrypt/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/bcrypt/base64.go -------------------------------------------------------------------------------- /crypto/bcrypt/bcrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/bcrypt/bcrypt.go -------------------------------------------------------------------------------- /crypto/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/circle.yml -------------------------------------------------------------------------------- /crypto/cmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/cmd/README.md -------------------------------------------------------------------------------- /crypto/cmd/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/cmd/common.go -------------------------------------------------------------------------------- /crypto/cmd/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/cmd/delete.go -------------------------------------------------------------------------------- /crypto/cmd/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/cmd/get.go -------------------------------------------------------------------------------- /crypto/cmd/keys/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/cmd/keys/main.go -------------------------------------------------------------------------------- /crypto/cmd/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/cmd/list.go -------------------------------------------------------------------------------- /crypto/cmd/new.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/cmd/new.go -------------------------------------------------------------------------------- /crypto/cmd/recover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/cmd/recover.go -------------------------------------------------------------------------------- /crypto/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/cmd/root.go -------------------------------------------------------------------------------- /crypto/cmd/serve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/cmd/serve.go -------------------------------------------------------------------------------- /crypto/cmd/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/cmd/update.go -------------------------------------------------------------------------------- /crypto/cmd/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/cmd/utils.go -------------------------------------------------------------------------------- /crypto/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/crypto.go -------------------------------------------------------------------------------- /crypto/crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/crypto/Makefile -------------------------------------------------------------------------------- /crypto/crypto/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crypto/crypto/armor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/crypto/armor.go -------------------------------------------------------------------------------- /crypto/crypto/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/crypto/crypto.go -------------------------------------------------------------------------------- /crypto/crypto/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/crypto/glide.yaml -------------------------------------------------------------------------------- /crypto/crypto/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/crypto/hash.go -------------------------------------------------------------------------------- /crypto/crypto/priv_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/crypto/priv_key.go -------------------------------------------------------------------------------- /crypto/crypto/pub_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/crypto/pub_key.go -------------------------------------------------------------------------------- /crypto/crypto/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/crypto/random.go -------------------------------------------------------------------------------- /crypto/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/doc.go -------------------------------------------------------------------------------- /crypto/embed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/embed_test.go -------------------------------------------------------------------------------- /crypto/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/encode_test.go -------------------------------------------------------------------------------- /crypto/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/example_test.go -------------------------------------------------------------------------------- /crypto/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/glide.lock -------------------------------------------------------------------------------- /crypto/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/glide.yaml -------------------------------------------------------------------------------- /crypto/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/hash.go -------------------------------------------------------------------------------- /crypto/hd/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/hd/address.go -------------------------------------------------------------------------------- /crypto/hd/address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/hd/address_test.go -------------------------------------------------------------------------------- /crypto/hd/hd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/hd/hd_test.go -------------------------------------------------------------------------------- /crypto/hd/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/hd/test.json -------------------------------------------------------------------------------- /crypto/keys.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys.toml -------------------------------------------------------------------------------- /crypto/keys.yaml: -------------------------------------------------------------------------------- 1 | name: tepleton 2 | -------------------------------------------------------------------------------- /crypto/keys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/Makefile -------------------------------------------------------------------------------- /crypto/keys/cmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/cmd/README.md -------------------------------------------------------------------------------- /crypto/keys/cmd/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/cmd/common.go -------------------------------------------------------------------------------- /crypto/keys/cmd/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/cmd/get.go -------------------------------------------------------------------------------- /crypto/keys/cmd/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/cmd/list.go -------------------------------------------------------------------------------- /crypto/keys/cmd/new.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/cmd/new.go -------------------------------------------------------------------------------- /crypto/keys/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/cmd/root.go -------------------------------------------------------------------------------- /crypto/keys/cmd/serve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/cmd/serve.go -------------------------------------------------------------------------------- /crypto/keys/cmd/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/cmd/update.go -------------------------------------------------------------------------------- /crypto/keys/cmd/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/cmd/utils.go -------------------------------------------------------------------------------- /crypto/keys/ecc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/ecc.go -------------------------------------------------------------------------------- /crypto/keys/ecc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/ecc_test.go -------------------------------------------------------------------------------- /crypto/keys/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/glide.lock -------------------------------------------------------------------------------- /crypto/keys/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/glide.yaml -------------------------------------------------------------------------------- /crypto/keys/hd/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/hd/address.go -------------------------------------------------------------------------------- /crypto/keys/hd/hd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/hd/hd_test.go -------------------------------------------------------------------------------- /crypto/keys/hd/hdpath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/hd/hdpath.go -------------------------------------------------------------------------------- /crypto/keys/hd/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/hd/test.json -------------------------------------------------------------------------------- /crypto/keys/keybase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/keybase.go -------------------------------------------------------------------------------- /crypto/keys/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/keys.go -------------------------------------------------------------------------------- /crypto/keys/keys.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/keys.toml -------------------------------------------------------------------------------- /crypto/keys/mintkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/mintkey.go -------------------------------------------------------------------------------- /crypto/keys/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/storage.go -------------------------------------------------------------------------------- /crypto/keys/tx/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/tx/docs.go -------------------------------------------------------------------------------- /crypto/keys/tx/multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/tx/multi.go -------------------------------------------------------------------------------- /crypto/keys/tx/one.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/tx/one.go -------------------------------------------------------------------------------- /crypto/keys/tx/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/tx/reader.go -------------------------------------------------------------------------------- /crypto/keys/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/types.go -------------------------------------------------------------------------------- /crypto/keys/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/wire.go -------------------------------------------------------------------------------- /crypto/keys/wordcodec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/wordcodec.go -------------------------------------------------------------------------------- /crypto/keys/wordlist/japanese.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crypto/keys/words/ecc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/keys/words/ecc.go -------------------------------------------------------------------------------- /crypto/keys/words/wordlist/english.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crypto/keys/words/wordlist/spanish.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crypto/ledger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/ledger.go -------------------------------------------------------------------------------- /crypto/ledger_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/ledger_common.go -------------------------------------------------------------------------------- /crypto/ledger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/ledger_test.go -------------------------------------------------------------------------------- /crypto/merkle/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/merkle/doc.go -------------------------------------------------------------------------------- /crypto/merkle/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/merkle/types.go -------------------------------------------------------------------------------- /crypto/nano/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/nano/keys.go -------------------------------------------------------------------------------- /crypto/nano/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/nano/keys_test.go -------------------------------------------------------------------------------- /crypto/nano/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/nano/sign.go -------------------------------------------------------------------------------- /crypto/nano/sign_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/nano/sign_test.go -------------------------------------------------------------------------------- /crypto/priv_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/priv_key.go -------------------------------------------------------------------------------- /crypto/priv_key_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/priv_key_test.go -------------------------------------------------------------------------------- /crypto/proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/proxy/README.md -------------------------------------------------------------------------------- /crypto/proxy/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/proxy/helpers.go -------------------------------------------------------------------------------- /crypto/proxy/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/proxy/keys.go -------------------------------------------------------------------------------- /crypto/proxy/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/proxy/keys_test.go -------------------------------------------------------------------------------- /crypto/proxy/valid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/proxy/valid.go -------------------------------------------------------------------------------- /crypto/pub_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/pub_key.go -------------------------------------------------------------------------------- /crypto/pub_key_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/pub_key_test.go -------------------------------------------------------------------------------- /crypto/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/random.go -------------------------------------------------------------------------------- /crypto/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/server/README.md -------------------------------------------------------------------------------- /crypto/server/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/server/helpers.go -------------------------------------------------------------------------------- /crypto/server/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/server/keys.go -------------------------------------------------------------------------------- /crypto/server/valid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/server/valid.go -------------------------------------------------------------------------------- /crypto/signature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/signature.go -------------------------------------------------------------------------------- /crypto/signature_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/signature_test.go -------------------------------------------------------------------------------- /crypto/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/storage.go -------------------------------------------------------------------------------- /crypto/symmetric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/symmetric.go -------------------------------------------------------------------------------- /crypto/symmetric_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/symmetric_test.go -------------------------------------------------------------------------------- /crypto/tests/keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/tests/keys.sh -------------------------------------------------------------------------------- /crypto/tmhash/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/tmhash/hash.go -------------------------------------------------------------------------------- /crypto/transactions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/transactions.go -------------------------------------------------------------------------------- /crypto/tx/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/tx/docs.go -------------------------------------------------------------------------------- /crypto/tx/multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/tx/multi.go -------------------------------------------------------------------------------- /crypto/tx/multi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/tx/multi_test.go -------------------------------------------------------------------------------- /crypto/tx/one.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/tx/one.go -------------------------------------------------------------------------------- /crypto/tx/one_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/tx/one_test.go -------------------------------------------------------------------------------- /crypto/tx/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/tx/reader.go -------------------------------------------------------------------------------- /crypto/tx/reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/tx/reader_test.go -------------------------------------------------------------------------------- /crypto/version.go: -------------------------------------------------------------------------------- 1 | package crypto 2 | 3 | const Version = "0.9.0" -------------------------------------------------------------------------------- /crypto/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/crypto/wire.go -------------------------------------------------------------------------------- /data/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/data/genesis.json -------------------------------------------------------------------------------- /data/key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/data/key.json -------------------------------------------------------------------------------- /data/key2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/data/key2.json -------------------------------------------------------------------------------- /data/priv_validator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/data/priv_validator.json -------------------------------------------------------------------------------- /data/priv_validator2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/data/priv_validator2.json -------------------------------------------------------------------------------- /db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/db.go -------------------------------------------------------------------------------- /decorators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/decorators.go -------------------------------------------------------------------------------- /demo/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/demo/clean.sh -------------------------------------------------------------------------------- /demo/data/chain1/key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/demo/data/chain1/key.json -------------------------------------------------------------------------------- /demo/data/chain2/key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/demo/data/chain2/key.json -------------------------------------------------------------------------------- /demo/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/demo/start.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/architecture/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/architecture/API.md -------------------------------------------------------------------------------- /docs/basecoin-basics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/basecoin-basics.rst -------------------------------------------------------------------------------- /docs/basecoin-plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/basecoin-plugins.rst -------------------------------------------------------------------------------- /docs/basecoin-tool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/basecoin-tool.rst -------------------------------------------------------------------------------- /docs/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/basics.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/design.md -------------------------------------------------------------------------------- /docs/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/glossary.md -------------------------------------------------------------------------------- /docs/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/glossary.rst -------------------------------------------------------------------------------- /docs/go_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/go_basics.md -------------------------------------------------------------------------------- /docs/graphics/tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/graphics/tx.png -------------------------------------------------------------------------------- /docs/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/guide.md -------------------------------------------------------------------------------- /docs/guide/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/guide/deployment.md -------------------------------------------------------------------------------- /docs/guide/ibc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/guide/ibc.md -------------------------------------------------------------------------------- /docs/guide/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/guide/install.md -------------------------------------------------------------------------------- /docs/guide/shunit2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/guide/shunit2 -------------------------------------------------------------------------------- /docs/ibc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/ibc.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/key-management.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/key-management.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/overview.md -------------------------------------------------------------------------------- /docs/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/overview.rst -------------------------------------------------------------------------------- /docs/quark/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/quark/glossary.md -------------------------------------------------------------------------------- /docs/quark/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/quark/overview.md -------------------------------------------------------------------------------- /docs/quark/stdlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/quark/stdlib.md -------------------------------------------------------------------------------- /docs/rest/API_draft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/rest/API_draft.md -------------------------------------------------------------------------------- /docs/stdlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/stdlib.md -------------------------------------------------------------------------------- /docs/stdlib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/stdlib.rst -------------------------------------------------------------------------------- /docs/tepleton_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/tepleton_logo.png -------------------------------------------------------------------------------- /docs/web-inspriation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/docs/web-inspriation.md -------------------------------------------------------------------------------- /errors/abci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/errors/abci.go -------------------------------------------------------------------------------- /errors/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/errors/common.go -------------------------------------------------------------------------------- /errors/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/errors/common_test.go -------------------------------------------------------------------------------- /errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/errors/errors.go -------------------------------------------------------------------------------- /errors/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/errors/helpers.go -------------------------------------------------------------------------------- /errors/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/errors/main.go -------------------------------------------------------------------------------- /errors/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/errors/main_test.go -------------------------------------------------------------------------------- /examples/basecoin/app.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /examples/basecoin/cmd/basecoin/commands/relay.go: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/basecoin/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/basecoin/main.go -------------------------------------------------------------------------------- /examples/basecoin/tests/cli/ibc.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/chub/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/chub/client.go -------------------------------------------------------------------------------- /examples/chub/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/chub/key.go -------------------------------------------------------------------------------- /examples/chub/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/chub/main.go -------------------------------------------------------------------------------- /examples/chub/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/chub/node.go -------------------------------------------------------------------------------- /examples/chub/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/chub/version.go -------------------------------------------------------------------------------- /examples/counter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/counter/Makefile -------------------------------------------------------------------------------- /examples/dummy/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/dummy/main.go -------------------------------------------------------------------------------- /examples/dummy/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/dummy/tx.go -------------------------------------------------------------------------------- /examples/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/examples.md -------------------------------------------------------------------------------- /examples/eyes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/eyes/Makefile -------------------------------------------------------------------------------- /examples/eyes/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/eyes/parser.go -------------------------------------------------------------------------------- /examples/eyes/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/eyes/tx.go -------------------------------------------------------------------------------- /examples/kvstore/kvstore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/kvstore/kvstore -------------------------------------------------------------------------------- /examples/kvstore/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/kvstore/main.go -------------------------------------------------------------------------------- /examples/kvstore/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/kvstore/tx.go -------------------------------------------------------------------------------- /examples/ton/tond/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/ton/tond/main.go -------------------------------------------------------------------------------- /examples/toncli/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/toncli/client.go -------------------------------------------------------------------------------- /examples/toncli/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/toncli/key.go -------------------------------------------------------------------------------- /examples/toncli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/toncli/main.go -------------------------------------------------------------------------------- /examples/tond/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/tond/main.go -------------------------------------------------------------------------------- /examples/tond/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/tond/node.go -------------------------------------------------------------------------------- /examples/tond/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/examples/tond/version.go -------------------------------------------------------------------------------- /exports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/exports.go -------------------------------------------------------------------------------- /genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/genesis.json -------------------------------------------------------------------------------- /genesis/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/genesis/doc.go -------------------------------------------------------------------------------- /genesis/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/genesis/parse.go -------------------------------------------------------------------------------- /genesis/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/genesis/parse_test.go -------------------------------------------------------------------------------- /glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/glide.lock -------------------------------------------------------------------------------- /glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/glide.yaml -------------------------------------------------------------------------------- /handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/handler.go -------------------------------------------------------------------------------- /handlers/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/handlers/base.go -------------------------------------------------------------------------------- /handlers/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/handlers/context.go -------------------------------------------------------------------------------- /handlers/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/handlers/middleware.go -------------------------------------------------------------------------------- /handlers/sigs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/handlers/sigs.go -------------------------------------------------------------------------------- /handlers/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/handlers/util.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/main.go -------------------------------------------------------------------------------- /mock/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/mock/app.go -------------------------------------------------------------------------------- /mock/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/mock/app_test.go -------------------------------------------------------------------------------- /mock/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/mock/helpers.go -------------------------------------------------------------------------------- /mock/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/mock/store.go -------------------------------------------------------------------------------- /mock/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/mock/store_test.go -------------------------------------------------------------------------------- /mock/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/mock/tx.go -------------------------------------------------------------------------------- /modules/auth/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/auth/errors.go -------------------------------------------------------------------------------- /modules/auth/signature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/auth/signature.go -------------------------------------------------------------------------------- /modules/auth/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/auth/tx.go -------------------------------------------------------------------------------- /modules/auth/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/auth/tx_test.go -------------------------------------------------------------------------------- /modules/base/chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/base/chain.go -------------------------------------------------------------------------------- /modules/base/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/base/errors.go -------------------------------------------------------------------------------- /modules/base/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/base/helpers.go -------------------------------------------------------------------------------- /modules/base/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/base/logger.go -------------------------------------------------------------------------------- /modules/base/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/base/tx.go -------------------------------------------------------------------------------- /modules/base/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/base/tx_test.go -------------------------------------------------------------------------------- /modules/bonus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/bonus/doc.go -------------------------------------------------------------------------------- /modules/bonus/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/bonus/helpers.go -------------------------------------------------------------------------------- /modules/coin/coin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/coin/coin.go -------------------------------------------------------------------------------- /modules/coin/coin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/coin/coin_test.go -------------------------------------------------------------------------------- /modules/coin/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/coin/errors.go -------------------------------------------------------------------------------- /modules/coin/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/coin/genesis.go -------------------------------------------------------------------------------- /modules/coin/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/coin/handler.go -------------------------------------------------------------------------------- /modules/coin/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/coin/helper.go -------------------------------------------------------------------------------- /modules/coin/ibc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/coin/ibc_test.go -------------------------------------------------------------------------------- /modules/coin/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/coin/store.go -------------------------------------------------------------------------------- /modules/coin/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/coin/tx.go -------------------------------------------------------------------------------- /modules/coin/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/coin/tx_test.go -------------------------------------------------------------------------------- /modules/etc/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/etc/errors.go -------------------------------------------------------------------------------- /modules/etc/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/etc/handler.go -------------------------------------------------------------------------------- /modules/etc/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/etc/store.go -------------------------------------------------------------------------------- /modules/etc/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/etc/tx.go -------------------------------------------------------------------------------- /modules/eyes/_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/eyes/_gen.go -------------------------------------------------------------------------------- /modules/eyes/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/eyes/errors.go -------------------------------------------------------------------------------- /modules/eyes/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/eyes/handler.go -------------------------------------------------------------------------------- /modules/eyes/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/eyes/store.go -------------------------------------------------------------------------------- /modules/eyes/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/eyes/tx.go -------------------------------------------------------------------------------- /modules/fee/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/fee/error_test.go -------------------------------------------------------------------------------- /modules/fee/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/fee/errors.go -------------------------------------------------------------------------------- /modules/fee/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/fee/handler.go -------------------------------------------------------------------------------- /modules/fee/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/fee/tx.go -------------------------------------------------------------------------------- /modules/ibc/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/ibc/errors.go -------------------------------------------------------------------------------- /modules/ibc/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/ibc/handler.go -------------------------------------------------------------------------------- /modules/ibc/ibc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/ibc/ibc_test.go -------------------------------------------------------------------------------- /modules/ibc/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/ibc/keys.go -------------------------------------------------------------------------------- /modules/ibc/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/ibc/middleware.go -------------------------------------------------------------------------------- /modules/ibc/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/ibc/provider.go -------------------------------------------------------------------------------- /modules/ibc/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/ibc/store.go -------------------------------------------------------------------------------- /modules/ibc/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/ibc/tx.go -------------------------------------------------------------------------------- /modules/nonce/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/nonce/errors.go -------------------------------------------------------------------------------- /modules/nonce/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/nonce/store.go -------------------------------------------------------------------------------- /modules/nonce/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/nonce/tx.go -------------------------------------------------------------------------------- /modules/nonce/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/nonce/tx_test.go -------------------------------------------------------------------------------- /modules/roles/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/roles/error.go -------------------------------------------------------------------------------- /modules/roles/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/roles/handler.go -------------------------------------------------------------------------------- /modules/roles/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/roles/store.go -------------------------------------------------------------------------------- /modules/roles/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/roles/tx.go -------------------------------------------------------------------------------- /modules/util/chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/util/chain.go -------------------------------------------------------------------------------- /modules/util/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/util/errors.go -------------------------------------------------------------------------------- /modules/util/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/util/logger.go -------------------------------------------------------------------------------- /modules/util/recovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/modules/util/recovery.go -------------------------------------------------------------------------------- /networks/local/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/networks/local/Makefile -------------------------------------------------------------------------------- /plugins/ibc/ibc.go: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/ibc/ibc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/plugins/ibc/ibc_test.go -------------------------------------------------------------------------------- /plugins/vote/vote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/plugins/vote/vote.go -------------------------------------------------------------------------------- /plugins/vote/vote_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/plugins/vote/vote_test.go -------------------------------------------------------------------------------- /publish/dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/publish/dist.sh -------------------------------------------------------------------------------- /publish/dist_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/publish/dist_build.sh -------------------------------------------------------------------------------- /publish/print_txs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/publish/print_txs.go -------------------------------------------------------------------------------- /publish/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/publish/publish.sh -------------------------------------------------------------------------------- /results.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/results.go -------------------------------------------------------------------------------- /scripts/dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/scripts/dist.sh -------------------------------------------------------------------------------- /scripts/dist_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/scripts/dist_build.sh -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/print_txs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/scripts/print_txs.go -------------------------------------------------------------------------------- /scripts/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/scripts/publish.sh -------------------------------------------------------------------------------- /server/commands/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/commands/init.go -------------------------------------------------------------------------------- /server/commands/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/commands/key.go -------------------------------------------------------------------------------- /server/commands/relay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/commands/relay.go -------------------------------------------------------------------------------- /server/commands/reset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/commands/reset.go -------------------------------------------------------------------------------- /server/commands/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/commands/root.go -------------------------------------------------------------------------------- /server/commands/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/commands/start.go -------------------------------------------------------------------------------- /server/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/config/config.go -------------------------------------------------------------------------------- /server/constructors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/constructors.go -------------------------------------------------------------------------------- /server/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/context.go -------------------------------------------------------------------------------- /server/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/export.go -------------------------------------------------------------------------------- /server/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/init.go -------------------------------------------------------------------------------- /server/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/init_test.go -------------------------------------------------------------------------------- /server/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/key.go -------------------------------------------------------------------------------- /server/mock/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/mock/app.go -------------------------------------------------------------------------------- /server/mock/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/mock/app_test.go -------------------------------------------------------------------------------- /server/mock/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/mock/helpers.go -------------------------------------------------------------------------------- /server/mock/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/mock/store.go -------------------------------------------------------------------------------- /server/mock/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/mock/store_test.go -------------------------------------------------------------------------------- /server/mock/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/mock/tx.go -------------------------------------------------------------------------------- /server/reset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/reset.go -------------------------------------------------------------------------------- /server/show_node_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/show_node_id.go -------------------------------------------------------------------------------- /server/show_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/show_validator.go -------------------------------------------------------------------------------- /server/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/start.go -------------------------------------------------------------------------------- /server/start_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/start_test.go -------------------------------------------------------------------------------- /server/test_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/test_helpers.go -------------------------------------------------------------------------------- /server/testnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/testnet.go -------------------------------------------------------------------------------- /server/tm_cmds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/tm_cmds.go -------------------------------------------------------------------------------- /server/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/util.go -------------------------------------------------------------------------------- /server/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/util_test.go -------------------------------------------------------------------------------- /server/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/server/wire.go -------------------------------------------------------------------------------- /stack/chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/stack/chain.go -------------------------------------------------------------------------------- /stack/chain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/stack/chain_test.go -------------------------------------------------------------------------------- /stack/checkpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/stack/checkpoint.go -------------------------------------------------------------------------------- /stack/checkpoint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/stack/checkpoint_test.go -------------------------------------------------------------------------------- /stack/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/stack/context.go -------------------------------------------------------------------------------- /stack/dispatcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/stack/dispatcher.go -------------------------------------------------------------------------------- /stack/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/stack/helpers.go -------------------------------------------------------------------------------- /stack/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/stack/helpers_test.go -------------------------------------------------------------------------------- /stack/helperware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/stack/helperware.go -------------------------------------------------------------------------------- /stack/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/stack/interface.go -------------------------------------------------------------------------------- /stack/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/stack/logger.go -------------------------------------------------------------------------------- /stack/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/stack/middleware.go -------------------------------------------------------------------------------- /stack/middleware_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/stack/middleware_test.go -------------------------------------------------------------------------------- /stack/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/stack/mock.go -------------------------------------------------------------------------------- /stack/multiplexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/stack/multiplexer.go -------------------------------------------------------------------------------- /stack/prefixstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/stack/prefixstore.go -------------------------------------------------------------------------------- /stack/recovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/stack/recovery.go -------------------------------------------------------------------------------- /stack/recovery_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/stack/recovery_test.go -------------------------------------------------------------------------------- /stack/signature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/stack/signature.go -------------------------------------------------------------------------------- /stack/signature_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/stack/signature_test.go -------------------------------------------------------------------------------- /state/account_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/account_cache.go -------------------------------------------------------------------------------- /state/bonsai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/bonsai.go -------------------------------------------------------------------------------- /state/chainstate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/chainstate.go -------------------------------------------------------------------------------- /state/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/errors.go -------------------------------------------------------------------------------- /state/execution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/execution.go -------------------------------------------------------------------------------- /state/execution_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/execution_test.go -------------------------------------------------------------------------------- /state/kvcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/kvcache.go -------------------------------------------------------------------------------- /state/kvcache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/kvcache_test.go -------------------------------------------------------------------------------- /state/kvstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/kvstore.go -------------------------------------------------------------------------------- /state/kvstore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/kvstore_test.go -------------------------------------------------------------------------------- /state/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/log.go -------------------------------------------------------------------------------- /state/merkle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/merkle.go -------------------------------------------------------------------------------- /state/merkle/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/merkle/state.go -------------------------------------------------------------------------------- /state/merkle/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/merkle/store.go -------------------------------------------------------------------------------- /state/merkle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/merkle_test.go -------------------------------------------------------------------------------- /state/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/queue.go -------------------------------------------------------------------------------- /state/queue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/queue_test.go -------------------------------------------------------------------------------- /state/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/set.go -------------------------------------------------------------------------------- /state/set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/set_test.go -------------------------------------------------------------------------------- /state/span.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/span.go -------------------------------------------------------------------------------- /state/span_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/span_test.go -------------------------------------------------------------------------------- /state/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/state.go -------------------------------------------------------------------------------- /state/state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/state_test.go -------------------------------------------------------------------------------- /state/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/state/store_test.go -------------------------------------------------------------------------------- /store/cachekvstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/store/cachekvstore.go -------------------------------------------------------------------------------- /store/dbstoreadapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/store/dbstoreadapter.go -------------------------------------------------------------------------------- /store/firstlast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/store/firstlast.go -------------------------------------------------------------------------------- /store/gaskvstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/store/gaskvstore.go -------------------------------------------------------------------------------- /store/iavlstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/store/iavlstore.go -------------------------------------------------------------------------------- /store/iavlstore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/store/iavlstore_test.go -------------------------------------------------------------------------------- /store/memiterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/store/memiterator.go -------------------------------------------------------------------------------- /store/multistore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/store/multistore.go -------------------------------------------------------------------------------- /store/prefixstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/store/prefixstore.go -------------------------------------------------------------------------------- /store/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/store/queue.go -------------------------------------------------------------------------------- /store/queue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/store/queue_test.go -------------------------------------------------------------------------------- /store/rootmultistore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/store/rootmultistore.go -------------------------------------------------------------------------------- /store/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/store/types.go -------------------------------------------------------------------------------- /store/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/store/wire.go -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- 1 | test fork -------------------------------------------------------------------------------- /test_cover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/test_cover.sh -------------------------------------------------------------------------------- /tests/check_basecli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/check_basecli.sh -------------------------------------------------------------------------------- /tests/cli/basictx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/cli/basictx.sh -------------------------------------------------------------------------------- /tests/cli/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/cli/common.sh -------------------------------------------------------------------------------- /tests/cli/counter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/cli/counter.sh -------------------------------------------------------------------------------- /tests/cli/eyes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/cli/eyes.sh -------------------------------------------------------------------------------- /tests/cli/ibc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/cli/ibc.sh -------------------------------------------------------------------------------- /tests/cli/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/cli/init.sh -------------------------------------------------------------------------------- /tests/cli/keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/cli/keys.sh -------------------------------------------------------------------------------- /tests/cli/rest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/cli/rest.sh -------------------------------------------------------------------------------- /tests/cli/restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/cli/restart.sh -------------------------------------------------------------------------------- /tests/cli/roles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/cli/roles.sh -------------------------------------------------------------------------------- /tests/cli/rpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/cli/rpc.sh -------------------------------------------------------------------------------- /tests/cli/shunit2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/cli/shunit2 -------------------------------------------------------------------------------- /tests/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/common.go -------------------------------------------------------------------------------- /tests/gobash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/gobash.go -------------------------------------------------------------------------------- /tests/mock/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/mock/app.go -------------------------------------------------------------------------------- /tests/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/process.go -------------------------------------------------------------------------------- /tests/stdlib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/stdlib_test.go -------------------------------------------------------------------------------- /tests/tepleton/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/tepleton/main.go -------------------------------------------------------------------------------- /tests/test_cover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/test_cover.sh -------------------------------------------------------------------------------- /tests/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/tests.go -------------------------------------------------------------------------------- /tests/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/util.go -------------------------------------------------------------------------------- /tests/wrsp/tmsp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tests/wrsp/tmsp_test.go -------------------------------------------------------------------------------- /testutils/testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/testutils/testing.go -------------------------------------------------------------------------------- /tools/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tools/Gopkg.lock -------------------------------------------------------------------------------- /tools/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tools/Gopkg.toml -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tools/glide.lock -------------------------------------------------------------------------------- /tools/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tools/glide.yaml -------------------------------------------------------------------------------- /tools/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tools/main.go -------------------------------------------------------------------------------- /tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tx.go -------------------------------------------------------------------------------- /tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/tx_test.go -------------------------------------------------------------------------------- /txinner_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/txinner_wrapper.go -------------------------------------------------------------------------------- /txs/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/txs/base.go -------------------------------------------------------------------------------- /txs/base_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/txs/base_test.go -------------------------------------------------------------------------------- /txs/send.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/txs/send.go -------------------------------------------------------------------------------- /txs/sigs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/txs/sigs.go -------------------------------------------------------------------------------- /txs/sigs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/txs/sigs_test.go -------------------------------------------------------------------------------- /types/_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/_gen.go -------------------------------------------------------------------------------- /types/abci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/abci.go -------------------------------------------------------------------------------- /types/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/account.go -------------------------------------------------------------------------------- /types/account_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/account_cache.go -------------------------------------------------------------------------------- /types/account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/account_test.go -------------------------------------------------------------------------------- /types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/codec.go -------------------------------------------------------------------------------- /types/codespacer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/codespacer.go -------------------------------------------------------------------------------- /types/coin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/coin.go -------------------------------------------------------------------------------- /types/coin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/coin_test.go -------------------------------------------------------------------------------- /types/coins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/coins.go -------------------------------------------------------------------------------- /types/coins_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/coins_test.go -------------------------------------------------------------------------------- /types/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/context.go -------------------------------------------------------------------------------- /types/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/context_test.go -------------------------------------------------------------------------------- /types/decorators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/decorators.go -------------------------------------------------------------------------------- /types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/errors.go -------------------------------------------------------------------------------- /types/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/errors_test.go -------------------------------------------------------------------------------- /types/gas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/gas.go -------------------------------------------------------------------------------- /types/gaskvstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/gaskvstore.go -------------------------------------------------------------------------------- /types/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/genesis.go -------------------------------------------------------------------------------- /types/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/handler.go -------------------------------------------------------------------------------- /types/initgenesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/initgenesis.go -------------------------------------------------------------------------------- /types/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/int.go -------------------------------------------------------------------------------- /types/int_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/int_test.go -------------------------------------------------------------------------------- /types/kvstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/kvstore.go -------------------------------------------------------------------------------- /types/kvstore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/kvstore_test.go -------------------------------------------------------------------------------- /types/lib/linear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/lib/linear.go -------------------------------------------------------------------------------- /types/lib/mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/lib/mapper.go -------------------------------------------------------------------------------- /types/lib/stdlib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/lib/stdlib.go -------------------------------------------------------------------------------- /types/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/logger.go -------------------------------------------------------------------------------- /types/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/logger_test.go -------------------------------------------------------------------------------- /types/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/model.go -------------------------------------------------------------------------------- /types/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/msg.go -------------------------------------------------------------------------------- /types/native.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/native.go -------------------------------------------------------------------------------- /types/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/plugin.go -------------------------------------------------------------------------------- /types/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/plugin_test.go -------------------------------------------------------------------------------- /types/rational.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/rational.go -------------------------------------------------------------------------------- /types/rational_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/rational_test.go -------------------------------------------------------------------------------- /types/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/result.go -------------------------------------------------------------------------------- /types/results.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/results.go -------------------------------------------------------------------------------- /types/signature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/signature.go -------------------------------------------------------------------------------- /types/stake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/stake.go -------------------------------------------------------------------------------- /types/stdlib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/stdlib.go -------------------------------------------------------------------------------- /types/stdlib/stdlib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/stdlib/stdlib.go -------------------------------------------------------------------------------- /types/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/store.go -------------------------------------------------------------------------------- /types/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/store_test.go -------------------------------------------------------------------------------- /types/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/tags.go -------------------------------------------------------------------------------- /types/tags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/tags_test.go -------------------------------------------------------------------------------- /types/test_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/test_helpers.go -------------------------------------------------------------------------------- /types/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/tx.go -------------------------------------------------------------------------------- /types/tx_msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/tx_msg.go -------------------------------------------------------------------------------- /types/tx_msg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/tx_msg_test.go -------------------------------------------------------------------------------- /types/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/tx_test.go -------------------------------------------------------------------------------- /types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/types.go -------------------------------------------------------------------------------- /types/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/utils.go -------------------------------------------------------------------------------- /types/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/utils_test.go -------------------------------------------------------------------------------- /types/validator_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/validator_set.go -------------------------------------------------------------------------------- /types/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/types/wire.go -------------------------------------------------------------------------------- /util/chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/util/chain.go -------------------------------------------------------------------------------- /util/chain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/util/chain_test.go -------------------------------------------------------------------------------- /util/commands/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/util/commands/wrap.go -------------------------------------------------------------------------------- /util/decorators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/util/decorators.go -------------------------------------------------------------------------------- /util/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/util/doc.go -------------------------------------------------------------------------------- /util/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/util/errors.go -------------------------------------------------------------------------------- /util/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/util/errors_test.go -------------------------------------------------------------------------------- /util/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/util/helpers.go -------------------------------------------------------------------------------- /util/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/util/helpers_test.go -------------------------------------------------------------------------------- /util/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/util/logger.go -------------------------------------------------------------------------------- /util/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/util/mock.go -------------------------------------------------------------------------------- /util/prefix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/util/prefix.go -------------------------------------------------------------------------------- /util/recovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/util/recovery.go -------------------------------------------------------------------------------- /util/recovery_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/util/recovery_test.go -------------------------------------------------------------------------------- /version/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/version/command.go -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/version/version.go -------------------------------------------------------------------------------- /wire/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/wire/wire.go -------------------------------------------------------------------------------- /x/.attic/eyes/_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/.attic/eyes/_gen.go -------------------------------------------------------------------------------- /x/.attic/eyes/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/.attic/eyes/errors.go -------------------------------------------------------------------------------- /x/.attic/eyes/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/.attic/eyes/store.go -------------------------------------------------------------------------------- /x/.attic/eyes/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/.attic/eyes/tx.go -------------------------------------------------------------------------------- /x/.attic/fee/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/.attic/fee/errors.go -------------------------------------------------------------------------------- /x/.attic/fee/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/.attic/fee/handler.go -------------------------------------------------------------------------------- /x/.attic/fee/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/.attic/fee/tx.go -------------------------------------------------------------------------------- /x/.attic/nonce/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/.attic/nonce/store.go -------------------------------------------------------------------------------- /x/.attic/nonce/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/.attic/nonce/tx.go -------------------------------------------------------------------------------- /x/_attic/eyes/_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/_attic/eyes/_gen.go -------------------------------------------------------------------------------- /x/_attic/eyes/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/_attic/eyes/errors.go -------------------------------------------------------------------------------- /x/_attic/eyes/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/_attic/eyes/store.go -------------------------------------------------------------------------------- /x/_attic/eyes/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/_attic/eyes/tx.go -------------------------------------------------------------------------------- /x/_attic/fee/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/_attic/fee/errors.go -------------------------------------------------------------------------------- /x/_attic/fee/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/_attic/fee/handler.go -------------------------------------------------------------------------------- /x/_attic/fee/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/_attic/fee/tx.go -------------------------------------------------------------------------------- /x/_attic/nonce/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/_attic/nonce/store.go -------------------------------------------------------------------------------- /x/_attic/nonce/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/_attic/nonce/tx.go -------------------------------------------------------------------------------- /x/account/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/account/account.go -------------------------------------------------------------------------------- /x/account/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/account/store.go -------------------------------------------------------------------------------- /x/auth/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/account.go -------------------------------------------------------------------------------- /x/auth/account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/account_test.go -------------------------------------------------------------------------------- /x/auth/ante.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/ante.go -------------------------------------------------------------------------------- /x/auth/ante_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/ante_test.go -------------------------------------------------------------------------------- /x/auth/baseaccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/baseaccount.go -------------------------------------------------------------------------------- /x/auth/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/bench_test.go -------------------------------------------------------------------------------- /x/auth/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/context.go -------------------------------------------------------------------------------- /x/auth/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/context_test.go -------------------------------------------------------------------------------- /x/auth/decorator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/decorator.go -------------------------------------------------------------------------------- /x/auth/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/errors.go -------------------------------------------------------------------------------- /x/auth/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/errors_test.go -------------------------------------------------------------------------------- /x/auth/feekeeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/feekeeper.go -------------------------------------------------------------------------------- /x/auth/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/handler.go -------------------------------------------------------------------------------- /x/auth/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/helpers_test.go -------------------------------------------------------------------------------- /x/auth/mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/mapper.go -------------------------------------------------------------------------------- /x/auth/mapper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/mapper_test.go -------------------------------------------------------------------------------- /x/auth/mock/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/mock/app.go -------------------------------------------------------------------------------- /x/auth/msgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/msgs.go -------------------------------------------------------------------------------- /x/auth/msgs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/msgs_test.go -------------------------------------------------------------------------------- /x/auth/rest/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/rest/query.go -------------------------------------------------------------------------------- /x/auth/rest/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/rest/root.go -------------------------------------------------------------------------------- /x/auth/signature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/signature.go -------------------------------------------------------------------------------- /x/auth/stdtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/stdtx.go -------------------------------------------------------------------------------- /x/auth/stdtx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/stdtx_test.go -------------------------------------------------------------------------------- /x/auth/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/store.go -------------------------------------------------------------------------------- /x/auth/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/tx.go -------------------------------------------------------------------------------- /x/auth/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/tx_test.go -------------------------------------------------------------------------------- /x/auth/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/types.go -------------------------------------------------------------------------------- /x/auth/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/auth/wire.go -------------------------------------------------------------------------------- /x/bank/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/bank/app_test.go -------------------------------------------------------------------------------- /x/bank/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/bank/bench_test.go -------------------------------------------------------------------------------- /x/bank/client/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/bank/client/util.go -------------------------------------------------------------------------------- /x/bank/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/bank/errors.go -------------------------------------------------------------------------------- /x/bank/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/bank/handler.go -------------------------------------------------------------------------------- /x/bank/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/bank/keeper.go -------------------------------------------------------------------------------- /x/bank/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/bank/keeper_test.go -------------------------------------------------------------------------------- /x/bank/mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/bank/mapper.go -------------------------------------------------------------------------------- /x/bank/msgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/bank/msgs.go -------------------------------------------------------------------------------- /x/bank/msgs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/bank/msgs_test.go -------------------------------------------------------------------------------- /x/bank/rest/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/bank/rest/root.go -------------------------------------------------------------------------------- /x/bank/rest/sendtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/bank/rest/sendtx.go -------------------------------------------------------------------------------- /x/bank/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/bank/store.go -------------------------------------------------------------------------------- /x/bank/test_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/bank/test_helpers.go -------------------------------------------------------------------------------- /x/bank/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/bank/tx.go -------------------------------------------------------------------------------- /x/bank/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/bank/tx_test.go -------------------------------------------------------------------------------- /x/bank/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/bank/wire.go -------------------------------------------------------------------------------- /x/baseaccount/msgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/baseaccount/msgs.go -------------------------------------------------------------------------------- /x/baseaccount/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/baseaccount/wire.go -------------------------------------------------------------------------------- /x/coin/_attic/handler_test.go: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /x/coin/_attic/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coin/_attic/helper.go -------------------------------------------------------------------------------- /x/coin/_attic/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coin/_attic/store.go -------------------------------------------------------------------------------- /x/coin/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coin/bench_test.go -------------------------------------------------------------------------------- /x/coin/coin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coin/coin.go -------------------------------------------------------------------------------- /x/coin/coin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coin/coin_test.go -------------------------------------------------------------------------------- /x/coin/commands/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coin/commands/tx.go -------------------------------------------------------------------------------- /x/coin/decorator.go: -------------------------------------------------------------------------------- 1 | c`p -------------------------------------------------------------------------------- /x/coin/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coin/errors.go -------------------------------------------------------------------------------- /x/coin/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coin/genesis.go -------------------------------------------------------------------------------- /x/coin/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coin/handler.go -------------------------------------------------------------------------------- /x/coin/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coin/handler_test.go -------------------------------------------------------------------------------- /x/coin/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coin/helper.go -------------------------------------------------------------------------------- /x/coin/ibc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coin/ibc_test.go -------------------------------------------------------------------------------- /x/coin/rest/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coin/rest/handlers.go -------------------------------------------------------------------------------- /x/coin/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coin/store.go -------------------------------------------------------------------------------- /x/coin/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coin/tx.go -------------------------------------------------------------------------------- /x/coin/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coin/tx_test.go -------------------------------------------------------------------------------- /x/coin/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coin/types.go -------------------------------------------------------------------------------- /x/coin/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coin/utils.go -------------------------------------------------------------------------------- /x/coinstore/_attic/handler_test.go: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /x/coinstore/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coinstore/errors.go -------------------------------------------------------------------------------- /x/coinstore/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coinstore/genesis.go -------------------------------------------------------------------------------- /x/coinstore/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coinstore/handler.go -------------------------------------------------------------------------------- /x/coinstore/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coinstore/store.go -------------------------------------------------------------------------------- /x/coinstore/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coinstore/tx.go -------------------------------------------------------------------------------- /x/coinstore/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coinstore/tx_test.go -------------------------------------------------------------------------------- /x/coinstore/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/coinstore/utils.go -------------------------------------------------------------------------------- /x/eyes/_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/eyes/_gen.go -------------------------------------------------------------------------------- /x/eyes/commands/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/eyes/commands/tx.go -------------------------------------------------------------------------------- /x/eyes/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/eyes/errors.go -------------------------------------------------------------------------------- /x/eyes/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/eyes/handler.go -------------------------------------------------------------------------------- /x/eyes/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/eyes/handler_test.go -------------------------------------------------------------------------------- /x/eyes/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/eyes/store.go -------------------------------------------------------------------------------- /x/eyes/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/eyes/tx.go -------------------------------------------------------------------------------- /x/fee/commands/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/fee/commands/wrap.go -------------------------------------------------------------------------------- /x/fee/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/fee/error_test.go -------------------------------------------------------------------------------- /x/fee/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/fee/errors.go -------------------------------------------------------------------------------- /x/fee/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/fee/handler.go -------------------------------------------------------------------------------- /x/fee/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/fee/handler_test.go -------------------------------------------------------------------------------- /x/fee/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/fee/tx.go -------------------------------------------------------------------------------- /x/gov/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/gov/client/cli/tx.go -------------------------------------------------------------------------------- /x/gov/depositsvotes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/gov/depositsvotes.go -------------------------------------------------------------------------------- /x/gov/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/gov/errors.go -------------------------------------------------------------------------------- /x/gov/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/gov/genesis.go -------------------------------------------------------------------------------- /x/gov/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/gov/handler.go -------------------------------------------------------------------------------- /x/gov/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/gov/keeper.go -------------------------------------------------------------------------------- /x/gov/keeper_keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/gov/keeper_keys.go -------------------------------------------------------------------------------- /x/gov/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/gov/keeper_test.go -------------------------------------------------------------------------------- /x/gov/msgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/gov/msgs.go -------------------------------------------------------------------------------- /x/gov/msgs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/gov/msgs_test.go -------------------------------------------------------------------------------- /x/gov/procedures.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/gov/procedures.go -------------------------------------------------------------------------------- /x/gov/proposals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/gov/proposals.go -------------------------------------------------------------------------------- /x/gov/tally.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/gov/tally.go -------------------------------------------------------------------------------- /x/gov/tally_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/gov/tally_test.go -------------------------------------------------------------------------------- /x/gov/test_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/gov/test_common.go -------------------------------------------------------------------------------- /x/gov/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/gov/wire.go -------------------------------------------------------------------------------- /x/ibc/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/ibc/app_test.go -------------------------------------------------------------------------------- /x/ibc/commands/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/ibc/commands/flags.go -------------------------------------------------------------------------------- /x/ibc/commands/ibctx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/ibc/commands/ibctx.go -------------------------------------------------------------------------------- /x/ibc/commands/relay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/ibc/commands/relay.go -------------------------------------------------------------------------------- /x/ibc/commands/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/ibc/commands/root.go -------------------------------------------------------------------------------- /x/ibc/commands/send.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/ibc/commands/send.go -------------------------------------------------------------------------------- /x/ibc/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/ibc/errors.go -------------------------------------------------------------------------------- /x/ibc/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/ibc/handler.go -------------------------------------------------------------------------------- /x/ibc/ibc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/ibc/ibc_test.go -------------------------------------------------------------------------------- /x/ibc/mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/ibc/mapper.go -------------------------------------------------------------------------------- /x/ibc/rest/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/ibc/rest/root.go -------------------------------------------------------------------------------- /x/ibc/rest/transfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/ibc/rest/transfer.go -------------------------------------------------------------------------------- /x/ibc/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/ibc/types.go -------------------------------------------------------------------------------- /x/ibc/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/ibc/types_test.go -------------------------------------------------------------------------------- /x/ibc/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/ibc/wire.go -------------------------------------------------------------------------------- /x/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/logger/logger.go -------------------------------------------------------------------------------- /x/mock/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/mock/app.go -------------------------------------------------------------------------------- /x/mock/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/mock/app_test.go -------------------------------------------------------------------------------- /x/mock/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/mock/doc.go -------------------------------------------------------------------------------- /x/mock/test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/mock/test_utils.go -------------------------------------------------------------------------------- /x/mock/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/mock/types.go -------------------------------------------------------------------------------- /x/nonce/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/nonce/errors.go -------------------------------------------------------------------------------- /x/nonce/replaycheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/nonce/replaycheck.go -------------------------------------------------------------------------------- /x/nonce/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/nonce/store.go -------------------------------------------------------------------------------- /x/nonce/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/nonce/tx.go -------------------------------------------------------------------------------- /x/nonce/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/nonce/tx_test.go -------------------------------------------------------------------------------- /x/recover/recovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/recover/recovery.go -------------------------------------------------------------------------------- /x/sendtx/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/sendtx/errors.go -------------------------------------------------------------------------------- /x/sendtx/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/sendtx/handler.go -------------------------------------------------------------------------------- /x/sendtx/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/sendtx/tx.go -------------------------------------------------------------------------------- /x/sendtx/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/sendtx/tx_test.go -------------------------------------------------------------------------------- /x/simplestake/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/simplestake/errors.go -------------------------------------------------------------------------------- /x/simplestake/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/simplestake/keeper.go -------------------------------------------------------------------------------- /x/simplestake/msgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/simplestake/msgs.go -------------------------------------------------------------------------------- /x/simplestake/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/simplestake/types.go -------------------------------------------------------------------------------- /x/slashing/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/slashing/app_test.go -------------------------------------------------------------------------------- /x/slashing/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/slashing/errors.go -------------------------------------------------------------------------------- /x/slashing/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/slashing/handler.go -------------------------------------------------------------------------------- /x/slashing/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/slashing/keeper.go -------------------------------------------------------------------------------- /x/slashing/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/slashing/msg.go -------------------------------------------------------------------------------- /x/slashing/msg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/slashing/msg_test.go -------------------------------------------------------------------------------- /x/slashing/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/slashing/params.go -------------------------------------------------------------------------------- /x/slashing/tick.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/slashing/tick.go -------------------------------------------------------------------------------- /x/slashing/tick_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/slashing/tick_test.go -------------------------------------------------------------------------------- /x/slashing/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/slashing/wire.go -------------------------------------------------------------------------------- /x/stake/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/app_test.go -------------------------------------------------------------------------------- /x/stake/commands/tx.go: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /x/stake/delegation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/delegation.go -------------------------------------------------------------------------------- /x/stake/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/errors.go -------------------------------------------------------------------------------- /x/stake/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/genesis.go -------------------------------------------------------------------------------- /x/stake/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/handler.go -------------------------------------------------------------------------------- /x/stake/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/handler_test.go -------------------------------------------------------------------------------- /x/stake/inflation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/inflation.go -------------------------------------------------------------------------------- /x/stake/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/keeper.go -------------------------------------------------------------------------------- /x/stake/keeper/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/keeper/key.go -------------------------------------------------------------------------------- /x/stake/keeper/slash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/keeper/slash.go -------------------------------------------------------------------------------- /x/stake/keeper_keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/keeper_keys.go -------------------------------------------------------------------------------- /x/stake/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/keeper_test.go -------------------------------------------------------------------------------- /x/stake/mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/mapper.go -------------------------------------------------------------------------------- /x/stake/mapper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/mapper_test.go -------------------------------------------------------------------------------- /x/stake/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/msg.go -------------------------------------------------------------------------------- /x/stake/msg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/msg_test.go -------------------------------------------------------------------------------- /x/stake/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/params.go -------------------------------------------------------------------------------- /x/stake/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/pool.go -------------------------------------------------------------------------------- /x/stake/pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/pool_test.go -------------------------------------------------------------------------------- /x/stake/rest/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/rest/query.go -------------------------------------------------------------------------------- /x/stake/shares.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/shares.go -------------------------------------------------------------------------------- /x/stake/stake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/stake.go -------------------------------------------------------------------------------- /x/stake/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/store.go -------------------------------------------------------------------------------- /x/stake/store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/store.md -------------------------------------------------------------------------------- /x/stake/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/store_test.go -------------------------------------------------------------------------------- /x/stake/tags/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/tags/tags.go -------------------------------------------------------------------------------- /x/stake/test_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/test_common.go -------------------------------------------------------------------------------- /x/stake/tick.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/tick.go -------------------------------------------------------------------------------- /x/stake/tick_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/tick_test.go -------------------------------------------------------------------------------- /x/stake/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/tx.go -------------------------------------------------------------------------------- /x/stake/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/tx_test.go -------------------------------------------------------------------------------- /x/stake/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/types.go -------------------------------------------------------------------------------- /x/stake/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/types/errors.go -------------------------------------------------------------------------------- /x/stake/types/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/types/msg.go -------------------------------------------------------------------------------- /x/stake/types/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/types/params.go -------------------------------------------------------------------------------- /x/stake/types/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/types/pool.go -------------------------------------------------------------------------------- /x/stake/types/shares.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/types/shares.go -------------------------------------------------------------------------------- /x/stake/types/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/types/wire.go -------------------------------------------------------------------------------- /x/stake/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/types_test.go -------------------------------------------------------------------------------- /x/stake/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/validator.go -------------------------------------------------------------------------------- /x/stake/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/stake/wire.go -------------------------------------------------------------------------------- /x/staking/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/staking/errors.go -------------------------------------------------------------------------------- /x/staking/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/staking/handler.go -------------------------------------------------------------------------------- /x/staking/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/staking/keeper.go -------------------------------------------------------------------------------- /x/staking/mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/staking/mapper.go -------------------------------------------------------------------------------- /x/staking/msgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/staking/msgs.go -------------------------------------------------------------------------------- /x/staking/msgs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/staking/msgs_test.go -------------------------------------------------------------------------------- /x/staking/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/staking/types.go -------------------------------------------------------------------------------- /x/staking/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/staking/types_test.go -------------------------------------------------------------------------------- /x/store/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/store/account.go -------------------------------------------------------------------------------- /x/store/coin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/store/coin.go -------------------------------------------------------------------------------- /x/store/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tepletonteam/tepleton/HEAD/x/store/errors.go --------------------------------------------------------------------------------