├── .aws └── buildspec.yml ├── .build.sh ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── ci.yml ├── .gitignore ├── .mergify.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── app.go ├── app_test.go ├── authority_test.go ├── authz_test.go ├── bdd_test.go ├── buf.yaml ├── buyback_test.go ├── capacity_test.go ├── cmd └── emd │ ├── cmd │ ├── client_config.go │ ├── cmd_test.go │ ├── genaccounts.go │ ├── genaccounts_test.go │ ├── keys.go │ ├── root.go │ └── testnet.go │ └── main.go ├── docker-compose.yml ├── docs ├── api │ └── v1 │ │ ├── rates.json │ │ └── tokens.json ├── client │ └── em │ │ ├── authority │ │ └── v1 │ │ │ └── query.swagger.json │ │ ├── buyback │ │ └── v1 │ │ │ └── query.swagger.json │ │ ├── inflation │ │ └── v1 │ │ │ └── query.swagger.json │ │ ├── issuer │ │ └── v1 │ │ │ └── query.swagger.json │ │ ├── liquidityprovider │ │ └── v1 │ │ │ └── query.swagger.json │ │ ├── market │ │ └── v1 │ │ │ └── query.swagger.json │ │ └── queries │ │ └── v1 │ │ └── query.swagger.json ├── e-money wordmark.svg ├── emd.md ├── ledger.md ├── proto.md ├── proto │ ├── em │ │ └── proto-docs.md │ └── protodoc-markdown.tmpl └── tokens.md ├── emd.sh ├── encoding.go ├── export.go ├── feegrant_test.go ├── go.mod ├── go.sum ├── hooks └── bank │ ├── bankproxy_test.go │ └── proxykeeper.go ├── localnet_test.go ├── market_test.go ├── merge-to-testnet.sh ├── multisigauthority_test.go ├── networks ├── .gitignore ├── docker │ ├── Makefile │ ├── cosmovisor │ │ └── Dockerfile │ ├── emdnode │ │ ├── Dockerfile │ │ └── wrapper.sh │ ├── test-upg │ │ └── Dockerfile │ └── test-v44 │ │ └── Dockerfile ├── ibc │ ├── .gitignore │ ├── README.md │ ├── auth-key.json │ ├── client-upd │ ├── denom-path │ ├── e-money.sh │ ├── em-key1.json │ ├── emkey-2-hermes.sh │ ├── emoney-config.toml │ ├── gaia-denom-path │ ├── gaia_client_upd │ ├── gm │ ├── gm.toml │ ├── ibc-conn.sh │ ├── ibc-em-gaia-relay.sh │ ├── ibc-gaia-em-relay.sh │ ├── lib-gm │ ├── q-client │ ├── q-gaia-client │ ├── run.sh │ └── start.sh ├── upg │ ├── README.md │ ├── cpemd42 │ ├── cpemd44 │ ├── create-zip │ ├── initchain │ ├── post-upg │ ├── post-upg-44 │ ├── resetv42 │ ├── set-env │ ├── start-full-cv │ ├── start-same-cv │ ├── start-upg-cv │ ├── startcv │ ├── upg-sched │ ├── upgfunc.txt │ ├── upgv44func.txt │ └── v42-v44.zip └── utils │ ├── init │ ├── single-validator.py │ ├── start │ ├── startemd │ └── transplant-validators.py ├── networktest ├── denom_metadata.go ├── emcli.go ├── eventlistener.go ├── readme.MD ├── testkeystore.go ├── testnet.go ├── testnet_quiet.go └── util.go ├── proto └── em │ ├── authority │ └── v1 │ │ ├── authority.proto │ │ ├── genesis.proto │ │ ├── query.proto │ │ └── tx.proto │ ├── buyback │ └── v1 │ │ ├── genesis.proto │ │ └── query.proto │ ├── inflation │ └── v1 │ │ ├── genesis.proto │ │ ├── inflation.proto │ │ └── query.proto │ ├── issuer │ └── v1 │ │ ├── genesis.proto │ │ ├── issuer.proto │ │ ├── query.proto │ │ └── tx.proto │ ├── liquidityprovider │ └── v1 │ │ ├── genesis.proto │ │ ├── liquidityprovider.proto │ │ ├── query.proto │ │ └── tx.proto │ ├── market │ └── v1 │ │ ├── market.proto │ │ ├── query.proto │ │ └── tx.proto │ └── queries │ └── v1 │ └── query.proto ├── scripts ├── README.md ├── linkify_changelog.py ├── protoc-swagger-gen.sh ├── protocgen-any.sh └── protocgen.sh ├── staking_test.go ├── third_party ├── README.md ├── proto │ ├── confio │ │ └── proofs.proto │ ├── cosmos │ │ ├── auth │ │ │ └── v1beta1 │ │ │ │ ├── auth.proto │ │ │ │ ├── genesis.proto │ │ │ │ └── query.proto │ │ ├── authz │ │ │ └── v1beta1 │ │ │ │ ├── authz.proto │ │ │ │ ├── event.proto │ │ │ │ ├── genesis.proto │ │ │ │ ├── query.proto │ │ │ │ └── tx.proto │ │ ├── bank │ │ │ └── v1beta1 │ │ │ │ ├── authz.proto │ │ │ │ ├── bank.proto │ │ │ │ ├── genesis.proto │ │ │ │ ├── query.proto │ │ │ │ └── tx.proto │ │ ├── base │ │ │ ├── abci │ │ │ │ └── v1beta1 │ │ │ │ │ └── abci.proto │ │ │ ├── kv │ │ │ │ └── v1beta1 │ │ │ │ │ └── kv.proto │ │ │ ├── query │ │ │ │ └── v1beta1 │ │ │ │ │ └── pagination.proto │ │ │ ├── reflection │ │ │ │ ├── v1beta1 │ │ │ │ │ └── reflection.proto │ │ │ │ └── v2alpha1 │ │ │ │ │ └── reflection.proto │ │ │ ├── snapshots │ │ │ │ └── v1beta1 │ │ │ │ │ └── snapshot.proto │ │ │ ├── store │ │ │ │ └── v1beta1 │ │ │ │ │ ├── commit_info.proto │ │ │ │ │ ├── listening.proto │ │ │ │ │ └── snapshot.proto │ │ │ ├── tendermint │ │ │ │ └── v1beta1 │ │ │ │ │ └── query.proto │ │ │ └── v1beta1 │ │ │ │ └── coin.proto │ │ ├── capability │ │ │ └── v1beta1 │ │ │ │ ├── capability.proto │ │ │ │ └── genesis.proto │ │ ├── crisis │ │ │ └── v1beta1 │ │ │ │ ├── genesis.proto │ │ │ │ └── tx.proto │ │ ├── crypto │ │ │ ├── ed25519 │ │ │ │ └── keys.proto │ │ │ ├── multisig │ │ │ │ ├── keys.proto │ │ │ │ └── v1beta1 │ │ │ │ │ └── multisig.proto │ │ │ ├── secp256k1 │ │ │ │ └── keys.proto │ │ │ └── secp256r1 │ │ │ │ └── keys.proto │ │ ├── distribution │ │ │ └── v1beta1 │ │ │ │ ├── distribution.proto │ │ │ │ ├── genesis.proto │ │ │ │ ├── query.proto │ │ │ │ └── tx.proto │ │ ├── evidence │ │ │ └── v1beta1 │ │ │ │ ├── evidence.proto │ │ │ │ ├── genesis.proto │ │ │ │ ├── query.proto │ │ │ │ └── tx.proto │ │ ├── feegrant │ │ │ └── v1beta1 │ │ │ │ ├── feegrant.proto │ │ │ │ ├── genesis.proto │ │ │ │ ├── query.proto │ │ │ │ └── tx.proto │ │ ├── genutil │ │ │ └── v1beta1 │ │ │ │ └── genesis.proto │ │ ├── gov │ │ │ └── v1beta1 │ │ │ │ ├── genesis.proto │ │ │ │ ├── gov.proto │ │ │ │ ├── query.proto │ │ │ │ └── tx.proto │ │ ├── mint │ │ │ └── v1beta1 │ │ │ │ ├── genesis.proto │ │ │ │ ├── mint.proto │ │ │ │ └── query.proto │ │ ├── params │ │ │ └── v1beta1 │ │ │ │ ├── params.proto │ │ │ │ └── query.proto │ │ ├── slashing │ │ │ └── v1beta1 │ │ │ │ ├── genesis.proto │ │ │ │ ├── query.proto │ │ │ │ ├── slashing.proto │ │ │ │ └── tx.proto │ │ ├── staking │ │ │ └── v1beta1 │ │ │ │ ├── authz.proto │ │ │ │ ├── genesis.proto │ │ │ │ ├── query.proto │ │ │ │ ├── staking.proto │ │ │ │ └── tx.proto │ │ ├── tx │ │ │ ├── signing │ │ │ │ └── v1beta1 │ │ │ │ │ └── signing.proto │ │ │ └── v1beta1 │ │ │ │ ├── service.proto │ │ │ │ └── tx.proto │ │ ├── upgrade │ │ │ └── v1beta1 │ │ │ │ ├── query.proto │ │ │ │ └── upgrade.proto │ │ └── vesting │ │ │ └── v1beta1 │ │ │ ├── tx.proto │ │ │ └── vesting.proto │ ├── cosmos_proto │ │ └── cosmos.proto │ ├── gogoproto │ │ └── gogo.proto │ ├── google │ │ ├── api │ │ │ ├── annotations.proto │ │ │ ├── http.proto │ │ │ └── httpbody.proto │ │ └── protobuf │ │ │ └── any.proto │ ├── ibc │ │ ├── applications │ │ │ └── transfer │ │ │ │ └── v1 │ │ │ │ ├── genesis.proto │ │ │ │ ├── query.proto │ │ │ │ ├── transfer.proto │ │ │ │ └── tx.proto │ │ ├── core │ │ │ ├── channel │ │ │ │ └── v1 │ │ │ │ │ ├── channel.proto │ │ │ │ │ ├── genesis.proto │ │ │ │ │ ├── query.proto │ │ │ │ │ └── tx.proto │ │ │ ├── client │ │ │ │ └── v1 │ │ │ │ │ ├── client.proto │ │ │ │ │ ├── genesis.proto │ │ │ │ │ ├── query.proto │ │ │ │ │ └── tx.proto │ │ │ ├── commitment │ │ │ │ └── v1 │ │ │ │ │ └── commitment.proto │ │ │ ├── connection │ │ │ │ └── v1 │ │ │ │ │ ├── connection.proto │ │ │ │ │ ├── genesis.proto │ │ │ │ │ ├── query.proto │ │ │ │ │ └── tx.proto │ │ │ └── types │ │ │ │ └── v1 │ │ │ │ └── genesis.proto │ │ └── lightclients │ │ │ ├── localhost │ │ │ └── v1 │ │ │ │ └── localhost.proto │ │ │ ├── solomachine │ │ │ ├── v1 │ │ │ │ └── solomachine.proto │ │ │ └── v2 │ │ │ │ └── solomachine.proto │ │ │ └── tendermint │ │ │ └── v1 │ │ │ └── tendermint.proto │ └── tendermint │ │ ├── abci │ │ └── types.proto │ │ ├── crypto │ │ ├── keys.proto │ │ └── proof.proto │ │ ├── libs │ │ └── bits │ │ │ └── types.proto │ │ ├── p2p │ │ └── types.proto │ │ ├── types │ │ ├── block.proto │ │ ├── evidence.proto │ │ ├── params.proto │ │ ├── types.proto │ │ └── validator.proto │ │ └── version │ │ └── types.proto └── upd.sh ├── types ├── address.go ├── context.go └── proto_json_marshaler.go ├── upgrade_test.go ├── util ├── cast_utils.go ├── cobra_utils.go ├── coin_utils.go ├── coin_utils_test.go ├── denom_utils.go └── denom_utils_test.go └── x ├── auth └── ante │ ├── ante.go │ ├── expected_keepers.go │ ├── fee.go │ └── fee_test.go ├── authority ├── alias.go ├── client │ ├── cli │ │ ├── query.go │ │ ├── tx.go │ │ ├── tx_issuer_test.go │ │ ├── tx_replace_test.go │ │ └── tx_upg_test.go │ └── rest │ │ └── query.go ├── genesis.go ├── handler.go ├── keeper │ ├── abci.go │ ├── grpc_query.go │ ├── grpc_query_test.go │ ├── keeper.go │ ├── keeper_test.go │ ├── msg_server.go │ ├── msg_server_test.go │ ├── querier.go │ └── querier_test.go ├── legacy │ └── v09 │ │ ├── migrate.go │ │ └── types.go ├── module.go └── types │ ├── authority.pb.go │ ├── codec.go │ ├── errors.go │ ├── expected_keepers.go │ ├── genesis.pb.go │ ├── keys.go │ ├── msgs.go │ ├── query.go │ ├── query.pb.go │ ├── query.pb.gw.go │ └── tx.pb.go ├── buyback ├── abci.go ├── abci_test.go ├── alias.go ├── client │ ├── cli │ │ └── query.go │ └── rest │ │ └── query.go ├── genesis.go ├── internal │ ├── keeper │ │ ├── expected_keepers.go │ │ ├── fast_update.go │ │ ├── grpc_query.go │ │ ├── grpc_query_test.go │ │ ├── keeper.go │ │ ├── keeper_test.go │ │ └── querier.go │ └── types │ │ ├── events.go │ │ ├── expected_keepers.go │ │ ├── genesis.pb.go │ │ ├── keys.go │ │ ├── query.pb.go │ │ └── query.pb.gw.go └── module.go ├── distribution ├── abci.go └── module.go ├── genutil ├── client │ └── cli │ │ ├── migrate.go │ │ ├── upgrade_consensus.go │ │ └── validate_genesis.go └── legacy │ └── v090 │ ├── denom_metadata.go │ ├── migrate.go │ ├── migrate_denom_test.go │ ├── migrate_test.go │ └── types.go ├── inflation ├── accrual.go ├── accrual_test.go ├── alias.go ├── client │ ├── cli │ │ └── query.go │ └── rest │ │ ├── query.go │ │ └── rest.go ├── genesis.go ├── keeper │ ├── grpc_query.go │ ├── grpc_query_test.go │ ├── keeper.go │ ├── querier.go │ ├── querier_test.go │ └── test_common.go ├── module.go ├── state_test.go └── types │ ├── codec.go │ ├── errors.go │ ├── events.go │ ├── expected_keepers.go │ ├── genesis.pb.go │ ├── inflation.pb.go │ ├── inflation_state.go │ ├── inflation_state_test.go │ ├── keys.go │ ├── query.pb.go │ └── query.pb.gw.go ├── issuer ├── alias.go ├── client │ └── cli │ │ ├── query.go │ │ └── tx.go ├── genesis.go ├── handler.go ├── keeper │ ├── grpc_query.go │ ├── grpc_query_test.go │ ├── keeper.go │ ├── keeper_test.go │ ├── msg_server.go │ ├── msg_server_test.go │ └── querier.go ├── module.go └── types │ ├── codec.go │ ├── errors.go │ ├── expected_keepers.go │ ├── genesis.pb.go │ ├── issuer.pb.go │ ├── keys.go │ ├── msgs.go │ ├── query.pb.go │ ├── query.pb.gw.go │ ├── tx.pb.go │ └── types.go ├── liquidityprovider ├── alias.go ├── client │ └── cli │ │ ├── query.go │ │ └── tx.go ├── genesis.go ├── genesis_test.go ├── handler.go ├── keeper │ ├── grpc_query.go │ ├── grpc_query_test.go │ ├── keeper.go │ ├── keeper_test.go │ ├── msg_server.go │ └── msg_server_test.go ├── legacy │ └── v09 │ │ ├── types.go │ │ └── types_test.go ├── module.go └── types │ ├── account.go │ ├── account_test.go │ ├── codec.go │ ├── errors.go │ ├── expected_keepers.go │ ├── genesis.pb.go │ ├── key.go │ ├── liquidityprovider.pb.go │ ├── msgs.go │ ├── msgs_test.go │ ├── query.pb.go │ ├── query.pb.gw.go │ └── tx.pb.go ├── market ├── alias.go ├── client │ ├── cli │ │ ├── query.go │ │ └── tx.go │ └── rest │ │ ├── query.go │ │ └── tx.go ├── handler.go ├── keeper │ ├── grpc_query.go │ ├── grpc_query_test.go │ ├── keeper.go │ ├── keeper_fuzzing_test.go │ ├── keeper_test.go │ ├── msg_server.go │ ├── msg_server_test.go │ ├── querier.go │ └── querier_test.go ├── module.go ├── spec │ ├── 01_state.md │ ├── 02_messages.md │ ├── 03_events.md │ ├── 04_queries.md │ └── README.md └── types │ ├── codec.go │ ├── errors.go │ ├── events.go │ ├── expected_keepers.go │ ├── keys.go │ ├── keys_test.go │ ├── market.pb.go │ ├── msgs.go │ ├── query.go │ ├── query.pb.go │ ├── query.pb.gw.go │ ├── tx.pb.go │ ├── types.go │ └── types_test.go ├── queries ├── README.md ├── client │ ├── cli │ │ └── query.go │ └── rest │ │ └── query.go ├── expected_keepers.go ├── grpc_query.go ├── grpc_query_test.go ├── module.go └── types │ ├── keys.go │ ├── query.pb.go │ └── query.pb.gw.go ├── slashing ├── alias.go ├── genesis.go ├── keeper │ ├── abci.go │ ├── abci_test.go │ ├── infractions.go │ ├── keeper.go │ ├── keeper_test.go │ └── params.go ├── legacy │ └── v09 │ │ ├── migrate.go │ │ └── types.go ├── migration │ ├── migrations.go │ └── v043 │ │ └── store.go ├── module.go └── types │ ├── expected_database.go │ └── params.go ├── staking ├── README.md ├── abci.go ├── keeper │ ├── historical_info.go │ └── historical_info_test.go ├── module.go └── types │ └── expected_keepers.go └── upgrade └── module.go /.aws/buildspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/.aws/buildspec.yml -------------------------------------------------------------------------------- /.build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/.build.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/.gitignore -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/.mergify.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/README.md -------------------------------------------------------------------------------- /app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/app.go -------------------------------------------------------------------------------- /app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/app_test.go -------------------------------------------------------------------------------- /authority_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/authority_test.go -------------------------------------------------------------------------------- /authz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/authz_test.go -------------------------------------------------------------------------------- /bdd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/bdd_test.go -------------------------------------------------------------------------------- /buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/buf.yaml -------------------------------------------------------------------------------- /buyback_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/buyback_test.go -------------------------------------------------------------------------------- /capacity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/capacity_test.go -------------------------------------------------------------------------------- /cmd/emd/cmd/client_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/cmd/emd/cmd/client_config.go -------------------------------------------------------------------------------- /cmd/emd/cmd/cmd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/cmd/emd/cmd/cmd_test.go -------------------------------------------------------------------------------- /cmd/emd/cmd/genaccounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/cmd/emd/cmd/genaccounts.go -------------------------------------------------------------------------------- /cmd/emd/cmd/genaccounts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/cmd/emd/cmd/genaccounts_test.go -------------------------------------------------------------------------------- /cmd/emd/cmd/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/cmd/emd/cmd/keys.go -------------------------------------------------------------------------------- /cmd/emd/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/cmd/emd/cmd/root.go -------------------------------------------------------------------------------- /cmd/emd/cmd/testnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/cmd/emd/cmd/testnet.go -------------------------------------------------------------------------------- /cmd/emd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/cmd/emd/main.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/api/v1/rates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/docs/api/v1/rates.json -------------------------------------------------------------------------------- /docs/api/v1/tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/docs/api/v1/tokens.json -------------------------------------------------------------------------------- /docs/client/em/authority/v1/query.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/docs/client/em/authority/v1/query.swagger.json -------------------------------------------------------------------------------- /docs/client/em/buyback/v1/query.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/docs/client/em/buyback/v1/query.swagger.json -------------------------------------------------------------------------------- /docs/client/em/inflation/v1/query.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/docs/client/em/inflation/v1/query.swagger.json -------------------------------------------------------------------------------- /docs/client/em/issuer/v1/query.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/docs/client/em/issuer/v1/query.swagger.json -------------------------------------------------------------------------------- /docs/client/em/liquidityprovider/v1/query.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/docs/client/em/liquidityprovider/v1/query.swagger.json -------------------------------------------------------------------------------- /docs/client/em/market/v1/query.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/docs/client/em/market/v1/query.swagger.json -------------------------------------------------------------------------------- /docs/client/em/queries/v1/query.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/docs/client/em/queries/v1/query.swagger.json -------------------------------------------------------------------------------- /docs/e-money wordmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/docs/e-money wordmark.svg -------------------------------------------------------------------------------- /docs/emd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/docs/emd.md -------------------------------------------------------------------------------- /docs/ledger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/docs/ledger.md -------------------------------------------------------------------------------- /docs/proto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/docs/proto.md -------------------------------------------------------------------------------- /docs/proto/em/proto-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/docs/proto/em/proto-docs.md -------------------------------------------------------------------------------- /docs/proto/protodoc-markdown.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/docs/proto/protodoc-markdown.tmpl -------------------------------------------------------------------------------- /docs/tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/docs/tokens.md -------------------------------------------------------------------------------- /emd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/emd.sh -------------------------------------------------------------------------------- /encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/encoding.go -------------------------------------------------------------------------------- /export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/export.go -------------------------------------------------------------------------------- /feegrant_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/feegrant_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/go.sum -------------------------------------------------------------------------------- /hooks/bank/bankproxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/hooks/bank/bankproxy_test.go -------------------------------------------------------------------------------- /hooks/bank/proxykeeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/hooks/bank/proxykeeper.go -------------------------------------------------------------------------------- /localnet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/localnet_test.go -------------------------------------------------------------------------------- /market_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/market_test.go -------------------------------------------------------------------------------- /merge-to-testnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/merge-to-testnet.sh -------------------------------------------------------------------------------- /multisigauthority_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/multisigauthority_test.go -------------------------------------------------------------------------------- /networks/.gitignore: -------------------------------------------------------------------------------- 1 | .emd/ -------------------------------------------------------------------------------- /networks/docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/docker/Makefile -------------------------------------------------------------------------------- /networks/docker/cosmovisor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/docker/cosmovisor/Dockerfile -------------------------------------------------------------------------------- /networks/docker/emdnode/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/docker/emdnode/Dockerfile -------------------------------------------------------------------------------- /networks/docker/emdnode/wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/docker/emdnode/wrapper.sh -------------------------------------------------------------------------------- /networks/docker/test-upg/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/docker/test-upg/Dockerfile -------------------------------------------------------------------------------- /networks/docker/test-v44/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/docker/test-v44/Dockerfile -------------------------------------------------------------------------------- /networks/ibc/.gitignore: -------------------------------------------------------------------------------- 1 | /node* 2 | gaia/ 3 | test.sh 4 | 5 | hermes 6 | -------------------------------------------------------------------------------- /networks/ibc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/ibc/README.md -------------------------------------------------------------------------------- /networks/ibc/auth-key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/ibc/auth-key.json -------------------------------------------------------------------------------- /networks/ibc/client-upd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/ibc/client-upd -------------------------------------------------------------------------------- /networks/ibc/denom-path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/ibc/denom-path -------------------------------------------------------------------------------- /networks/ibc/e-money.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/ibc/e-money.sh -------------------------------------------------------------------------------- /networks/ibc/em-key1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/ibc/em-key1.json -------------------------------------------------------------------------------- /networks/ibc/emkey-2-hermes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/ibc/emkey-2-hermes.sh -------------------------------------------------------------------------------- /networks/ibc/emoney-config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/ibc/emoney-config.toml -------------------------------------------------------------------------------- /networks/ibc/gaia-denom-path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/ibc/gaia-denom-path -------------------------------------------------------------------------------- /networks/ibc/gaia_client_upd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/ibc/gaia_client_upd -------------------------------------------------------------------------------- /networks/ibc/gm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/ibc/gm -------------------------------------------------------------------------------- /networks/ibc/gm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/ibc/gm.toml -------------------------------------------------------------------------------- /networks/ibc/ibc-conn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/ibc/ibc-conn.sh -------------------------------------------------------------------------------- /networks/ibc/ibc-em-gaia-relay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/ibc/ibc-em-gaia-relay.sh -------------------------------------------------------------------------------- /networks/ibc/ibc-gaia-em-relay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/ibc/ibc-gaia-em-relay.sh -------------------------------------------------------------------------------- /networks/ibc/lib-gm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/ibc/lib-gm -------------------------------------------------------------------------------- /networks/ibc/q-client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/ibc/q-client -------------------------------------------------------------------------------- /networks/ibc/q-gaia-client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/ibc/q-gaia-client -------------------------------------------------------------------------------- /networks/ibc/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/ibc/run.sh -------------------------------------------------------------------------------- /networks/ibc/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/ibc/start.sh -------------------------------------------------------------------------------- /networks/upg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/upg/README.md -------------------------------------------------------------------------------- /networks/upg/cpemd42: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/upg/cpemd42 -------------------------------------------------------------------------------- /networks/upg/cpemd44: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/upg/cpemd44 -------------------------------------------------------------------------------- /networks/upg/create-zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/upg/create-zip -------------------------------------------------------------------------------- /networks/upg/initchain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/upg/initchain -------------------------------------------------------------------------------- /networks/upg/post-upg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/upg/post-upg -------------------------------------------------------------------------------- /networks/upg/post-upg-44: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/upg/post-upg-44 -------------------------------------------------------------------------------- /networks/upg/resetv42: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/upg/resetv42 -------------------------------------------------------------------------------- /networks/upg/set-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/upg/set-env -------------------------------------------------------------------------------- /networks/upg/start-full-cv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/upg/start-full-cv -------------------------------------------------------------------------------- /networks/upg/start-same-cv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/upg/start-same-cv -------------------------------------------------------------------------------- /networks/upg/start-upg-cv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/upg/start-upg-cv -------------------------------------------------------------------------------- /networks/upg/startcv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/upg/startcv -------------------------------------------------------------------------------- /networks/upg/upg-sched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/upg/upg-sched -------------------------------------------------------------------------------- /networks/upg/upgfunc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/upg/upgfunc.txt -------------------------------------------------------------------------------- /networks/upg/upgv44func.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/upg/upgv44func.txt -------------------------------------------------------------------------------- /networks/upg/v42-v44.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/upg/v42-v44.zip -------------------------------------------------------------------------------- /networks/utils/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/utils/init -------------------------------------------------------------------------------- /networks/utils/single-validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/utils/single-validator.py -------------------------------------------------------------------------------- /networks/utils/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/utils/start -------------------------------------------------------------------------------- /networks/utils/startemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/utils/startemd -------------------------------------------------------------------------------- /networks/utils/transplant-validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networks/utils/transplant-validators.py -------------------------------------------------------------------------------- /networktest/denom_metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networktest/denom_metadata.go -------------------------------------------------------------------------------- /networktest/emcli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networktest/emcli.go -------------------------------------------------------------------------------- /networktest/eventlistener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networktest/eventlistener.go -------------------------------------------------------------------------------- /networktest/readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networktest/readme.MD -------------------------------------------------------------------------------- /networktest/testkeystore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networktest/testkeystore.go -------------------------------------------------------------------------------- /networktest/testnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networktest/testnet.go -------------------------------------------------------------------------------- /networktest/testnet_quiet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networktest/testnet_quiet.go -------------------------------------------------------------------------------- /networktest/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/networktest/util.go -------------------------------------------------------------------------------- /proto/em/authority/v1/authority.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/proto/em/authority/v1/authority.proto -------------------------------------------------------------------------------- /proto/em/authority/v1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/proto/em/authority/v1/genesis.proto -------------------------------------------------------------------------------- /proto/em/authority/v1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/proto/em/authority/v1/query.proto -------------------------------------------------------------------------------- /proto/em/authority/v1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/proto/em/authority/v1/tx.proto -------------------------------------------------------------------------------- /proto/em/buyback/v1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/proto/em/buyback/v1/genesis.proto -------------------------------------------------------------------------------- /proto/em/buyback/v1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/proto/em/buyback/v1/query.proto -------------------------------------------------------------------------------- /proto/em/inflation/v1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/proto/em/inflation/v1/genesis.proto -------------------------------------------------------------------------------- /proto/em/inflation/v1/inflation.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/proto/em/inflation/v1/inflation.proto -------------------------------------------------------------------------------- /proto/em/inflation/v1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/proto/em/inflation/v1/query.proto -------------------------------------------------------------------------------- /proto/em/issuer/v1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/proto/em/issuer/v1/genesis.proto -------------------------------------------------------------------------------- /proto/em/issuer/v1/issuer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/proto/em/issuer/v1/issuer.proto -------------------------------------------------------------------------------- /proto/em/issuer/v1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/proto/em/issuer/v1/query.proto -------------------------------------------------------------------------------- /proto/em/issuer/v1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/proto/em/issuer/v1/tx.proto -------------------------------------------------------------------------------- /proto/em/liquidityprovider/v1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/proto/em/liquidityprovider/v1/genesis.proto -------------------------------------------------------------------------------- /proto/em/liquidityprovider/v1/liquidityprovider.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/proto/em/liquidityprovider/v1/liquidityprovider.proto -------------------------------------------------------------------------------- /proto/em/liquidityprovider/v1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/proto/em/liquidityprovider/v1/query.proto -------------------------------------------------------------------------------- /proto/em/liquidityprovider/v1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/proto/em/liquidityprovider/v1/tx.proto -------------------------------------------------------------------------------- /proto/em/market/v1/market.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/proto/em/market/v1/market.proto -------------------------------------------------------------------------------- /proto/em/market/v1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/proto/em/market/v1/query.proto -------------------------------------------------------------------------------- /proto/em/market/v1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/proto/em/market/v1/tx.proto -------------------------------------------------------------------------------- /proto/em/queries/v1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/proto/em/queries/v1/query.proto -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/linkify_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/scripts/linkify_changelog.py -------------------------------------------------------------------------------- /scripts/protoc-swagger-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/scripts/protoc-swagger-gen.sh -------------------------------------------------------------------------------- /scripts/protocgen-any.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/scripts/protocgen-any.sh -------------------------------------------------------------------------------- /scripts/protocgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/scripts/protocgen.sh -------------------------------------------------------------------------------- /staking_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/staking_test.go -------------------------------------------------------------------------------- /third_party/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/README.md -------------------------------------------------------------------------------- /third_party/proto/confio/proofs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/confio/proofs.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/auth/v1beta1/auth.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/auth/v1beta1/auth.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/auth/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/auth/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/auth/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/auth/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/authz/v1beta1/authz.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/authz/v1beta1/authz.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/authz/v1beta1/event.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/authz/v1beta1/event.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/authz/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/authz/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/authz/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/authz/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/authz/v1beta1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/authz/v1beta1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/bank/v1beta1/authz.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/bank/v1beta1/authz.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/bank/v1beta1/bank.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/bank/v1beta1/bank.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/bank/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/bank/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/bank/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/bank/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/bank/v1beta1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/bank/v1beta1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/base/abci/v1beta1/abci.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/base/abci/v1beta1/abci.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/base/kv/v1beta1/kv.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/base/kv/v1beta1/kv.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/base/query/v1beta1/pagination.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/base/query/v1beta1/pagination.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/base/reflection/v1beta1/reflection.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/base/reflection/v1beta1/reflection.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/base/reflection/v2alpha1/reflection.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/base/reflection/v2alpha1/reflection.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/base/snapshots/v1beta1/snapshot.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/base/snapshots/v1beta1/snapshot.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/base/store/v1beta1/commit_info.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/base/store/v1beta1/commit_info.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/base/store/v1beta1/listening.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/base/store/v1beta1/listening.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/base/store/v1beta1/snapshot.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/base/store/v1beta1/snapshot.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/base/tendermint/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/base/tendermint/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/base/v1beta1/coin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/base/v1beta1/coin.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/capability/v1beta1/capability.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/capability/v1beta1/capability.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/capability/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/capability/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/crisis/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/crisis/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/crisis/v1beta1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/crisis/v1beta1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/crypto/ed25519/keys.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/crypto/ed25519/keys.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/crypto/multisig/keys.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/crypto/multisig/keys.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/crypto/multisig/v1beta1/multisig.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/crypto/multisig/v1beta1/multisig.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/crypto/secp256k1/keys.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/crypto/secp256k1/keys.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/crypto/secp256r1/keys.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/crypto/secp256r1/keys.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/distribution/v1beta1/distribution.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/distribution/v1beta1/distribution.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/distribution/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/distribution/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/distribution/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/distribution/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/distribution/v1beta1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/distribution/v1beta1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/evidence/v1beta1/evidence.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/evidence/v1beta1/evidence.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/evidence/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/evidence/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/evidence/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/evidence/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/evidence/v1beta1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/evidence/v1beta1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/feegrant/v1beta1/feegrant.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/feegrant/v1beta1/feegrant.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/feegrant/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/feegrant/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/feegrant/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/feegrant/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/feegrant/v1beta1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/feegrant/v1beta1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/genutil/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/genutil/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/gov/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/gov/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/gov/v1beta1/gov.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/gov/v1beta1/gov.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/gov/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/gov/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/gov/v1beta1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/gov/v1beta1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/mint/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/mint/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/mint/v1beta1/mint.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/mint/v1beta1/mint.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/mint/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/mint/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/params/v1beta1/params.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/params/v1beta1/params.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/params/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/params/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/slashing/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/slashing/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/slashing/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/slashing/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/slashing/v1beta1/slashing.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/slashing/v1beta1/slashing.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/slashing/v1beta1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/slashing/v1beta1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/staking/v1beta1/authz.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/staking/v1beta1/authz.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/staking/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/staking/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/staking/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/staking/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/staking/v1beta1/staking.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/staking/v1beta1/staking.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/staking/v1beta1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/staking/v1beta1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/tx/signing/v1beta1/signing.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/tx/signing/v1beta1/signing.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/tx/v1beta1/service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/tx/v1beta1/service.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/tx/v1beta1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/tx/v1beta1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/upgrade/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/upgrade/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/upgrade/v1beta1/upgrade.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/upgrade/v1beta1/upgrade.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/vesting/v1beta1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/vesting/v1beta1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/vesting/v1beta1/vesting.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos/vesting/v1beta1/vesting.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos_proto/cosmos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/cosmos_proto/cosmos.proto -------------------------------------------------------------------------------- /third_party/proto/gogoproto/gogo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/gogoproto/gogo.proto -------------------------------------------------------------------------------- /third_party/proto/google/api/annotations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/google/api/annotations.proto -------------------------------------------------------------------------------- /third_party/proto/google/api/http.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/google/api/http.proto -------------------------------------------------------------------------------- /third_party/proto/google/api/httpbody.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/google/api/httpbody.proto -------------------------------------------------------------------------------- /third_party/proto/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/google/protobuf/any.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/applications/transfer/v1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/applications/transfer/v1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/applications/transfer/v1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/applications/transfer/v1/query.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/applications/transfer/v1/transfer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/applications/transfer/v1/transfer.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/applications/transfer/v1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/applications/transfer/v1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/channel/v1/channel.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/core/channel/v1/channel.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/channel/v1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/core/channel/v1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/channel/v1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/core/channel/v1/query.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/channel/v1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/core/channel/v1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/client/v1/client.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/core/client/v1/client.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/client/v1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/core/client/v1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/client/v1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/core/client/v1/query.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/client/v1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/core/client/v1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/commitment/v1/commitment.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/core/commitment/v1/commitment.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/connection/v1/connection.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/core/connection/v1/connection.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/connection/v1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/core/connection/v1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/connection/v1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/core/connection/v1/query.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/connection/v1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/core/connection/v1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/types/v1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/core/types/v1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/lightclients/localhost/v1/localhost.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/lightclients/localhost/v1/localhost.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/lightclients/solomachine/v1/solomachine.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/lightclients/solomachine/v1/solomachine.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/lightclients/solomachine/v2/solomachine.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/lightclients/solomachine/v2/solomachine.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/lightclients/tendermint/v1/tendermint.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/ibc/lightclients/tendermint/v1/tendermint.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/abci/types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/tendermint/abci/types.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/crypto/keys.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/tendermint/crypto/keys.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/crypto/proof.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/tendermint/crypto/proof.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/libs/bits/types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/tendermint/libs/bits/types.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/p2p/types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/tendermint/p2p/types.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/types/block.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/tendermint/types/block.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/types/evidence.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/tendermint/types/evidence.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/types/params.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/tendermint/types/params.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/types/types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/tendermint/types/types.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/types/validator.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/tendermint/types/validator.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/version/types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/proto/tendermint/version/types.proto -------------------------------------------------------------------------------- /third_party/upd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/third_party/upd.sh -------------------------------------------------------------------------------- /types/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/types/address.go -------------------------------------------------------------------------------- /types/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/types/context.go -------------------------------------------------------------------------------- /types/proto_json_marshaler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/types/proto_json_marshaler.go -------------------------------------------------------------------------------- /upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/upgrade_test.go -------------------------------------------------------------------------------- /util/cast_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/util/cast_utils.go -------------------------------------------------------------------------------- /util/cobra_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/util/cobra_utils.go -------------------------------------------------------------------------------- /util/coin_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/util/coin_utils.go -------------------------------------------------------------------------------- /util/coin_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/util/coin_utils_test.go -------------------------------------------------------------------------------- /util/denom_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/util/denom_utils.go -------------------------------------------------------------------------------- /util/denom_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/util/denom_utils_test.go -------------------------------------------------------------------------------- /x/auth/ante/ante.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/auth/ante/ante.go -------------------------------------------------------------------------------- /x/auth/ante/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/auth/ante/expected_keepers.go -------------------------------------------------------------------------------- /x/auth/ante/fee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/auth/ante/fee.go -------------------------------------------------------------------------------- /x/auth/ante/fee_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/auth/ante/fee_test.go -------------------------------------------------------------------------------- /x/authority/alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/alias.go -------------------------------------------------------------------------------- /x/authority/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/client/cli/query.go -------------------------------------------------------------------------------- /x/authority/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/client/cli/tx.go -------------------------------------------------------------------------------- /x/authority/client/cli/tx_issuer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/client/cli/tx_issuer_test.go -------------------------------------------------------------------------------- /x/authority/client/cli/tx_replace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/client/cli/tx_replace_test.go -------------------------------------------------------------------------------- /x/authority/client/cli/tx_upg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/client/cli/tx_upg_test.go -------------------------------------------------------------------------------- /x/authority/client/rest/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/client/rest/query.go -------------------------------------------------------------------------------- /x/authority/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/genesis.go -------------------------------------------------------------------------------- /x/authority/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/handler.go -------------------------------------------------------------------------------- /x/authority/keeper/abci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/keeper/abci.go -------------------------------------------------------------------------------- /x/authority/keeper/grpc_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/keeper/grpc_query.go -------------------------------------------------------------------------------- /x/authority/keeper/grpc_query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/keeper/grpc_query_test.go -------------------------------------------------------------------------------- /x/authority/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/keeper/keeper.go -------------------------------------------------------------------------------- /x/authority/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/authority/keeper/msg_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/keeper/msg_server.go -------------------------------------------------------------------------------- /x/authority/keeper/msg_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/keeper/msg_server_test.go -------------------------------------------------------------------------------- /x/authority/keeper/querier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/keeper/querier.go -------------------------------------------------------------------------------- /x/authority/keeper/querier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/keeper/querier_test.go -------------------------------------------------------------------------------- /x/authority/legacy/v09/migrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/legacy/v09/migrate.go -------------------------------------------------------------------------------- /x/authority/legacy/v09/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/legacy/v09/types.go -------------------------------------------------------------------------------- /x/authority/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/module.go -------------------------------------------------------------------------------- /x/authority/types/authority.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/types/authority.pb.go -------------------------------------------------------------------------------- /x/authority/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/types/codec.go -------------------------------------------------------------------------------- /x/authority/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/types/errors.go -------------------------------------------------------------------------------- /x/authority/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/types/expected_keepers.go -------------------------------------------------------------------------------- /x/authority/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/types/genesis.pb.go -------------------------------------------------------------------------------- /x/authority/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/types/keys.go -------------------------------------------------------------------------------- /x/authority/types/msgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/types/msgs.go -------------------------------------------------------------------------------- /x/authority/types/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/types/query.go -------------------------------------------------------------------------------- /x/authority/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/types/query.pb.go -------------------------------------------------------------------------------- /x/authority/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/authority/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/authority/types/tx.pb.go -------------------------------------------------------------------------------- /x/buyback/abci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/buyback/abci.go -------------------------------------------------------------------------------- /x/buyback/abci_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/buyback/abci_test.go -------------------------------------------------------------------------------- /x/buyback/alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/buyback/alias.go -------------------------------------------------------------------------------- /x/buyback/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/buyback/client/cli/query.go -------------------------------------------------------------------------------- /x/buyback/client/rest/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/buyback/client/rest/query.go -------------------------------------------------------------------------------- /x/buyback/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/buyback/genesis.go -------------------------------------------------------------------------------- /x/buyback/internal/keeper/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/buyback/internal/keeper/expected_keepers.go -------------------------------------------------------------------------------- /x/buyback/internal/keeper/fast_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/buyback/internal/keeper/fast_update.go -------------------------------------------------------------------------------- /x/buyback/internal/keeper/grpc_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/buyback/internal/keeper/grpc_query.go -------------------------------------------------------------------------------- /x/buyback/internal/keeper/grpc_query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/buyback/internal/keeper/grpc_query_test.go -------------------------------------------------------------------------------- /x/buyback/internal/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/buyback/internal/keeper/keeper.go -------------------------------------------------------------------------------- /x/buyback/internal/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/buyback/internal/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/buyback/internal/keeper/querier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/buyback/internal/keeper/querier.go -------------------------------------------------------------------------------- /x/buyback/internal/types/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/buyback/internal/types/events.go -------------------------------------------------------------------------------- /x/buyback/internal/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/buyback/internal/types/expected_keepers.go -------------------------------------------------------------------------------- /x/buyback/internal/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/buyback/internal/types/genesis.pb.go -------------------------------------------------------------------------------- /x/buyback/internal/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/buyback/internal/types/keys.go -------------------------------------------------------------------------------- /x/buyback/internal/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/buyback/internal/types/query.pb.go -------------------------------------------------------------------------------- /x/buyback/internal/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/buyback/internal/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/buyback/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/buyback/module.go -------------------------------------------------------------------------------- /x/distribution/abci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/distribution/abci.go -------------------------------------------------------------------------------- /x/distribution/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/distribution/module.go -------------------------------------------------------------------------------- /x/genutil/client/cli/migrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/genutil/client/cli/migrate.go -------------------------------------------------------------------------------- /x/genutil/client/cli/upgrade_consensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/genutil/client/cli/upgrade_consensus.go -------------------------------------------------------------------------------- /x/genutil/client/cli/validate_genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/genutil/client/cli/validate_genesis.go -------------------------------------------------------------------------------- /x/genutil/legacy/v090/denom_metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/genutil/legacy/v090/denom_metadata.go -------------------------------------------------------------------------------- /x/genutil/legacy/v090/migrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/genutil/legacy/v090/migrate.go -------------------------------------------------------------------------------- /x/genutil/legacy/v090/migrate_denom_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/genutil/legacy/v090/migrate_denom_test.go -------------------------------------------------------------------------------- /x/genutil/legacy/v090/migrate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/genutil/legacy/v090/migrate_test.go -------------------------------------------------------------------------------- /x/genutil/legacy/v090/types.go: -------------------------------------------------------------------------------- 1 | package v040 2 | 3 | const ( 4 | ModuleName = "genutil" 5 | ) 6 | -------------------------------------------------------------------------------- /x/inflation/accrual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/accrual.go -------------------------------------------------------------------------------- /x/inflation/accrual_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/accrual_test.go -------------------------------------------------------------------------------- /x/inflation/alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/alias.go -------------------------------------------------------------------------------- /x/inflation/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/client/cli/query.go -------------------------------------------------------------------------------- /x/inflation/client/rest/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/client/rest/query.go -------------------------------------------------------------------------------- /x/inflation/client/rest/rest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/client/rest/rest.go -------------------------------------------------------------------------------- /x/inflation/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/genesis.go -------------------------------------------------------------------------------- /x/inflation/keeper/grpc_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/keeper/grpc_query.go -------------------------------------------------------------------------------- /x/inflation/keeper/grpc_query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/keeper/grpc_query_test.go -------------------------------------------------------------------------------- /x/inflation/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/keeper/keeper.go -------------------------------------------------------------------------------- /x/inflation/keeper/querier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/keeper/querier.go -------------------------------------------------------------------------------- /x/inflation/keeper/querier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/keeper/querier_test.go -------------------------------------------------------------------------------- /x/inflation/keeper/test_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/keeper/test_common.go -------------------------------------------------------------------------------- /x/inflation/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/module.go -------------------------------------------------------------------------------- /x/inflation/state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/state_test.go -------------------------------------------------------------------------------- /x/inflation/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/types/codec.go -------------------------------------------------------------------------------- /x/inflation/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/types/errors.go -------------------------------------------------------------------------------- /x/inflation/types/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/types/events.go -------------------------------------------------------------------------------- /x/inflation/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/types/expected_keepers.go -------------------------------------------------------------------------------- /x/inflation/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/types/genesis.pb.go -------------------------------------------------------------------------------- /x/inflation/types/inflation.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/types/inflation.pb.go -------------------------------------------------------------------------------- /x/inflation/types/inflation_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/types/inflation_state.go -------------------------------------------------------------------------------- /x/inflation/types/inflation_state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/types/inflation_state_test.go -------------------------------------------------------------------------------- /x/inflation/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/types/keys.go -------------------------------------------------------------------------------- /x/inflation/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/types/query.pb.go -------------------------------------------------------------------------------- /x/inflation/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/inflation/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/issuer/alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/alias.go -------------------------------------------------------------------------------- /x/issuer/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/client/cli/query.go -------------------------------------------------------------------------------- /x/issuer/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/client/cli/tx.go -------------------------------------------------------------------------------- /x/issuer/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/genesis.go -------------------------------------------------------------------------------- /x/issuer/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/handler.go -------------------------------------------------------------------------------- /x/issuer/keeper/grpc_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/keeper/grpc_query.go -------------------------------------------------------------------------------- /x/issuer/keeper/grpc_query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/keeper/grpc_query_test.go -------------------------------------------------------------------------------- /x/issuer/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/keeper/keeper.go -------------------------------------------------------------------------------- /x/issuer/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/issuer/keeper/msg_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/keeper/msg_server.go -------------------------------------------------------------------------------- /x/issuer/keeper/msg_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/keeper/msg_server_test.go -------------------------------------------------------------------------------- /x/issuer/keeper/querier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/keeper/querier.go -------------------------------------------------------------------------------- /x/issuer/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/module.go -------------------------------------------------------------------------------- /x/issuer/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/types/codec.go -------------------------------------------------------------------------------- /x/issuer/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/types/errors.go -------------------------------------------------------------------------------- /x/issuer/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/types/expected_keepers.go -------------------------------------------------------------------------------- /x/issuer/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/types/genesis.pb.go -------------------------------------------------------------------------------- /x/issuer/types/issuer.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/types/issuer.pb.go -------------------------------------------------------------------------------- /x/issuer/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/types/keys.go -------------------------------------------------------------------------------- /x/issuer/types/msgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/types/msgs.go -------------------------------------------------------------------------------- /x/issuer/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/types/query.pb.go -------------------------------------------------------------------------------- /x/issuer/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/issuer/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/types/tx.pb.go -------------------------------------------------------------------------------- /x/issuer/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/issuer/types/types.go -------------------------------------------------------------------------------- /x/liquidityprovider/alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/alias.go -------------------------------------------------------------------------------- /x/liquidityprovider/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/client/cli/query.go -------------------------------------------------------------------------------- /x/liquidityprovider/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/client/cli/tx.go -------------------------------------------------------------------------------- /x/liquidityprovider/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/genesis.go -------------------------------------------------------------------------------- /x/liquidityprovider/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/genesis_test.go -------------------------------------------------------------------------------- /x/liquidityprovider/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/handler.go -------------------------------------------------------------------------------- /x/liquidityprovider/keeper/grpc_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/keeper/grpc_query.go -------------------------------------------------------------------------------- /x/liquidityprovider/keeper/grpc_query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/keeper/grpc_query_test.go -------------------------------------------------------------------------------- /x/liquidityprovider/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/keeper/keeper.go -------------------------------------------------------------------------------- /x/liquidityprovider/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/liquidityprovider/keeper/msg_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/keeper/msg_server.go -------------------------------------------------------------------------------- /x/liquidityprovider/keeper/msg_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/keeper/msg_server_test.go -------------------------------------------------------------------------------- /x/liquidityprovider/legacy/v09/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/legacy/v09/types.go -------------------------------------------------------------------------------- /x/liquidityprovider/legacy/v09/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/legacy/v09/types_test.go -------------------------------------------------------------------------------- /x/liquidityprovider/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/module.go -------------------------------------------------------------------------------- /x/liquidityprovider/types/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/types/account.go -------------------------------------------------------------------------------- /x/liquidityprovider/types/account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/types/account_test.go -------------------------------------------------------------------------------- /x/liquidityprovider/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/types/codec.go -------------------------------------------------------------------------------- /x/liquidityprovider/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/types/errors.go -------------------------------------------------------------------------------- /x/liquidityprovider/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/types/expected_keepers.go -------------------------------------------------------------------------------- /x/liquidityprovider/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/types/genesis.pb.go -------------------------------------------------------------------------------- /x/liquidityprovider/types/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/types/key.go -------------------------------------------------------------------------------- /x/liquidityprovider/types/liquidityprovider.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/types/liquidityprovider.pb.go -------------------------------------------------------------------------------- /x/liquidityprovider/types/msgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/types/msgs.go -------------------------------------------------------------------------------- /x/liquidityprovider/types/msgs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/types/msgs_test.go -------------------------------------------------------------------------------- /x/liquidityprovider/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/types/query.pb.go -------------------------------------------------------------------------------- /x/liquidityprovider/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/liquidityprovider/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/liquidityprovider/types/tx.pb.go -------------------------------------------------------------------------------- /x/market/alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/alias.go -------------------------------------------------------------------------------- /x/market/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/client/cli/query.go -------------------------------------------------------------------------------- /x/market/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/client/cli/tx.go -------------------------------------------------------------------------------- /x/market/client/rest/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/client/rest/query.go -------------------------------------------------------------------------------- /x/market/client/rest/tx.go: -------------------------------------------------------------------------------- 1 | package rest 2 | -------------------------------------------------------------------------------- /x/market/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/handler.go -------------------------------------------------------------------------------- /x/market/keeper/grpc_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/keeper/grpc_query.go -------------------------------------------------------------------------------- /x/market/keeper/grpc_query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/keeper/grpc_query_test.go -------------------------------------------------------------------------------- /x/market/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/keeper/keeper.go -------------------------------------------------------------------------------- /x/market/keeper/keeper_fuzzing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/keeper/keeper_fuzzing_test.go -------------------------------------------------------------------------------- /x/market/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/market/keeper/msg_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/keeper/msg_server.go -------------------------------------------------------------------------------- /x/market/keeper/msg_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/keeper/msg_server_test.go -------------------------------------------------------------------------------- /x/market/keeper/querier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/keeper/querier.go -------------------------------------------------------------------------------- /x/market/keeper/querier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/keeper/querier_test.go -------------------------------------------------------------------------------- /x/market/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/module.go -------------------------------------------------------------------------------- /x/market/spec/01_state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/spec/01_state.md -------------------------------------------------------------------------------- /x/market/spec/02_messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/spec/02_messages.md -------------------------------------------------------------------------------- /x/market/spec/03_events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/spec/03_events.md -------------------------------------------------------------------------------- /x/market/spec/04_queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/spec/04_queries.md -------------------------------------------------------------------------------- /x/market/spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/spec/README.md -------------------------------------------------------------------------------- /x/market/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/types/codec.go -------------------------------------------------------------------------------- /x/market/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/types/errors.go -------------------------------------------------------------------------------- /x/market/types/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/types/events.go -------------------------------------------------------------------------------- /x/market/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/types/expected_keepers.go -------------------------------------------------------------------------------- /x/market/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/types/keys.go -------------------------------------------------------------------------------- /x/market/types/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/types/keys_test.go -------------------------------------------------------------------------------- /x/market/types/market.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/types/market.pb.go -------------------------------------------------------------------------------- /x/market/types/msgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/types/msgs.go -------------------------------------------------------------------------------- /x/market/types/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/types/query.go -------------------------------------------------------------------------------- /x/market/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/types/query.pb.go -------------------------------------------------------------------------------- /x/market/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/market/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/types/tx.pb.go -------------------------------------------------------------------------------- /x/market/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/types/types.go -------------------------------------------------------------------------------- /x/market/types/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/market/types/types_test.go -------------------------------------------------------------------------------- /x/queries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/queries/README.md -------------------------------------------------------------------------------- /x/queries/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/queries/client/cli/query.go -------------------------------------------------------------------------------- /x/queries/client/rest/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/queries/client/rest/query.go -------------------------------------------------------------------------------- /x/queries/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/queries/expected_keepers.go -------------------------------------------------------------------------------- /x/queries/grpc_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/queries/grpc_query.go -------------------------------------------------------------------------------- /x/queries/grpc_query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/queries/grpc_query_test.go -------------------------------------------------------------------------------- /x/queries/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/queries/module.go -------------------------------------------------------------------------------- /x/queries/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/queries/types/keys.go -------------------------------------------------------------------------------- /x/queries/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/queries/types/query.pb.go -------------------------------------------------------------------------------- /x/queries/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/queries/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/slashing/alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/slashing/alias.go -------------------------------------------------------------------------------- /x/slashing/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/slashing/genesis.go -------------------------------------------------------------------------------- /x/slashing/keeper/abci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/slashing/keeper/abci.go -------------------------------------------------------------------------------- /x/slashing/keeper/abci_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/slashing/keeper/abci_test.go -------------------------------------------------------------------------------- /x/slashing/keeper/infractions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/slashing/keeper/infractions.go -------------------------------------------------------------------------------- /x/slashing/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/slashing/keeper/keeper.go -------------------------------------------------------------------------------- /x/slashing/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/slashing/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/slashing/keeper/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/slashing/keeper/params.go -------------------------------------------------------------------------------- /x/slashing/legacy/v09/migrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/slashing/legacy/v09/migrate.go -------------------------------------------------------------------------------- /x/slashing/legacy/v09/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/slashing/legacy/v09/types.go -------------------------------------------------------------------------------- /x/slashing/migration/migrations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/slashing/migration/migrations.go -------------------------------------------------------------------------------- /x/slashing/migration/v043/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/slashing/migration/v043/store.go -------------------------------------------------------------------------------- /x/slashing/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/slashing/module.go -------------------------------------------------------------------------------- /x/slashing/types/expected_database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/slashing/types/expected_database.go -------------------------------------------------------------------------------- /x/slashing/types/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/slashing/types/params.go -------------------------------------------------------------------------------- /x/staking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/staking/README.md -------------------------------------------------------------------------------- /x/staking/abci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/staking/abci.go -------------------------------------------------------------------------------- /x/staking/keeper/historical_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/staking/keeper/historical_info.go -------------------------------------------------------------------------------- /x/staking/keeper/historical_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/staking/keeper/historical_info_test.go -------------------------------------------------------------------------------- /x/staking/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/staking/module.go -------------------------------------------------------------------------------- /x/staking/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/staking/types/expected_keepers.go -------------------------------------------------------------------------------- /x/upgrade/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-money/em-ledger/HEAD/x/upgrade/module.go --------------------------------------------------------------------------------