├── .clang-format ├── .codecov.yml ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── spn-bug-report.md │ └── spn-feature-request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── dependency.yml │ ├── janitor.yml │ ├── sims.yml │ ├── simulation.yml │ ├── test-lint.yml │ ├── test-semantic.yml │ └── test.yml ├── .gitignore ├── .golangci.yml ├── LICENSE ├── Makefile ├── app ├── app.go ├── export.go ├── genesis.go ├── simulation_test.go └── simutil │ └── app_state.go ├── buf.work.yaml ├── cmd ├── encoding.go ├── genaccounts.go ├── prefixes.go ├── root.go └── spnd │ └── main.go ├── config.yml ├── config_2.yml ├── contrib └── devtools │ └── Makefile ├── docs ├── docs.go └── static │ └── openapi.yml ├── go.mod ├── go.sum ├── localnet ├── auctions │ ├── auction_template.json │ └── sale_template.json ├── clear.py ├── conf.yml ├── delegate.py ├── hermes │ └── config.toml ├── initialize_rewards.py ├── readme.md ├── run_auction.py ├── run_incentivized.py ├── run_sale.py ├── spn │ ├── genesis_template.json │ ├── node1 │ │ ├── config │ │ │ ├── app.toml │ │ │ ├── client.toml │ │ │ ├── config.toml │ │ │ ├── node_key.json │ │ │ └── priv_validator_key.json │ │ ├── data │ │ │ └── priv_validator_state.json │ │ └── keyring-test │ │ │ ├── 0d9b6d6d53bfbd3ff7213d704feed7937238f479.address │ │ │ ├── 5bb16c63247562de964aaf829844970418aa4a27.address │ │ │ ├── a0c4a1ba7f40fd34eb3de0a8ae43224a5c3361fb.address │ │ │ ├── alice.info │ │ │ ├── becc7cf6cb516a780a48dda0c0b0b7ebc05869cf.address │ │ │ ├── bob.info │ │ │ ├── c882b86e330ce95018ac607b7acc9b1e68525865.address │ │ │ ├── carol.info │ │ │ ├── dave.info │ │ │ ├── ddc8182affb6df316aca0f39b9e8a551f1362115.address │ │ │ ├── e826724d838cb60d78fe2839f10dd7c5c146ac6c.address │ │ │ ├── joe.info │ │ │ ├── olivia.info │ │ │ └── steve.info │ ├── node2 │ │ ├── config │ │ │ ├── app.toml │ │ │ ├── client.toml │ │ │ ├── config.toml │ │ │ ├── node_key.json │ │ │ └── priv_validator_key.json │ │ ├── data │ │ │ └── priv_validator_state.json │ │ └── keyring-test │ │ │ ├── 0d9b6d6d53bfbd3ff7213d704feed7937238f479.address │ │ │ ├── 5bb16c63247562de964aaf829844970418aa4a27.address │ │ │ ├── a0c4a1ba7f40fd34eb3de0a8ae43224a5c3361fb.address │ │ │ ├── alice.info │ │ │ ├── becc7cf6cb516a780a48dda0c0b0b7ebc05869cf.address │ │ │ ├── bob.info │ │ │ ├── c882b86e330ce95018ac607b7acc9b1e68525865.address │ │ │ ├── carol.info │ │ │ ├── dave.info │ │ │ ├── ddc8182affb6df316aca0f39b9e8a551f1362115.address │ │ │ ├── e826724d838cb60d78fe2839f10dd7c5c146ac6c.address │ │ │ ├── joe.info │ │ │ ├── olivia.info │ │ │ └── steve.info │ └── node3 │ │ ├── config │ │ ├── app.toml │ │ ├── client.toml │ │ ├── config.toml │ │ ├── node_key.json │ │ └── priv_validator_key.json │ │ ├── data │ │ └── priv_validator_state.json │ │ └── keyring-test │ │ ├── 0d9b6d6d53bfbd3ff7213d704feed7937238f479.address │ │ ├── 5bb16c63247562de964aaf829844970418aa4a27.address │ │ ├── a0c4a1ba7f40fd34eb3de0a8ae43224a5c3361fb.address │ │ ├── alice.info │ │ ├── becc7cf6cb516a780a48dda0c0b0b7ebc05869cf.address │ │ ├── bob.info │ │ ├── c882b86e330ce95018ac607b7acc9b1e68525865.address │ │ ├── carol.info │ │ ├── dave.info │ │ ├── ddc8182affb6df316aca0f39b9e8a551f1362115.address │ │ ├── e826724d838cb60d78fe2839f10dd7c5c146ac6c.address │ │ ├── joe.info │ │ ├── olivia.info │ │ └── steve.info ├── start_spn.py ├── start_testnet.py ├── testnet │ ├── genesis_template.json │ ├── node1 │ │ ├── config │ │ │ ├── app.toml │ │ │ ├── client.toml │ │ │ ├── config.toml │ │ │ ├── gentx │ │ │ │ └── gentx.json │ │ │ ├── node_key.json │ │ │ └── priv_validator_key.json │ │ ├── data │ │ │ └── priv_validator_state.json │ │ └── keyring-test │ │ │ ├── a0c4a1ba7f40fd34eb3de0a8ae43224a5c3361fb.address │ │ │ ├── becc7cf6cb516a780a48dda0c0b0b7ebc05869cf.address │ │ │ ├── ddc8182affb6df316aca0f39b9e8a551f1362115.address │ │ │ ├── joe.info │ │ │ ├── olivia.info │ │ │ └── steve.info │ ├── node2 │ │ ├── config │ │ │ ├── app.toml │ │ │ ├── client.toml │ │ │ ├── config.toml │ │ │ ├── gentx │ │ │ │ └── gentx.json │ │ │ ├── node_key.json │ │ │ └── priv_validator_key.json │ │ ├── data │ │ │ └── priv_validator_state.json │ │ └── keyring-test │ │ │ ├── a0c4a1ba7f40fd34eb3de0a8ae43224a5c3361fb.address │ │ │ ├── becc7cf6cb516a780a48dda0c0b0b7ebc05869cf.address │ │ │ ├── ddc8182affb6df316aca0f39b9e8a551f1362115.address │ │ │ ├── joe.info │ │ │ ├── olivia.info │ │ │ └── steve.info │ └── node3 │ │ ├── config │ │ ├── app.toml │ │ ├── client.toml │ │ ├── config.toml │ │ ├── gentx │ │ │ └── gentx.json │ │ ├── node_key.json │ │ └── priv_validator_key.json │ │ ├── data │ │ └── priv_validator_state.json │ │ └── keyring-test │ │ ├── a0c4a1ba7f40fd34eb3de0a8ae43224a5c3361fb.address │ │ ├── becc7cf6cb516a780a48dda0c0b0b7ebc05869cf.address │ │ ├── ddc8182affb6df316aca0f39b9e8a551f1362115.address │ │ ├── joe.info │ │ ├── olivia.info │ │ └── steve.info ├── undelegate.py └── utils.py ├── papers ├── audit.pdf └── whitepaper.pdf ├── pkg ├── airdrop │ └── airdrop_missions.go ├── chainid │ ├── chainid.go │ └── chainid_test.go └── types │ ├── bytes.go │ ├── bytes_test.go │ ├── consensus_state.go │ ├── consensus_state_test.go │ ├── constant.go │ ├── ibc.pb.go │ ├── monitoring.pb.go │ ├── monitoring_packet.go │ ├── monitoring_packet_test.go │ ├── signature_counts.go │ ├── signature_counts_test.go │ ├── types_test.go │ ├── validator_set.go │ └── validator_set_test.go ├── proto ├── buf.gen.gogo.yaml ├── buf.gen.pulsar.yaml ├── buf.gen.sta.yaml ├── buf.gen.swagger.yaml ├── buf.gen.ts.yaml ├── buf.lock ├── buf.yaml └── spn │ ├── launch │ ├── chain.proto │ ├── events.proto │ ├── genesis.proto │ ├── genesis_account.proto │ ├── genesis_validator.proto │ ├── params.proto │ ├── query.proto │ ├── request.proto │ ├── tx.proto │ └── vesting_account.proto │ ├── monitoringc │ ├── genesis.proto │ ├── launch_id_from_channel_id.proto │ ├── launch_id_from_verified_client_id.proto │ ├── monitoring_history.proto │ ├── params.proto │ ├── provider_client_id.proto │ ├── query.proto │ ├── tx.proto │ └── verified_client_id.proto │ ├── monitoringp │ ├── connection_channel_id.proto │ ├── consumer_client_id.proto │ ├── genesis.proto │ ├── monitoring_info.proto │ ├── params.proto │ ├── query.proto │ └── tx.proto │ ├── participation │ ├── auction_used_allocations.proto │ ├── events.proto │ ├── genesis.proto │ ├── params.proto │ ├── query.proto │ ├── tx.proto │ └── used_allocations.proto │ ├── profile │ ├── coordinator.proto │ ├── events.proto │ ├── genesis.proto │ ├── query.proto │ ├── tx.proto │ └── validator.proto │ ├── project │ ├── events.proto │ ├── genesis.proto │ ├── mainnet_account.proto │ ├── params.proto │ ├── project.proto │ ├── project_chains.proto │ ├── query.proto │ ├── special_allocations.proto │ ├── tx.proto │ └── vesting.proto │ ├── reward │ ├── events.proto │ ├── genesis.proto │ ├── params.proto │ ├── query.proto │ ├── reward_pool.proto │ └── tx.proto │ └── types │ ├── ibc.proto │ └── monitoring.proto ├── readme.md ├── scripts ├── metadata_sample.yml └── populate.sh ├── testutil ├── constructor ├── encoding │ └── encoding.go ├── gen_app.go ├── keeper │ ├── bank.go │ ├── bank_test.go │ ├── fundraising.go │ ├── initializer.go │ ├── keeper.go │ ├── launch.go │ ├── mock_ibc.go │ ├── mock_launch_hooks.go │ ├── mocks │ │ └── mock_launch_hooks.go │ ├── monitoring_provider.go │ ├── profile.go │ ├── profile_test.go │ ├── project.go │ └── staking.go ├── network │ └── network.go ├── networksuite │ └── networksuite.go ├── nullify │ └── nullify.go ├── sample │ ├── claim.go │ ├── fundraising.go │ ├── launch.go │ ├── monitoring.go │ ├── participation.go │ ├── profile.go │ ├── project.go │ ├── reward.go │ ├── sample.go │ └── simulation.go └── simulation │ └── util.go ├── tools └── tools.go └── x ├── launch ├── client │ └── cli │ │ ├── query.go │ │ ├── query_chain.go │ │ ├── query_chain_test.go │ │ ├── query_genesis_account.go │ │ ├── query_genesis_account_test.go │ │ ├── query_genesis_validator.go │ │ ├── query_genesis_validator_test.go │ │ ├── query_param_change.go │ │ ├── query_param_change_test.go │ │ ├── query_params.go │ │ ├── query_request.go │ │ ├── query_request_test.go │ │ ├── query_test.go │ │ ├── query_vesting_account.go │ │ ├── query_vesting_account_test.go │ │ ├── tx.go │ │ ├── tx_create_chain.go │ │ ├── tx_edit_chain.go │ │ ├── tx_request_add_account.go │ │ ├── tx_request_add_validator.go │ │ ├── tx_request_add_vesting_account.go │ │ ├── tx_request_change_param.go │ │ ├── tx_request_remove_account.go │ │ ├── tx_request_remove_validator.go │ │ ├── tx_revert_launch.go │ │ ├── tx_settle_request.go │ │ ├── tx_trigger_launch.go │ │ └── tx_update_launch_information.go ├── genesis.go ├── genesis_test.go ├── keeper │ ├── chain.go │ ├── chain_test.go │ ├── genesis_account.go │ ├── genesis_account_test.go │ ├── genesis_validator.go │ ├── genesis_validator_test.go │ ├── grpc.go │ ├── grpc_chain.go │ ├── grpc_chain_test.go │ ├── grpc_genesis_account.go │ ├── grpc_genesis_account_test.go │ ├── grpc_genesis_validator.go │ ├── grpc_genesis_validator_test.go │ ├── grpc_param_change.go │ ├── grpc_param_change_test.go │ ├── grpc_params.go │ ├── grpc_params_test.go │ ├── grpc_request.go │ ├── grpc_request_test.go │ ├── grpc_vesting_account.go │ ├── grpc_vesting_account_test.go │ ├── hooks.go │ ├── invariants.go │ ├── invariants_test.go │ ├── keeper.go │ ├── keeper_test.go │ ├── msg.go │ ├── msg_create_chain.go │ ├── msg_create_chain_test.go │ ├── msg_edit_chain.go │ ├── msg_edit_chain_test.go │ ├── msg_revert_launch.go │ ├── msg_revert_launch_test.go │ ├── msg_send_request.go │ ├── msg_send_request_test.go │ ├── msg_settle_request.go │ ├── msg_settle_request_test.go │ ├── msg_trigger_launch.go │ ├── msg_trigger_launch_test.go │ ├── msg_update_launch_information.go │ ├── msg_update_launch_information_test.go │ ├── param_change.go │ ├── param_change_test.go │ ├── params.go │ ├── params_test.go │ ├── request.go │ ├── request_test.go │ ├── validator_set.go │ ├── validator_set_test.go │ ├── vesting_account.go │ └── vesting_account_test.go ├── module.go ├── module_simulation.go ├── simulation │ ├── simulation.go │ ├── store.go │ └── store_test.go └── types │ ├── chain.go │ ├── chain.pb.go │ ├── chain_test.go │ ├── codec.go │ ├── errors.go │ ├── events.pb.go │ ├── expected_keepers.go │ ├── genesis.go │ ├── genesis.pb.go │ ├── genesis_account.pb.go │ ├── genesis_test.go │ ├── genesis_validator.pb.go │ ├── hooks.go │ ├── initial_genesis.go │ ├── initial_genesis_test.go │ ├── keys.go │ ├── msg_create_chain.go │ ├── msg_create_chain_test.go │ ├── msg_edit_chain.go │ ├── msg_edit_chain_test.go │ ├── msg_revert_launch.go │ ├── msg_revert_launch_test.go │ ├── msg_send_request.go │ ├── msg_send_request_test.go │ ├── msg_settle_request.go │ ├── msg_settle_request_test.go │ ├── msg_trigger_launch.go │ ├── msg_trigger_launch_test.go │ ├── msg_update_launch_information.go │ ├── msg_update_launch_information_test.go │ ├── params.go │ ├── params.pb.go │ ├── params_test.go │ ├── peer.go │ ├── peer_test.go │ ├── query.pb.go │ ├── query.pb.gw.go │ ├── request.pb.go │ ├── request_content.go │ ├── request_content_test.go │ ├── tx.pb.go │ ├── types_test.go │ ├── vesting_account.pb.go │ ├── vesting_options.go │ └── vesting_options_test.go ├── monitoringc ├── client │ └── cli │ │ ├── query.go │ │ ├── query_launch_id_from_channel_id.go │ │ ├── query_launch_id_from_channel_id_test.go │ │ ├── query_monitoring_history.go │ │ ├── query_monitoring_history_test.go │ │ ├── query_params.go │ │ ├── query_provider_client_id.go │ │ ├── query_provider_client_id_test.go │ │ ├── query_test.go │ │ ├── query_verified_client_ids.go │ │ ├── query_verified_client_ids_test.go │ │ ├── tx.go │ │ └── tx_create_client.go ├── genesis.go ├── genesis_test.go ├── keeper │ ├── grpc.go │ ├── grpc_launch_id_from_channel_id.go │ ├── grpc_launch_id_from_channel_id_test.go │ ├── grpc_monitoring_history.go │ ├── grpc_monitoring_history_test.go │ ├── grpc_params.go │ ├── grpc_params_test.go │ ├── grpc_provider_client_id.go │ ├── grpc_provider_client_id_test.go │ ├── grpc_verified_client_ids.go │ ├── grpc_verified_client_ids_test.go │ ├── handshake.go │ ├── handshake_test.go │ ├── invariants.go │ ├── invariants_test.go │ ├── keeper.go │ ├── keeper_test.go │ ├── launch_id_from_channel_id.go │ ├── launch_id_from_channel_id_test.go │ ├── launch_id_from_verified_client_id.go │ ├── launch_id_from_verified_client_id_test.go │ ├── monitoring_history.go │ ├── monitoring_history_test.go │ ├── monitoring_packet.go │ ├── monitoring_packet_test.go │ ├── msg.go │ ├── msg_create_client.go │ ├── msg_create_client_test.go │ ├── params.go │ ├── params_test.go │ ├── provider_client_id.go │ ├── provider_client_id_test.go │ ├── verified_client_id.go │ └── verified_client_id_test.go ├── module.go ├── module_ibc.go ├── module_simulation.go ├── simulation │ └── create_client.go └── types │ ├── codec.go │ ├── errors.go │ ├── events_ibc.go │ ├── expected_keepers.go │ ├── genesis.go │ ├── genesis.pb.go │ ├── genesis_test.go │ ├── keys.go │ ├── launch_id_from_channel_id.pb.go │ ├── launch_id_from_verified_client_id.pb.go │ ├── monitoring_history.pb.go │ ├── msg_create_client.go │ ├── msg_create_client_test.go │ ├── params.go │ ├── params.pb.go │ ├── provider_client_id.pb.go │ ├── query.pb.go │ ├── query.pb.gw.go │ ├── tx.pb.go │ ├── types_test.go │ └── verified_client_id.pb.go ├── monitoringp ├── client │ └── cli │ │ ├── query.go │ │ ├── query_connection_channel_id.go │ │ ├── query_consumer_client_id.go │ │ ├── query_monitoring_info.go │ │ ├── query_params.go │ │ └── tx.go ├── genesis.go ├── genesis_test.go ├── keeper │ ├── begin_block.go │ ├── begin_block_test.go │ ├── connection_channel_id.go │ ├── connection_channel_id_test.go │ ├── consumer_client.go │ ├── consumer_client_id.go │ ├── consumer_client_id_test.go │ ├── consumer_client_test.go │ ├── grpc.go │ ├── grpc_connection_channel_id.go │ ├── grpc_connection_channel_id_test.go │ ├── grpc_consumer_client_id.go │ ├── grpc_consumer_client_id_test.go │ ├── grpc_monitoring_info.go │ ├── grpc_monitoring_info_test.go │ ├── grpc_params.go │ ├── grpc_params_test.go │ ├── handshake.go │ ├── handshake_test.go │ ├── keeper.go │ ├── keeper_test.go │ ├── monitoring_info.go │ ├── monitoring_info_test.go │ ├── monitoring_packet.go │ ├── params.go │ └── params_test.go ├── module.go ├── module_ibc.go ├── module_simulation.go ├── simulation │ └── simulation.go └── types │ ├── codec.go │ ├── connection_channel_id.pb.go │ ├── consumer_client_id.pb.go │ ├── errors.go │ ├── events_ibc.go │ ├── expected_keepers.go │ ├── genesis.go │ ├── genesis.pb.go │ ├── genesis_test.go │ ├── keys.go │ ├── monitoring_info.pb.go │ ├── params.go │ ├── params.pb.go │ ├── params_test.go │ ├── query.pb.go │ ├── query.pb.gw.go │ ├── tx.pb.go │ └── types_test.go ├── participation ├── client │ └── cli │ │ ├── query.go │ │ ├── query_auction_used_allocations.go │ │ ├── query_auction_used_allocations_test.go │ │ ├── query_available_allocations.go │ │ ├── query_params.go │ │ ├── query_test.go │ │ ├── query_total_allocations.go │ │ ├── query_used_allocations.go │ │ ├── query_used_allocations_test.go │ │ ├── tx.go │ │ ├── tx_participate.go │ │ └── tx_withdraw_allocations.go ├── genesis.go ├── genesis_test.go ├── keeper │ ├── auction_used_allocations.go │ ├── auction_used_allocations_test.go │ ├── available_allocations.go │ ├── available_allocations_test.go │ ├── grpc.go │ ├── grpc_auction_used_allocations.go │ ├── grpc_auction_used_allocations_test.go │ ├── grpc_available_allocations.go │ ├── grpc_available_allocations_test.go │ ├── grpc_params.go │ ├── grpc_params_test.go │ ├── grpc_total_allocations.go │ ├── grpc_total_allocations_test.go │ ├── grpc_used_allocations.go │ ├── grpc_used_allocations_test.go │ ├── invariants.go │ ├── invariants_test.go │ ├── keeper.go │ ├── keeper_test.go │ ├── msg.go │ ├── msg_participate.go │ ├── msg_participate_test.go │ ├── msg_withdraw_allocations.go │ ├── msg_withdraw_allocations_test.go │ ├── params.go │ ├── params_test.go │ ├── registration_period.go │ ├── registration_period_test.go │ ├── total_allocations.go │ ├── total_allocations_test.go │ ├── used_allocations.go │ └── used_allocations_test.go ├── module.go ├── module_simulation.go ├── simulation │ ├── simulation.go │ ├── store.go │ └── store_test.go └── types │ ├── auction_used_allocations.pb.go │ ├── codec.go │ ├── errors.go │ ├── events.pb.go │ ├── expected_keepers.go │ ├── genesis.go │ ├── genesis.pb.go │ ├── genesis_test.go │ ├── keys.go │ ├── msg_participate.go │ ├── msg_participate_test.go │ ├── msg_withdraw_allocations.go │ ├── msg_withdraw_allocations_test.go │ ├── params.go │ ├── params.pb.go │ ├── params_test.go │ ├── query.pb.go │ ├── query.pb.gw.go │ ├── tier.go │ ├── tier_test.go │ ├── tx.pb.go │ ├── types_test.go │ └── used_allocations.pb.go ├── profile ├── client │ └── cli │ │ ├── query.go │ │ ├── query_coordinator.go │ │ ├── query_coordinator_by_address.go │ │ ├── query_coordinator_by_address_test.go │ │ ├── query_coordinator_test.go │ │ ├── query_test.go │ │ ├── query_validator.go │ │ ├── query_validator_by_operator_address.go │ │ ├── query_validator_test.go │ │ ├── tx.go │ │ ├── tx_add_validator_operator_address.go │ │ ├── tx_create_coordinator.go │ │ ├── tx_disable_coordinator.go │ │ ├── tx_update_coordinator_address.go │ │ ├── tx_update_coordinator_description.go │ │ └── tx_update_validator_description.go ├── genesis.go ├── genesis_test.go ├── keeper │ ├── coordinator.go │ ├── coordinator_by_address.go │ ├── coordinator_by_address_test.go │ ├── coordinator_test.go │ ├── grpc.go │ ├── grpc_coordinator.go │ ├── grpc_coordinator_by_address.go │ ├── grpc_coordinator_by_address_test.go │ ├── grpc_coordinator_test.go │ ├── grpc_validator.go │ ├── grpc_validator_by_operator_address.go │ ├── grpc_validator_by_operator_address_test.go │ ├── grpc_validator_test.go │ ├── invariants.go │ ├── invariants_test.go │ ├── keeper.go │ ├── keeper_test.go │ ├── msg.go │ ├── msg_add_validator_operator_address.go │ ├── msg_add_validator_operator_address_test.go │ ├── msg_create_coordinator.go │ ├── msg_create_coordinator_test.go │ ├── msg_disable_coordinator.go │ ├── msg_disable_coordinator_test.go │ ├── msg_update_coordinator_address.go │ ├── msg_update_coordinator_address_test.go │ ├── msg_update_coordinator_description.go │ ├── msg_update_coordinator_description_test.go │ ├── msg_update_validator_description.go │ ├── msg_update_validator_description_test.go │ ├── validator.go │ ├── validator_by_operator_address.go │ ├── validator_by_operator_address_test.go │ └── validator_test.go ├── module.go ├── module_simulation.go ├── simulation │ ├── simulation.go │ ├── store.go │ └── store_test.go └── types │ ├── codec.go │ ├── coordinator.pb.go │ ├── errors.go │ ├── events.pb.go │ ├── expected_keepers.go │ ├── genesis.go │ ├── genesis.pb.go │ ├── genesis_test.go │ ├── keys.go │ ├── msg_add_validator_operator_address.go │ ├── msg_add_validator_operator_address_test.go │ ├── msg_create_coordinator.go │ ├── msg_create_coordinator_test.go │ ├── msg_disable_coordinator.go │ ├── msg_disable_coordinator_test.go │ ├── msg_update_coordinator_address.go │ ├── msg_update_coordinator_address_test.go │ ├── msg_update_coordinator_description.go │ ├── msg_update_coordinator_description_test.go │ ├── msg_update_validator_description.go │ ├── msg_update_validator_description_test.go │ ├── query.pb.go │ ├── query.pb.gw.go │ ├── tx.pb.go │ ├── types_test.go │ ├── validator.go │ ├── validator.pb.go │ └── validator_test.go ├── project ├── client │ └── cli │ │ ├── query.go │ │ ├── query_mainnet_account.go │ │ ├── query_mainnet_account_test.go │ │ ├── query_params.go │ │ ├── query_project.go │ │ ├── query_project_chains.go │ │ ├── query_project_chains_test.go │ │ ├── query_project_test.go │ │ ├── query_special_allocations_balance.go │ │ ├── query_test.go │ │ ├── query_total_shares.go │ │ ├── tx.go │ │ ├── tx_burn_vouchers.go │ │ ├── tx_create_project.go │ │ ├── tx_edit_project.go │ │ ├── tx_initialize_mainnet.go │ │ ├── tx_mint_vouchers.go │ │ ├── tx_redeem_vouchers.go │ │ ├── tx_unredeem_vouchers.go │ │ ├── tx_update_special_allocations.go │ │ └── tx_update_total_supply.go ├── genesis.go ├── genesis_test.go ├── keeper │ ├── grpc.go │ ├── grpc_mainnet_account.go │ ├── grpc_mainnet_account_test.go │ ├── grpc_params.go │ ├── grpc_params_test.go │ ├── grpc_project.go │ ├── grpc_project_chains.go │ ├── grpc_project_chains_test.go │ ├── grpc_project_test.go │ ├── grpc_special_allocations_balance.go │ ├── grpc_special_allocations_balance_test.go │ ├── grpc_total_shares.go │ ├── grpc_total_shares_test.go │ ├── invariants.go │ ├── invariants_test.go │ ├── keeper.go │ ├── keeper_test.go │ ├── mainnet_account.go │ ├── mainnet_account_test.go │ ├── msg.go │ ├── msg_burn_vouchers.go │ ├── msg_burn_vouchers_test.go │ ├── msg_create_project.go │ ├── msg_create_project_test.go │ ├── msg_edit_project.go │ ├── msg_edit_project_test.go │ ├── msg_initialize_mainnet.go │ ├── msg_initialize_mainnet_test.go │ ├── msg_mint_vouchers.go │ ├── msg_mint_vouchers_test.go │ ├── msg_redeem_vouchers.go │ ├── msg_redeem_vouchers_test.go │ ├── msg_unredeem_vouchers.go │ ├── msg_unredeem_vouchers_test.go │ ├── msg_update_special_allocations.go │ ├── msg_update_special_allocations_test.go │ ├── msg_update_total_supply.go │ ├── msg_update_total_supply_test.go │ ├── params.go │ ├── params_test.go │ ├── project.go │ ├── project_auction_event_hooks.go │ ├── project_auction_event_hooks_test.go │ ├── project_chains.go │ ├── project_chains_test.go │ ├── project_mainnet.go │ ├── project_mainnet_test.go │ ├── project_test.go │ ├── total_shares.go │ └── total_shares_test.go ├── module.go ├── module_simulation.go ├── simulation │ ├── simulation.go │ ├── store.go │ └── store_test.go └── types │ ├── codec.go │ ├── errors.go │ ├── events.pb.go │ ├── expected_keepers.go │ ├── genesis.go │ ├── genesis.pb.go │ ├── genesis_test.go │ ├── keys.go │ ├── mainnet_account.pb.go │ ├── msg_burn_vouchers.go │ ├── msg_burn_vouchers_test.go │ ├── msg_create_project.go │ ├── msg_create_project_test.go │ ├── msg_edit_project.go │ ├── msg_edit_project_test.go │ ├── msg_initialize_mainnet.go │ ├── msg_initialize_mainnet_test.go │ ├── msg_mint_vouchers.go │ ├── msg_mint_vouchers_test.go │ ├── msg_redeem_vouchers.go │ ├── msg_redeem_vouchers_test.go │ ├── msg_unredeem_vouchers.go │ ├── msg_unredeem_vouchers_test.go │ ├── msg_update_special_allocations.go │ ├── msg_update_special_allocations_test.go │ ├── msg_update_total_supply.go │ ├── msg_update_total_supply_test.go │ ├── params.go │ ├── params.pb.go │ ├── params_test.go │ ├── project.go │ ├── project.pb.go │ ├── project_chains.pb.go │ ├── project_test.go │ ├── query.pb.go │ ├── query.pb.gw.go │ ├── share_vesting_options.go │ ├── share_vesting_options_test.go │ ├── shares.go │ ├── shares_test.go │ ├── special_allocations.go │ ├── special_allocations.pb.go │ ├── special_allocations_test.go │ ├── total_supply.go │ ├── total_supply_test.go │ ├── tx.pb.go │ ├── types_test.go │ ├── vesting.pb.go │ ├── voucher.go │ └── voucher_test.go └── reward ├── client └── cli │ ├── query.go │ ├── query_params.go │ ├── query_reward_pool.go │ ├── query_reward_pool_test.go │ ├── query_test.go │ ├── tx.go │ └── tx_set_reward.go ├── genesis.go ├── genesis_test.go ├── keeper ├── grpc.go ├── grpc_params.go ├── grpc_params_test.go ├── grpc_reward_pool.go ├── grpc_reward_pool_test.go ├── invariants.go ├── invariants_test.go ├── keeper.go ├── keeper_test.go ├── msg.go ├── msg_set_reward.go ├── msg_set_reward_test.go ├── params.go ├── params_test.go ├── reward_distribution.go ├── reward_distribution_test.go ├── reward_pool.go └── reward_pool_test.go ├── module.go ├── module_simulation.go ├── simulation ├── simulation.go ├── store.go └── store_test.go └── types ├── codec.go ├── errors.go ├── events.pb.go ├── expected_keepers.go ├── genesis.go ├── genesis.pb.go ├── genesis_test.go ├── keys.go ├── msg_set_reward.go ├── msg_set_reward_test.go ├── params.go ├── params.pb.go ├── query.pb.go ├── query.pb.gw.go ├── reward_pool.go ├── reward_pool.pb.go ├── reward_pool_test.go ├── tx.pb.go └── types_test.go /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/.clang-format -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/spn-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/.github/ISSUE_TEMPLATE/spn-bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/spn-feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/.github/ISSUE_TEMPLATE/spn-feature-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/dependency.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/.github/workflows/dependency.yml -------------------------------------------------------------------------------- /.github/workflows/janitor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/.github/workflows/janitor.yml -------------------------------------------------------------------------------- /.github/workflows/sims.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/.github/workflows/sims.yml -------------------------------------------------------------------------------- /.github/workflows/simulation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/.github/workflows/simulation.yml -------------------------------------------------------------------------------- /.github/workflows/test-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/.github/workflows/test-lint.yml -------------------------------------------------------------------------------- /.github/workflows/test-semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/.github/workflows/test-semantic.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/.golangci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/Makefile -------------------------------------------------------------------------------- /app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/app/app.go -------------------------------------------------------------------------------- /app/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/app/export.go -------------------------------------------------------------------------------- /app/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/app/genesis.go -------------------------------------------------------------------------------- /app/simulation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/app/simulation_test.go -------------------------------------------------------------------------------- /app/simutil/app_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/app/simutil/app_state.go -------------------------------------------------------------------------------- /buf.work.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/buf.work.yaml -------------------------------------------------------------------------------- /cmd/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/cmd/encoding.go -------------------------------------------------------------------------------- /cmd/genaccounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/cmd/genaccounts.go -------------------------------------------------------------------------------- /cmd/prefixes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/cmd/prefixes.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/spnd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/cmd/spnd/main.go -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/config.yml -------------------------------------------------------------------------------- /config_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/config_2.yml -------------------------------------------------------------------------------- /contrib/devtools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/contrib/devtools/Makefile -------------------------------------------------------------------------------- /docs/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/docs/docs.go -------------------------------------------------------------------------------- /docs/static/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/docs/static/openapi.yml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/go.sum -------------------------------------------------------------------------------- /localnet/auctions/auction_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/auctions/auction_template.json -------------------------------------------------------------------------------- /localnet/auctions/sale_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/auctions/sale_template.json -------------------------------------------------------------------------------- /localnet/clear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/clear.py -------------------------------------------------------------------------------- /localnet/conf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/conf.yml -------------------------------------------------------------------------------- /localnet/delegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/delegate.py -------------------------------------------------------------------------------- /localnet/hermes/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/hermes/config.toml -------------------------------------------------------------------------------- /localnet/initialize_rewards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/initialize_rewards.py -------------------------------------------------------------------------------- /localnet/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/readme.md -------------------------------------------------------------------------------- /localnet/run_auction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/run_auction.py -------------------------------------------------------------------------------- /localnet/run_incentivized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/run_incentivized.py -------------------------------------------------------------------------------- /localnet/run_sale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/run_sale.py -------------------------------------------------------------------------------- /localnet/spn/genesis_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/genesis_template.json -------------------------------------------------------------------------------- /localnet/spn/node1/config/app.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node1/config/app.toml -------------------------------------------------------------------------------- /localnet/spn/node1/config/client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node1/config/client.toml -------------------------------------------------------------------------------- /localnet/spn/node1/config/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node1/config/config.toml -------------------------------------------------------------------------------- /localnet/spn/node1/config/node_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node1/config/node_key.json -------------------------------------------------------------------------------- /localnet/spn/node1/config/priv_validator_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node1/config/priv_validator_key.json -------------------------------------------------------------------------------- /localnet/spn/node1/data/priv_validator_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node1/data/priv_validator_state.json -------------------------------------------------------------------------------- /localnet/spn/node1/keyring-test/0d9b6d6d53bfbd3ff7213d704feed7937238f479.address: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node1/keyring-test/0d9b6d6d53bfbd3ff7213d704feed7937238f479.address -------------------------------------------------------------------------------- /localnet/spn/node1/keyring-test/5bb16c63247562de964aaf829844970418aa4a27.address: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node1/keyring-test/5bb16c63247562de964aaf829844970418aa4a27.address -------------------------------------------------------------------------------- /localnet/spn/node1/keyring-test/a0c4a1ba7f40fd34eb3de0a8ae43224a5c3361fb.address: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node1/keyring-test/a0c4a1ba7f40fd34eb3de0a8ae43224a5c3361fb.address -------------------------------------------------------------------------------- /localnet/spn/node1/keyring-test/alice.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node1/keyring-test/alice.info -------------------------------------------------------------------------------- /localnet/spn/node1/keyring-test/becc7cf6cb516a780a48dda0c0b0b7ebc05869cf.address: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node1/keyring-test/becc7cf6cb516a780a48dda0c0b0b7ebc05869cf.address -------------------------------------------------------------------------------- /localnet/spn/node1/keyring-test/bob.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node1/keyring-test/bob.info -------------------------------------------------------------------------------- /localnet/spn/node1/keyring-test/carol.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node1/keyring-test/carol.info -------------------------------------------------------------------------------- /localnet/spn/node1/keyring-test/dave.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node1/keyring-test/dave.info -------------------------------------------------------------------------------- /localnet/spn/node1/keyring-test/joe.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node1/keyring-test/joe.info -------------------------------------------------------------------------------- /localnet/spn/node1/keyring-test/olivia.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node1/keyring-test/olivia.info -------------------------------------------------------------------------------- /localnet/spn/node1/keyring-test/steve.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node1/keyring-test/steve.info -------------------------------------------------------------------------------- /localnet/spn/node2/config/app.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node2/config/app.toml -------------------------------------------------------------------------------- /localnet/spn/node2/config/client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node2/config/client.toml -------------------------------------------------------------------------------- /localnet/spn/node2/config/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node2/config/config.toml -------------------------------------------------------------------------------- /localnet/spn/node2/config/node_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node2/config/node_key.json -------------------------------------------------------------------------------- /localnet/spn/node2/config/priv_validator_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node2/config/priv_validator_key.json -------------------------------------------------------------------------------- /localnet/spn/node2/data/priv_validator_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node2/data/priv_validator_state.json -------------------------------------------------------------------------------- /localnet/spn/node2/keyring-test/alice.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node2/keyring-test/alice.info -------------------------------------------------------------------------------- /localnet/spn/node2/keyring-test/bob.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node2/keyring-test/bob.info -------------------------------------------------------------------------------- /localnet/spn/node2/keyring-test/carol.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node2/keyring-test/carol.info -------------------------------------------------------------------------------- /localnet/spn/node2/keyring-test/dave.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node2/keyring-test/dave.info -------------------------------------------------------------------------------- /localnet/spn/node2/keyring-test/joe.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node2/keyring-test/joe.info -------------------------------------------------------------------------------- /localnet/spn/node2/keyring-test/olivia.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node2/keyring-test/olivia.info -------------------------------------------------------------------------------- /localnet/spn/node2/keyring-test/steve.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node2/keyring-test/steve.info -------------------------------------------------------------------------------- /localnet/spn/node3/config/app.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node3/config/app.toml -------------------------------------------------------------------------------- /localnet/spn/node3/config/client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node3/config/client.toml -------------------------------------------------------------------------------- /localnet/spn/node3/config/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node3/config/config.toml -------------------------------------------------------------------------------- /localnet/spn/node3/config/node_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node3/config/node_key.json -------------------------------------------------------------------------------- /localnet/spn/node3/config/priv_validator_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node3/config/priv_validator_key.json -------------------------------------------------------------------------------- /localnet/spn/node3/data/priv_validator_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node3/data/priv_validator_state.json -------------------------------------------------------------------------------- /localnet/spn/node3/keyring-test/alice.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node3/keyring-test/alice.info -------------------------------------------------------------------------------- /localnet/spn/node3/keyring-test/bob.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node3/keyring-test/bob.info -------------------------------------------------------------------------------- /localnet/spn/node3/keyring-test/carol.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node3/keyring-test/carol.info -------------------------------------------------------------------------------- /localnet/spn/node3/keyring-test/dave.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node3/keyring-test/dave.info -------------------------------------------------------------------------------- /localnet/spn/node3/keyring-test/joe.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node3/keyring-test/joe.info -------------------------------------------------------------------------------- /localnet/spn/node3/keyring-test/olivia.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node3/keyring-test/olivia.info -------------------------------------------------------------------------------- /localnet/spn/node3/keyring-test/steve.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/spn/node3/keyring-test/steve.info -------------------------------------------------------------------------------- /localnet/start_spn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/start_spn.py -------------------------------------------------------------------------------- /localnet/start_testnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/start_testnet.py -------------------------------------------------------------------------------- /localnet/testnet/genesis_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/genesis_template.json -------------------------------------------------------------------------------- /localnet/testnet/node1/config/app.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node1/config/app.toml -------------------------------------------------------------------------------- /localnet/testnet/node1/config/client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node1/config/client.toml -------------------------------------------------------------------------------- /localnet/testnet/node1/config/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node1/config/config.toml -------------------------------------------------------------------------------- /localnet/testnet/node1/config/gentx/gentx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node1/config/gentx/gentx.json -------------------------------------------------------------------------------- /localnet/testnet/node1/config/node_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node1/config/node_key.json -------------------------------------------------------------------------------- /localnet/testnet/node1/config/priv_validator_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node1/config/priv_validator_key.json -------------------------------------------------------------------------------- /localnet/testnet/node1/data/priv_validator_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node1/data/priv_validator_state.json -------------------------------------------------------------------------------- /localnet/testnet/node1/keyring-test/joe.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node1/keyring-test/joe.info -------------------------------------------------------------------------------- /localnet/testnet/node1/keyring-test/olivia.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node1/keyring-test/olivia.info -------------------------------------------------------------------------------- /localnet/testnet/node1/keyring-test/steve.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node1/keyring-test/steve.info -------------------------------------------------------------------------------- /localnet/testnet/node2/config/app.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node2/config/app.toml -------------------------------------------------------------------------------- /localnet/testnet/node2/config/client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node2/config/client.toml -------------------------------------------------------------------------------- /localnet/testnet/node2/config/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node2/config/config.toml -------------------------------------------------------------------------------- /localnet/testnet/node2/config/gentx/gentx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node2/config/gentx/gentx.json -------------------------------------------------------------------------------- /localnet/testnet/node2/config/node_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node2/config/node_key.json -------------------------------------------------------------------------------- /localnet/testnet/node2/config/priv_validator_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node2/config/priv_validator_key.json -------------------------------------------------------------------------------- /localnet/testnet/node2/data/priv_validator_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node2/data/priv_validator_state.json -------------------------------------------------------------------------------- /localnet/testnet/node2/keyring-test/joe.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node2/keyring-test/joe.info -------------------------------------------------------------------------------- /localnet/testnet/node2/keyring-test/olivia.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node2/keyring-test/olivia.info -------------------------------------------------------------------------------- /localnet/testnet/node2/keyring-test/steve.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node2/keyring-test/steve.info -------------------------------------------------------------------------------- /localnet/testnet/node3/config/app.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node3/config/app.toml -------------------------------------------------------------------------------- /localnet/testnet/node3/config/client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node3/config/client.toml -------------------------------------------------------------------------------- /localnet/testnet/node3/config/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node3/config/config.toml -------------------------------------------------------------------------------- /localnet/testnet/node3/config/gentx/gentx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node3/config/gentx/gentx.json -------------------------------------------------------------------------------- /localnet/testnet/node3/config/node_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node3/config/node_key.json -------------------------------------------------------------------------------- /localnet/testnet/node3/config/priv_validator_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node3/config/priv_validator_key.json -------------------------------------------------------------------------------- /localnet/testnet/node3/data/priv_validator_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node3/data/priv_validator_state.json -------------------------------------------------------------------------------- /localnet/testnet/node3/keyring-test/joe.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node3/keyring-test/joe.info -------------------------------------------------------------------------------- /localnet/testnet/node3/keyring-test/olivia.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node3/keyring-test/olivia.info -------------------------------------------------------------------------------- /localnet/testnet/node3/keyring-test/steve.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/testnet/node3/keyring-test/steve.info -------------------------------------------------------------------------------- /localnet/undelegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/undelegate.py -------------------------------------------------------------------------------- /localnet/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/localnet/utils.py -------------------------------------------------------------------------------- /papers/audit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/papers/audit.pdf -------------------------------------------------------------------------------- /papers/whitepaper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/papers/whitepaper.pdf -------------------------------------------------------------------------------- /pkg/airdrop/airdrop_missions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/pkg/airdrop/airdrop_missions.go -------------------------------------------------------------------------------- /pkg/chainid/chainid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/pkg/chainid/chainid.go -------------------------------------------------------------------------------- /pkg/chainid/chainid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/pkg/chainid/chainid_test.go -------------------------------------------------------------------------------- /pkg/types/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/pkg/types/bytes.go -------------------------------------------------------------------------------- /pkg/types/bytes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/pkg/types/bytes_test.go -------------------------------------------------------------------------------- /pkg/types/consensus_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/pkg/types/consensus_state.go -------------------------------------------------------------------------------- /pkg/types/consensus_state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/pkg/types/consensus_state_test.go -------------------------------------------------------------------------------- /pkg/types/constant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/pkg/types/constant.go -------------------------------------------------------------------------------- /pkg/types/ibc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/pkg/types/ibc.pb.go -------------------------------------------------------------------------------- /pkg/types/monitoring.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/pkg/types/monitoring.pb.go -------------------------------------------------------------------------------- /pkg/types/monitoring_packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/pkg/types/monitoring_packet.go -------------------------------------------------------------------------------- /pkg/types/monitoring_packet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/pkg/types/monitoring_packet_test.go -------------------------------------------------------------------------------- /pkg/types/signature_counts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/pkg/types/signature_counts.go -------------------------------------------------------------------------------- /pkg/types/signature_counts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/pkg/types/signature_counts_test.go -------------------------------------------------------------------------------- /pkg/types/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/pkg/types/types_test.go -------------------------------------------------------------------------------- /pkg/types/validator_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/pkg/types/validator_set.go -------------------------------------------------------------------------------- /pkg/types/validator_set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/pkg/types/validator_set_test.go -------------------------------------------------------------------------------- /proto/buf.gen.gogo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/buf.gen.gogo.yaml -------------------------------------------------------------------------------- /proto/buf.gen.pulsar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/buf.gen.pulsar.yaml -------------------------------------------------------------------------------- /proto/buf.gen.sta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/buf.gen.sta.yaml -------------------------------------------------------------------------------- /proto/buf.gen.swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/buf.gen.swagger.yaml -------------------------------------------------------------------------------- /proto/buf.gen.ts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/buf.gen.ts.yaml -------------------------------------------------------------------------------- /proto/buf.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/buf.lock -------------------------------------------------------------------------------- /proto/buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/buf.yaml -------------------------------------------------------------------------------- /proto/spn/launch/chain.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/launch/chain.proto -------------------------------------------------------------------------------- /proto/spn/launch/events.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/launch/events.proto -------------------------------------------------------------------------------- /proto/spn/launch/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/launch/genesis.proto -------------------------------------------------------------------------------- /proto/spn/launch/genesis_account.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/launch/genesis_account.proto -------------------------------------------------------------------------------- /proto/spn/launch/genesis_validator.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/launch/genesis_validator.proto -------------------------------------------------------------------------------- /proto/spn/launch/params.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/launch/params.proto -------------------------------------------------------------------------------- /proto/spn/launch/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/launch/query.proto -------------------------------------------------------------------------------- /proto/spn/launch/request.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/launch/request.proto -------------------------------------------------------------------------------- /proto/spn/launch/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/launch/tx.proto -------------------------------------------------------------------------------- /proto/spn/launch/vesting_account.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/launch/vesting_account.proto -------------------------------------------------------------------------------- /proto/spn/monitoringc/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/monitoringc/genesis.proto -------------------------------------------------------------------------------- /proto/spn/monitoringc/launch_id_from_channel_id.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/monitoringc/launch_id_from_channel_id.proto -------------------------------------------------------------------------------- /proto/spn/monitoringc/launch_id_from_verified_client_id.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/monitoringc/launch_id_from_verified_client_id.proto -------------------------------------------------------------------------------- /proto/spn/monitoringc/monitoring_history.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/monitoringc/monitoring_history.proto -------------------------------------------------------------------------------- /proto/spn/monitoringc/params.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/monitoringc/params.proto -------------------------------------------------------------------------------- /proto/spn/monitoringc/provider_client_id.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/monitoringc/provider_client_id.proto -------------------------------------------------------------------------------- /proto/spn/monitoringc/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/monitoringc/query.proto -------------------------------------------------------------------------------- /proto/spn/monitoringc/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/monitoringc/tx.proto -------------------------------------------------------------------------------- /proto/spn/monitoringc/verified_client_id.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/monitoringc/verified_client_id.proto -------------------------------------------------------------------------------- /proto/spn/monitoringp/connection_channel_id.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/monitoringp/connection_channel_id.proto -------------------------------------------------------------------------------- /proto/spn/monitoringp/consumer_client_id.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/monitoringp/consumer_client_id.proto -------------------------------------------------------------------------------- /proto/spn/monitoringp/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/monitoringp/genesis.proto -------------------------------------------------------------------------------- /proto/spn/monitoringp/monitoring_info.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/monitoringp/monitoring_info.proto -------------------------------------------------------------------------------- /proto/spn/monitoringp/params.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/monitoringp/params.proto -------------------------------------------------------------------------------- /proto/spn/monitoringp/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/monitoringp/query.proto -------------------------------------------------------------------------------- /proto/spn/monitoringp/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/monitoringp/tx.proto -------------------------------------------------------------------------------- /proto/spn/participation/auction_used_allocations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/participation/auction_used_allocations.proto -------------------------------------------------------------------------------- /proto/spn/participation/events.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/participation/events.proto -------------------------------------------------------------------------------- /proto/spn/participation/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/participation/genesis.proto -------------------------------------------------------------------------------- /proto/spn/participation/params.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/participation/params.proto -------------------------------------------------------------------------------- /proto/spn/participation/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/participation/query.proto -------------------------------------------------------------------------------- /proto/spn/participation/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/participation/tx.proto -------------------------------------------------------------------------------- /proto/spn/participation/used_allocations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/participation/used_allocations.proto -------------------------------------------------------------------------------- /proto/spn/profile/coordinator.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/profile/coordinator.proto -------------------------------------------------------------------------------- /proto/spn/profile/events.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/profile/events.proto -------------------------------------------------------------------------------- /proto/spn/profile/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/profile/genesis.proto -------------------------------------------------------------------------------- /proto/spn/profile/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/profile/query.proto -------------------------------------------------------------------------------- /proto/spn/profile/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/profile/tx.proto -------------------------------------------------------------------------------- /proto/spn/profile/validator.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/profile/validator.proto -------------------------------------------------------------------------------- /proto/spn/project/events.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/project/events.proto -------------------------------------------------------------------------------- /proto/spn/project/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/project/genesis.proto -------------------------------------------------------------------------------- /proto/spn/project/mainnet_account.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/project/mainnet_account.proto -------------------------------------------------------------------------------- /proto/spn/project/params.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/project/params.proto -------------------------------------------------------------------------------- /proto/spn/project/project.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/project/project.proto -------------------------------------------------------------------------------- /proto/spn/project/project_chains.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/project/project_chains.proto -------------------------------------------------------------------------------- /proto/spn/project/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/project/query.proto -------------------------------------------------------------------------------- /proto/spn/project/special_allocations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/project/special_allocations.proto -------------------------------------------------------------------------------- /proto/spn/project/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/project/tx.proto -------------------------------------------------------------------------------- /proto/spn/project/vesting.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/project/vesting.proto -------------------------------------------------------------------------------- /proto/spn/reward/events.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/reward/events.proto -------------------------------------------------------------------------------- /proto/spn/reward/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/reward/genesis.proto -------------------------------------------------------------------------------- /proto/spn/reward/params.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/reward/params.proto -------------------------------------------------------------------------------- /proto/spn/reward/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/reward/query.proto -------------------------------------------------------------------------------- /proto/spn/reward/reward_pool.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/reward/reward_pool.proto -------------------------------------------------------------------------------- /proto/spn/reward/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/reward/tx.proto -------------------------------------------------------------------------------- /proto/spn/types/ibc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/types/ibc.proto -------------------------------------------------------------------------------- /proto/spn/types/monitoring.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/proto/spn/types/monitoring.proto -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/metadata_sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/scripts/metadata_sample.yml -------------------------------------------------------------------------------- /scripts/populate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/scripts/populate.sh -------------------------------------------------------------------------------- /testutil/constructor/constructor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/constructor/constructor.go -------------------------------------------------------------------------------- /testutil/encoding/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/encoding/encoding.go -------------------------------------------------------------------------------- /testutil/gen_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/gen_app.go -------------------------------------------------------------------------------- /testutil/keeper/bank.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/keeper/bank.go -------------------------------------------------------------------------------- /testutil/keeper/bank_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/keeper/bank_test.go -------------------------------------------------------------------------------- /testutil/keeper/fundraising.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/keeper/fundraising.go -------------------------------------------------------------------------------- /testutil/keeper/initializer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/keeper/initializer.go -------------------------------------------------------------------------------- /testutil/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/keeper/keeper.go -------------------------------------------------------------------------------- /testutil/keeper/launch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/keeper/launch.go -------------------------------------------------------------------------------- /testutil/keeper/mock_ibc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/keeper/mock_ibc.go -------------------------------------------------------------------------------- /testutil/keeper/mock_launch_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/keeper/mock_launch_hooks.go -------------------------------------------------------------------------------- /testutil/keeper/mocks/mock_launch_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/keeper/mocks/mock_launch_hooks.go -------------------------------------------------------------------------------- /testutil/keeper/monitoring_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/keeper/monitoring_provider.go -------------------------------------------------------------------------------- /testutil/keeper/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/keeper/profile.go -------------------------------------------------------------------------------- /testutil/keeper/profile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/keeper/profile_test.go -------------------------------------------------------------------------------- /testutil/keeper/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/keeper/project.go -------------------------------------------------------------------------------- /testutil/keeper/staking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/keeper/staking.go -------------------------------------------------------------------------------- /testutil/network/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/network/network.go -------------------------------------------------------------------------------- /testutil/networksuite/networksuite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/networksuite/networksuite.go -------------------------------------------------------------------------------- /testutil/nullify/nullify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/nullify/nullify.go -------------------------------------------------------------------------------- /testutil/sample/claim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/sample/claim.go -------------------------------------------------------------------------------- /testutil/sample/fundraising.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/sample/fundraising.go -------------------------------------------------------------------------------- /testutil/sample/launch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/sample/launch.go -------------------------------------------------------------------------------- /testutil/sample/monitoring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/sample/monitoring.go -------------------------------------------------------------------------------- /testutil/sample/participation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/sample/participation.go -------------------------------------------------------------------------------- /testutil/sample/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/sample/profile.go -------------------------------------------------------------------------------- /testutil/sample/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/sample/project.go -------------------------------------------------------------------------------- /testutil/sample/reward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/sample/reward.go -------------------------------------------------------------------------------- /testutil/sample/sample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/sample/sample.go -------------------------------------------------------------------------------- /testutil/sample/simulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/sample/simulation.go -------------------------------------------------------------------------------- /testutil/simulation/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/testutil/simulation/util.go -------------------------------------------------------------------------------- /tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/tools/tools.go -------------------------------------------------------------------------------- /x/launch/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/query.go -------------------------------------------------------------------------------- /x/launch/client/cli/query_chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/query_chain.go -------------------------------------------------------------------------------- /x/launch/client/cli/query_chain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/query_chain_test.go -------------------------------------------------------------------------------- /x/launch/client/cli/query_genesis_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/query_genesis_account.go -------------------------------------------------------------------------------- /x/launch/client/cli/query_genesis_account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/query_genesis_account_test.go -------------------------------------------------------------------------------- /x/launch/client/cli/query_genesis_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/query_genesis_validator.go -------------------------------------------------------------------------------- /x/launch/client/cli/query_genesis_validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/query_genesis_validator_test.go -------------------------------------------------------------------------------- /x/launch/client/cli/query_param_change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/query_param_change.go -------------------------------------------------------------------------------- /x/launch/client/cli/query_param_change_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/query_param_change_test.go -------------------------------------------------------------------------------- /x/launch/client/cli/query_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/query_params.go -------------------------------------------------------------------------------- /x/launch/client/cli/query_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/query_request.go -------------------------------------------------------------------------------- /x/launch/client/cli/query_request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/query_request_test.go -------------------------------------------------------------------------------- /x/launch/client/cli/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/query_test.go -------------------------------------------------------------------------------- /x/launch/client/cli/query_vesting_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/query_vesting_account.go -------------------------------------------------------------------------------- /x/launch/client/cli/query_vesting_account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/query_vesting_account_test.go -------------------------------------------------------------------------------- /x/launch/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/tx.go -------------------------------------------------------------------------------- /x/launch/client/cli/tx_create_chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/tx_create_chain.go -------------------------------------------------------------------------------- /x/launch/client/cli/tx_edit_chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/tx_edit_chain.go -------------------------------------------------------------------------------- /x/launch/client/cli/tx_request_add_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/tx_request_add_account.go -------------------------------------------------------------------------------- /x/launch/client/cli/tx_request_add_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/tx_request_add_validator.go -------------------------------------------------------------------------------- /x/launch/client/cli/tx_request_add_vesting_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/tx_request_add_vesting_account.go -------------------------------------------------------------------------------- /x/launch/client/cli/tx_request_change_param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/tx_request_change_param.go -------------------------------------------------------------------------------- /x/launch/client/cli/tx_request_remove_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/tx_request_remove_account.go -------------------------------------------------------------------------------- /x/launch/client/cli/tx_request_remove_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/tx_request_remove_validator.go -------------------------------------------------------------------------------- /x/launch/client/cli/tx_revert_launch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/tx_revert_launch.go -------------------------------------------------------------------------------- /x/launch/client/cli/tx_settle_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/tx_settle_request.go -------------------------------------------------------------------------------- /x/launch/client/cli/tx_trigger_launch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/tx_trigger_launch.go -------------------------------------------------------------------------------- /x/launch/client/cli/tx_update_launch_information.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/client/cli/tx_update_launch_information.go -------------------------------------------------------------------------------- /x/launch/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/genesis.go -------------------------------------------------------------------------------- /x/launch/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/genesis_test.go -------------------------------------------------------------------------------- /x/launch/keeper/chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/chain.go -------------------------------------------------------------------------------- /x/launch/keeper/chain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/chain_test.go -------------------------------------------------------------------------------- /x/launch/keeper/genesis_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/genesis_account.go -------------------------------------------------------------------------------- /x/launch/keeper/genesis_account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/genesis_account_test.go -------------------------------------------------------------------------------- /x/launch/keeper/genesis_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/genesis_validator.go -------------------------------------------------------------------------------- /x/launch/keeper/genesis_validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/genesis_validator_test.go -------------------------------------------------------------------------------- /x/launch/keeper/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/grpc.go -------------------------------------------------------------------------------- /x/launch/keeper/grpc_chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/grpc_chain.go -------------------------------------------------------------------------------- /x/launch/keeper/grpc_chain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/grpc_chain_test.go -------------------------------------------------------------------------------- /x/launch/keeper/grpc_genesis_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/grpc_genesis_account.go -------------------------------------------------------------------------------- /x/launch/keeper/grpc_genesis_account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/grpc_genesis_account_test.go -------------------------------------------------------------------------------- /x/launch/keeper/grpc_genesis_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/grpc_genesis_validator.go -------------------------------------------------------------------------------- /x/launch/keeper/grpc_genesis_validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/grpc_genesis_validator_test.go -------------------------------------------------------------------------------- /x/launch/keeper/grpc_param_change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/grpc_param_change.go -------------------------------------------------------------------------------- /x/launch/keeper/grpc_param_change_test.go: -------------------------------------------------------------------------------- 1 | package keeper 2 | -------------------------------------------------------------------------------- /x/launch/keeper/grpc_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/grpc_params.go -------------------------------------------------------------------------------- /x/launch/keeper/grpc_params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/grpc_params_test.go -------------------------------------------------------------------------------- /x/launch/keeper/grpc_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/grpc_request.go -------------------------------------------------------------------------------- /x/launch/keeper/grpc_request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/grpc_request_test.go -------------------------------------------------------------------------------- /x/launch/keeper/grpc_vesting_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/grpc_vesting_account.go -------------------------------------------------------------------------------- /x/launch/keeper/grpc_vesting_account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/grpc_vesting_account_test.go -------------------------------------------------------------------------------- /x/launch/keeper/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/hooks.go -------------------------------------------------------------------------------- /x/launch/keeper/invariants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/invariants.go -------------------------------------------------------------------------------- /x/launch/keeper/invariants_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/invariants_test.go -------------------------------------------------------------------------------- /x/launch/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/keeper.go -------------------------------------------------------------------------------- /x/launch/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/launch/keeper/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/msg.go -------------------------------------------------------------------------------- /x/launch/keeper/msg_create_chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/msg_create_chain.go -------------------------------------------------------------------------------- /x/launch/keeper/msg_create_chain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/msg_create_chain_test.go -------------------------------------------------------------------------------- /x/launch/keeper/msg_edit_chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/msg_edit_chain.go -------------------------------------------------------------------------------- /x/launch/keeper/msg_edit_chain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/msg_edit_chain_test.go -------------------------------------------------------------------------------- /x/launch/keeper/msg_revert_launch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/msg_revert_launch.go -------------------------------------------------------------------------------- /x/launch/keeper/msg_revert_launch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/msg_revert_launch_test.go -------------------------------------------------------------------------------- /x/launch/keeper/msg_send_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/msg_send_request.go -------------------------------------------------------------------------------- /x/launch/keeper/msg_send_request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/msg_send_request_test.go -------------------------------------------------------------------------------- /x/launch/keeper/msg_settle_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/msg_settle_request.go -------------------------------------------------------------------------------- /x/launch/keeper/msg_settle_request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/msg_settle_request_test.go -------------------------------------------------------------------------------- /x/launch/keeper/msg_trigger_launch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/msg_trigger_launch.go -------------------------------------------------------------------------------- /x/launch/keeper/msg_trigger_launch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/msg_trigger_launch_test.go -------------------------------------------------------------------------------- /x/launch/keeper/msg_update_launch_information.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/msg_update_launch_information.go -------------------------------------------------------------------------------- /x/launch/keeper/msg_update_launch_information_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/msg_update_launch_information_test.go -------------------------------------------------------------------------------- /x/launch/keeper/param_change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/param_change.go -------------------------------------------------------------------------------- /x/launch/keeper/param_change_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/param_change_test.go -------------------------------------------------------------------------------- /x/launch/keeper/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/params.go -------------------------------------------------------------------------------- /x/launch/keeper/params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/params_test.go -------------------------------------------------------------------------------- /x/launch/keeper/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/request.go -------------------------------------------------------------------------------- /x/launch/keeper/request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/request_test.go -------------------------------------------------------------------------------- /x/launch/keeper/validator_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/validator_set.go -------------------------------------------------------------------------------- /x/launch/keeper/validator_set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/validator_set_test.go -------------------------------------------------------------------------------- /x/launch/keeper/vesting_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/vesting_account.go -------------------------------------------------------------------------------- /x/launch/keeper/vesting_account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/keeper/vesting_account_test.go -------------------------------------------------------------------------------- /x/launch/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/module.go -------------------------------------------------------------------------------- /x/launch/module_simulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/module_simulation.go -------------------------------------------------------------------------------- /x/launch/simulation/simulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/simulation/simulation.go -------------------------------------------------------------------------------- /x/launch/simulation/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/simulation/store.go -------------------------------------------------------------------------------- /x/launch/simulation/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/simulation/store_test.go -------------------------------------------------------------------------------- /x/launch/types/chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/chain.go -------------------------------------------------------------------------------- /x/launch/types/chain.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/chain.pb.go -------------------------------------------------------------------------------- /x/launch/types/chain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/chain_test.go -------------------------------------------------------------------------------- /x/launch/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/codec.go -------------------------------------------------------------------------------- /x/launch/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/errors.go -------------------------------------------------------------------------------- /x/launch/types/events.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/events.pb.go -------------------------------------------------------------------------------- /x/launch/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/expected_keepers.go -------------------------------------------------------------------------------- /x/launch/types/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/genesis.go -------------------------------------------------------------------------------- /x/launch/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/genesis.pb.go -------------------------------------------------------------------------------- /x/launch/types/genesis_account.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/genesis_account.pb.go -------------------------------------------------------------------------------- /x/launch/types/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/genesis_test.go -------------------------------------------------------------------------------- /x/launch/types/genesis_validator.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/genesis_validator.pb.go -------------------------------------------------------------------------------- /x/launch/types/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/hooks.go -------------------------------------------------------------------------------- /x/launch/types/initial_genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/initial_genesis.go -------------------------------------------------------------------------------- /x/launch/types/initial_genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/initial_genesis_test.go -------------------------------------------------------------------------------- /x/launch/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/keys.go -------------------------------------------------------------------------------- /x/launch/types/msg_create_chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/msg_create_chain.go -------------------------------------------------------------------------------- /x/launch/types/msg_create_chain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/msg_create_chain_test.go -------------------------------------------------------------------------------- /x/launch/types/msg_edit_chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/msg_edit_chain.go -------------------------------------------------------------------------------- /x/launch/types/msg_edit_chain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/msg_edit_chain_test.go -------------------------------------------------------------------------------- /x/launch/types/msg_revert_launch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/msg_revert_launch.go -------------------------------------------------------------------------------- /x/launch/types/msg_revert_launch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/msg_revert_launch_test.go -------------------------------------------------------------------------------- /x/launch/types/msg_send_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/msg_send_request.go -------------------------------------------------------------------------------- /x/launch/types/msg_send_request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/msg_send_request_test.go -------------------------------------------------------------------------------- /x/launch/types/msg_settle_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/msg_settle_request.go -------------------------------------------------------------------------------- /x/launch/types/msg_settle_request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/msg_settle_request_test.go -------------------------------------------------------------------------------- /x/launch/types/msg_trigger_launch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/msg_trigger_launch.go -------------------------------------------------------------------------------- /x/launch/types/msg_trigger_launch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/msg_trigger_launch_test.go -------------------------------------------------------------------------------- /x/launch/types/msg_update_launch_information.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/msg_update_launch_information.go -------------------------------------------------------------------------------- /x/launch/types/msg_update_launch_information_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/msg_update_launch_information_test.go -------------------------------------------------------------------------------- /x/launch/types/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/params.go -------------------------------------------------------------------------------- /x/launch/types/params.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/params.pb.go -------------------------------------------------------------------------------- /x/launch/types/params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/params_test.go -------------------------------------------------------------------------------- /x/launch/types/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/peer.go -------------------------------------------------------------------------------- /x/launch/types/peer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/peer_test.go -------------------------------------------------------------------------------- /x/launch/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/query.pb.go -------------------------------------------------------------------------------- /x/launch/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/launch/types/request.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/request.pb.go -------------------------------------------------------------------------------- /x/launch/types/request_content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/request_content.go -------------------------------------------------------------------------------- /x/launch/types/request_content_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/request_content_test.go -------------------------------------------------------------------------------- /x/launch/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/tx.pb.go -------------------------------------------------------------------------------- /x/launch/types/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/types_test.go -------------------------------------------------------------------------------- /x/launch/types/vesting_account.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/vesting_account.pb.go -------------------------------------------------------------------------------- /x/launch/types/vesting_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/vesting_options.go -------------------------------------------------------------------------------- /x/launch/types/vesting_options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/launch/types/vesting_options_test.go -------------------------------------------------------------------------------- /x/monitoringc/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/client/cli/query.go -------------------------------------------------------------------------------- /x/monitoringc/client/cli/query_launch_id_from_channel_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/client/cli/query_launch_id_from_channel_id.go -------------------------------------------------------------------------------- /x/monitoringc/client/cli/query_launch_id_from_channel_id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/client/cli/query_launch_id_from_channel_id_test.go -------------------------------------------------------------------------------- /x/monitoringc/client/cli/query_monitoring_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/client/cli/query_monitoring_history.go -------------------------------------------------------------------------------- /x/monitoringc/client/cli/query_monitoring_history_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/client/cli/query_monitoring_history_test.go -------------------------------------------------------------------------------- /x/monitoringc/client/cli/query_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/client/cli/query_params.go -------------------------------------------------------------------------------- /x/monitoringc/client/cli/query_provider_client_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/client/cli/query_provider_client_id.go -------------------------------------------------------------------------------- /x/monitoringc/client/cli/query_provider_client_id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/client/cli/query_provider_client_id_test.go -------------------------------------------------------------------------------- /x/monitoringc/client/cli/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/client/cli/query_test.go -------------------------------------------------------------------------------- /x/monitoringc/client/cli/query_verified_client_ids.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/client/cli/query_verified_client_ids.go -------------------------------------------------------------------------------- /x/monitoringc/client/cli/query_verified_client_ids_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/client/cli/query_verified_client_ids_test.go -------------------------------------------------------------------------------- /x/monitoringc/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/client/cli/tx.go -------------------------------------------------------------------------------- /x/monitoringc/client/cli/tx_create_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/client/cli/tx_create_client.go -------------------------------------------------------------------------------- /x/monitoringc/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/genesis.go -------------------------------------------------------------------------------- /x/monitoringc/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/genesis_test.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/grpc.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/grpc_launch_id_from_channel_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/grpc_launch_id_from_channel_id.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/grpc_launch_id_from_channel_id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/grpc_launch_id_from_channel_id_test.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/grpc_monitoring_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/grpc_monitoring_history.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/grpc_monitoring_history_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/grpc_monitoring_history_test.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/grpc_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/grpc_params.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/grpc_params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/grpc_params_test.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/grpc_provider_client_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/grpc_provider_client_id.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/grpc_provider_client_id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/grpc_provider_client_id_test.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/grpc_verified_client_ids.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/grpc_verified_client_ids.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/grpc_verified_client_ids_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/grpc_verified_client_ids_test.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/handshake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/handshake.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/handshake_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/handshake_test.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/invariants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/invariants.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/invariants_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/invariants_test.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/keeper.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/launch_id_from_channel_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/launch_id_from_channel_id.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/launch_id_from_channel_id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/launch_id_from_channel_id_test.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/launch_id_from_verified_client_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/launch_id_from_verified_client_id.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/launch_id_from_verified_client_id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/launch_id_from_verified_client_id_test.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/monitoring_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/monitoring_history.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/monitoring_history_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/monitoring_history_test.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/monitoring_packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/monitoring_packet.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/monitoring_packet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/monitoring_packet_test.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/msg.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/msg_create_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/msg_create_client.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/msg_create_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/msg_create_client_test.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/params.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/params_test.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/provider_client_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/provider_client_id.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/provider_client_id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/provider_client_id_test.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/verified_client_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/verified_client_id.go -------------------------------------------------------------------------------- /x/monitoringc/keeper/verified_client_id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/keeper/verified_client_id_test.go -------------------------------------------------------------------------------- /x/monitoringc/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/module.go -------------------------------------------------------------------------------- /x/monitoringc/module_ibc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/module_ibc.go -------------------------------------------------------------------------------- /x/monitoringc/module_simulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/module_simulation.go -------------------------------------------------------------------------------- /x/monitoringc/simulation/create_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/simulation/create_client.go -------------------------------------------------------------------------------- /x/monitoringc/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/types/codec.go -------------------------------------------------------------------------------- /x/monitoringc/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/types/errors.go -------------------------------------------------------------------------------- /x/monitoringc/types/events_ibc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/types/events_ibc.go -------------------------------------------------------------------------------- /x/monitoringc/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/types/expected_keepers.go -------------------------------------------------------------------------------- /x/monitoringc/types/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/types/genesis.go -------------------------------------------------------------------------------- /x/monitoringc/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/types/genesis.pb.go -------------------------------------------------------------------------------- /x/monitoringc/types/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/types/genesis_test.go -------------------------------------------------------------------------------- /x/monitoringc/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/types/keys.go -------------------------------------------------------------------------------- /x/monitoringc/types/launch_id_from_channel_id.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/types/launch_id_from_channel_id.pb.go -------------------------------------------------------------------------------- /x/monitoringc/types/launch_id_from_verified_client_id.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/types/launch_id_from_verified_client_id.pb.go -------------------------------------------------------------------------------- /x/monitoringc/types/monitoring_history.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/types/monitoring_history.pb.go -------------------------------------------------------------------------------- /x/monitoringc/types/msg_create_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/types/msg_create_client.go -------------------------------------------------------------------------------- /x/monitoringc/types/msg_create_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/types/msg_create_client_test.go -------------------------------------------------------------------------------- /x/monitoringc/types/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/types/params.go -------------------------------------------------------------------------------- /x/monitoringc/types/params.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/types/params.pb.go -------------------------------------------------------------------------------- /x/monitoringc/types/provider_client_id.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/types/provider_client_id.pb.go -------------------------------------------------------------------------------- /x/monitoringc/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/types/query.pb.go -------------------------------------------------------------------------------- /x/monitoringc/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/monitoringc/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/types/tx.pb.go -------------------------------------------------------------------------------- /x/monitoringc/types/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/types/types_test.go -------------------------------------------------------------------------------- /x/monitoringc/types/verified_client_id.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringc/types/verified_client_id.pb.go -------------------------------------------------------------------------------- /x/monitoringp/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/client/cli/query.go -------------------------------------------------------------------------------- /x/monitoringp/client/cli/query_connection_channel_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/client/cli/query_connection_channel_id.go -------------------------------------------------------------------------------- /x/monitoringp/client/cli/query_consumer_client_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/client/cli/query_consumer_client_id.go -------------------------------------------------------------------------------- /x/monitoringp/client/cli/query_monitoring_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/client/cli/query_monitoring_info.go -------------------------------------------------------------------------------- /x/monitoringp/client/cli/query_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/client/cli/query_params.go -------------------------------------------------------------------------------- /x/monitoringp/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/client/cli/tx.go -------------------------------------------------------------------------------- /x/monitoringp/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/genesis.go -------------------------------------------------------------------------------- /x/monitoringp/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/genesis_test.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/begin_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/begin_block.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/begin_block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/begin_block_test.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/connection_channel_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/connection_channel_id.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/connection_channel_id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/connection_channel_id_test.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/consumer_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/consumer_client.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/consumer_client_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/consumer_client_id.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/consumer_client_id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/consumer_client_id_test.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/consumer_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/consumer_client_test.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/grpc.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/grpc_connection_channel_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/grpc_connection_channel_id.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/grpc_connection_channel_id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/grpc_connection_channel_id_test.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/grpc_consumer_client_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/grpc_consumer_client_id.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/grpc_consumer_client_id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/grpc_consumer_client_id_test.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/grpc_monitoring_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/grpc_monitoring_info.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/grpc_monitoring_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/grpc_monitoring_info_test.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/grpc_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/grpc_params.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/grpc_params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/grpc_params_test.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/handshake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/handshake.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/handshake_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/handshake_test.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/keeper.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/monitoring_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/monitoring_info.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/monitoring_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/monitoring_info_test.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/monitoring_packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/monitoring_packet.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/params.go -------------------------------------------------------------------------------- /x/monitoringp/keeper/params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/keeper/params_test.go -------------------------------------------------------------------------------- /x/monitoringp/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/module.go -------------------------------------------------------------------------------- /x/monitoringp/module_ibc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/module_ibc.go -------------------------------------------------------------------------------- /x/monitoringp/module_simulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/module_simulation.go -------------------------------------------------------------------------------- /x/monitoringp/simulation/simulation.go: -------------------------------------------------------------------------------- 1 | package simulation 2 | -------------------------------------------------------------------------------- /x/monitoringp/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/types/codec.go -------------------------------------------------------------------------------- /x/monitoringp/types/connection_channel_id.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/types/connection_channel_id.pb.go -------------------------------------------------------------------------------- /x/monitoringp/types/consumer_client_id.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/types/consumer_client_id.pb.go -------------------------------------------------------------------------------- /x/monitoringp/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/types/errors.go -------------------------------------------------------------------------------- /x/monitoringp/types/events_ibc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/types/events_ibc.go -------------------------------------------------------------------------------- /x/monitoringp/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/types/expected_keepers.go -------------------------------------------------------------------------------- /x/monitoringp/types/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/types/genesis.go -------------------------------------------------------------------------------- /x/monitoringp/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/types/genesis.pb.go -------------------------------------------------------------------------------- /x/monitoringp/types/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/types/genesis_test.go -------------------------------------------------------------------------------- /x/monitoringp/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/types/keys.go -------------------------------------------------------------------------------- /x/monitoringp/types/monitoring_info.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/types/monitoring_info.pb.go -------------------------------------------------------------------------------- /x/monitoringp/types/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/types/params.go -------------------------------------------------------------------------------- /x/monitoringp/types/params.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/types/params.pb.go -------------------------------------------------------------------------------- /x/monitoringp/types/params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/types/params_test.go -------------------------------------------------------------------------------- /x/monitoringp/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/types/query.pb.go -------------------------------------------------------------------------------- /x/monitoringp/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/monitoringp/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/types/tx.pb.go -------------------------------------------------------------------------------- /x/monitoringp/types/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/monitoringp/types/types_test.go -------------------------------------------------------------------------------- /x/participation/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/client/cli/query.go -------------------------------------------------------------------------------- /x/participation/client/cli/query_auction_used_allocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/client/cli/query_auction_used_allocations.go -------------------------------------------------------------------------------- /x/participation/client/cli/query_auction_used_allocations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/client/cli/query_auction_used_allocations_test.go -------------------------------------------------------------------------------- /x/participation/client/cli/query_available_allocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/client/cli/query_available_allocations.go -------------------------------------------------------------------------------- /x/participation/client/cli/query_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/client/cli/query_params.go -------------------------------------------------------------------------------- /x/participation/client/cli/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/client/cli/query_test.go -------------------------------------------------------------------------------- /x/participation/client/cli/query_total_allocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/client/cli/query_total_allocations.go -------------------------------------------------------------------------------- /x/participation/client/cli/query_used_allocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/client/cli/query_used_allocations.go -------------------------------------------------------------------------------- /x/participation/client/cli/query_used_allocations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/client/cli/query_used_allocations_test.go -------------------------------------------------------------------------------- /x/participation/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/client/cli/tx.go -------------------------------------------------------------------------------- /x/participation/client/cli/tx_participate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/client/cli/tx_participate.go -------------------------------------------------------------------------------- /x/participation/client/cli/tx_withdraw_allocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/client/cli/tx_withdraw_allocations.go -------------------------------------------------------------------------------- /x/participation/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/genesis.go -------------------------------------------------------------------------------- /x/participation/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/genesis_test.go -------------------------------------------------------------------------------- /x/participation/keeper/auction_used_allocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/auction_used_allocations.go -------------------------------------------------------------------------------- /x/participation/keeper/auction_used_allocations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/auction_used_allocations_test.go -------------------------------------------------------------------------------- /x/participation/keeper/available_allocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/available_allocations.go -------------------------------------------------------------------------------- /x/participation/keeper/available_allocations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/available_allocations_test.go -------------------------------------------------------------------------------- /x/participation/keeper/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/grpc.go -------------------------------------------------------------------------------- /x/participation/keeper/grpc_auction_used_allocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/grpc_auction_used_allocations.go -------------------------------------------------------------------------------- /x/participation/keeper/grpc_auction_used_allocations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/grpc_auction_used_allocations_test.go -------------------------------------------------------------------------------- /x/participation/keeper/grpc_available_allocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/grpc_available_allocations.go -------------------------------------------------------------------------------- /x/participation/keeper/grpc_available_allocations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/grpc_available_allocations_test.go -------------------------------------------------------------------------------- /x/participation/keeper/grpc_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/grpc_params.go -------------------------------------------------------------------------------- /x/participation/keeper/grpc_params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/grpc_params_test.go -------------------------------------------------------------------------------- /x/participation/keeper/grpc_total_allocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/grpc_total_allocations.go -------------------------------------------------------------------------------- /x/participation/keeper/grpc_total_allocations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/grpc_total_allocations_test.go -------------------------------------------------------------------------------- /x/participation/keeper/grpc_used_allocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/grpc_used_allocations.go -------------------------------------------------------------------------------- /x/participation/keeper/grpc_used_allocations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/grpc_used_allocations_test.go -------------------------------------------------------------------------------- /x/participation/keeper/invariants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/invariants.go -------------------------------------------------------------------------------- /x/participation/keeper/invariants_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/invariants_test.go -------------------------------------------------------------------------------- /x/participation/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/keeper.go -------------------------------------------------------------------------------- /x/participation/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/participation/keeper/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/msg.go -------------------------------------------------------------------------------- /x/participation/keeper/msg_participate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/msg_participate.go -------------------------------------------------------------------------------- /x/participation/keeper/msg_participate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/msg_participate_test.go -------------------------------------------------------------------------------- /x/participation/keeper/msg_withdraw_allocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/msg_withdraw_allocations.go -------------------------------------------------------------------------------- /x/participation/keeper/msg_withdraw_allocations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/msg_withdraw_allocations_test.go -------------------------------------------------------------------------------- /x/participation/keeper/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/params.go -------------------------------------------------------------------------------- /x/participation/keeper/params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/params_test.go -------------------------------------------------------------------------------- /x/participation/keeper/registration_period.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/registration_period.go -------------------------------------------------------------------------------- /x/participation/keeper/registration_period_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/registration_period_test.go -------------------------------------------------------------------------------- /x/participation/keeper/total_allocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/total_allocations.go -------------------------------------------------------------------------------- /x/participation/keeper/total_allocations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/total_allocations_test.go -------------------------------------------------------------------------------- /x/participation/keeper/used_allocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/used_allocations.go -------------------------------------------------------------------------------- /x/participation/keeper/used_allocations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/keeper/used_allocations_test.go -------------------------------------------------------------------------------- /x/participation/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/module.go -------------------------------------------------------------------------------- /x/participation/module_simulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/module_simulation.go -------------------------------------------------------------------------------- /x/participation/simulation/simulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/simulation/simulation.go -------------------------------------------------------------------------------- /x/participation/simulation/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/simulation/store.go -------------------------------------------------------------------------------- /x/participation/simulation/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/simulation/store_test.go -------------------------------------------------------------------------------- /x/participation/types/auction_used_allocations.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/auction_used_allocations.pb.go -------------------------------------------------------------------------------- /x/participation/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/codec.go -------------------------------------------------------------------------------- /x/participation/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/errors.go -------------------------------------------------------------------------------- /x/participation/types/events.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/events.pb.go -------------------------------------------------------------------------------- /x/participation/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/expected_keepers.go -------------------------------------------------------------------------------- /x/participation/types/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/genesis.go -------------------------------------------------------------------------------- /x/participation/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/genesis.pb.go -------------------------------------------------------------------------------- /x/participation/types/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/genesis_test.go -------------------------------------------------------------------------------- /x/participation/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/keys.go -------------------------------------------------------------------------------- /x/participation/types/msg_participate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/msg_participate.go -------------------------------------------------------------------------------- /x/participation/types/msg_participate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/msg_participate_test.go -------------------------------------------------------------------------------- /x/participation/types/msg_withdraw_allocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/msg_withdraw_allocations.go -------------------------------------------------------------------------------- /x/participation/types/msg_withdraw_allocations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/msg_withdraw_allocations_test.go -------------------------------------------------------------------------------- /x/participation/types/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/params.go -------------------------------------------------------------------------------- /x/participation/types/params.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/params.pb.go -------------------------------------------------------------------------------- /x/participation/types/params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/params_test.go -------------------------------------------------------------------------------- /x/participation/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/query.pb.go -------------------------------------------------------------------------------- /x/participation/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/participation/types/tier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/tier.go -------------------------------------------------------------------------------- /x/participation/types/tier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/tier_test.go -------------------------------------------------------------------------------- /x/participation/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/tx.pb.go -------------------------------------------------------------------------------- /x/participation/types/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/types_test.go -------------------------------------------------------------------------------- /x/participation/types/used_allocations.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/participation/types/used_allocations.pb.go -------------------------------------------------------------------------------- /x/profile/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/client/cli/query.go -------------------------------------------------------------------------------- /x/profile/client/cli/query_coordinator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/client/cli/query_coordinator.go -------------------------------------------------------------------------------- /x/profile/client/cli/query_coordinator_by_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/client/cli/query_coordinator_by_address.go -------------------------------------------------------------------------------- /x/profile/client/cli/query_coordinator_by_address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/client/cli/query_coordinator_by_address_test.go -------------------------------------------------------------------------------- /x/profile/client/cli/query_coordinator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/client/cli/query_coordinator_test.go -------------------------------------------------------------------------------- /x/profile/client/cli/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/client/cli/query_test.go -------------------------------------------------------------------------------- /x/profile/client/cli/query_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/client/cli/query_validator.go -------------------------------------------------------------------------------- /x/profile/client/cli/query_validator_by_operator_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/client/cli/query_validator_by_operator_address.go -------------------------------------------------------------------------------- /x/profile/client/cli/query_validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/client/cli/query_validator_test.go -------------------------------------------------------------------------------- /x/profile/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/client/cli/tx.go -------------------------------------------------------------------------------- /x/profile/client/cli/tx_add_validator_operator_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/client/cli/tx_add_validator_operator_address.go -------------------------------------------------------------------------------- /x/profile/client/cli/tx_create_coordinator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/client/cli/tx_create_coordinator.go -------------------------------------------------------------------------------- /x/profile/client/cli/tx_disable_coordinator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/client/cli/tx_disable_coordinator.go -------------------------------------------------------------------------------- /x/profile/client/cli/tx_update_coordinator_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/client/cli/tx_update_coordinator_address.go -------------------------------------------------------------------------------- /x/profile/client/cli/tx_update_coordinator_description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/client/cli/tx_update_coordinator_description.go -------------------------------------------------------------------------------- /x/profile/client/cli/tx_update_validator_description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/client/cli/tx_update_validator_description.go -------------------------------------------------------------------------------- /x/profile/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/genesis.go -------------------------------------------------------------------------------- /x/profile/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/genesis_test.go -------------------------------------------------------------------------------- /x/profile/keeper/coordinator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/coordinator.go -------------------------------------------------------------------------------- /x/profile/keeper/coordinator_by_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/coordinator_by_address.go -------------------------------------------------------------------------------- /x/profile/keeper/coordinator_by_address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/coordinator_by_address_test.go -------------------------------------------------------------------------------- /x/profile/keeper/coordinator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/coordinator_test.go -------------------------------------------------------------------------------- /x/profile/keeper/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/grpc.go -------------------------------------------------------------------------------- /x/profile/keeper/grpc_coordinator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/grpc_coordinator.go -------------------------------------------------------------------------------- /x/profile/keeper/grpc_coordinator_by_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/grpc_coordinator_by_address.go -------------------------------------------------------------------------------- /x/profile/keeper/grpc_coordinator_by_address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/grpc_coordinator_by_address_test.go -------------------------------------------------------------------------------- /x/profile/keeper/grpc_coordinator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/grpc_coordinator_test.go -------------------------------------------------------------------------------- /x/profile/keeper/grpc_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/grpc_validator.go -------------------------------------------------------------------------------- /x/profile/keeper/grpc_validator_by_operator_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/grpc_validator_by_operator_address.go -------------------------------------------------------------------------------- /x/profile/keeper/grpc_validator_by_operator_address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/grpc_validator_by_operator_address_test.go -------------------------------------------------------------------------------- /x/profile/keeper/grpc_validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/grpc_validator_test.go -------------------------------------------------------------------------------- /x/profile/keeper/invariants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/invariants.go -------------------------------------------------------------------------------- /x/profile/keeper/invariants_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/invariants_test.go -------------------------------------------------------------------------------- /x/profile/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/keeper.go -------------------------------------------------------------------------------- /x/profile/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/profile/keeper/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/msg.go -------------------------------------------------------------------------------- /x/profile/keeper/msg_add_validator_operator_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/msg_add_validator_operator_address.go -------------------------------------------------------------------------------- /x/profile/keeper/msg_add_validator_operator_address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/msg_add_validator_operator_address_test.go -------------------------------------------------------------------------------- /x/profile/keeper/msg_create_coordinator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/msg_create_coordinator.go -------------------------------------------------------------------------------- /x/profile/keeper/msg_create_coordinator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/msg_create_coordinator_test.go -------------------------------------------------------------------------------- /x/profile/keeper/msg_disable_coordinator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/msg_disable_coordinator.go -------------------------------------------------------------------------------- /x/profile/keeper/msg_disable_coordinator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/msg_disable_coordinator_test.go -------------------------------------------------------------------------------- /x/profile/keeper/msg_update_coordinator_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/msg_update_coordinator_address.go -------------------------------------------------------------------------------- /x/profile/keeper/msg_update_coordinator_address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/msg_update_coordinator_address_test.go -------------------------------------------------------------------------------- /x/profile/keeper/msg_update_coordinator_description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/msg_update_coordinator_description.go -------------------------------------------------------------------------------- /x/profile/keeper/msg_update_coordinator_description_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/msg_update_coordinator_description_test.go -------------------------------------------------------------------------------- /x/profile/keeper/msg_update_validator_description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/msg_update_validator_description.go -------------------------------------------------------------------------------- /x/profile/keeper/msg_update_validator_description_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/msg_update_validator_description_test.go -------------------------------------------------------------------------------- /x/profile/keeper/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/validator.go -------------------------------------------------------------------------------- /x/profile/keeper/validator_by_operator_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/validator_by_operator_address.go -------------------------------------------------------------------------------- /x/profile/keeper/validator_by_operator_address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/validator_by_operator_address_test.go -------------------------------------------------------------------------------- /x/profile/keeper/validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/keeper/validator_test.go -------------------------------------------------------------------------------- /x/profile/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/module.go -------------------------------------------------------------------------------- /x/profile/module_simulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/module_simulation.go -------------------------------------------------------------------------------- /x/profile/simulation/simulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/simulation/simulation.go -------------------------------------------------------------------------------- /x/profile/simulation/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/simulation/store.go -------------------------------------------------------------------------------- /x/profile/simulation/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/simulation/store_test.go -------------------------------------------------------------------------------- /x/profile/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/codec.go -------------------------------------------------------------------------------- /x/profile/types/coordinator.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/coordinator.pb.go -------------------------------------------------------------------------------- /x/profile/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/errors.go -------------------------------------------------------------------------------- /x/profile/types/events.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/events.pb.go -------------------------------------------------------------------------------- /x/profile/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/expected_keepers.go -------------------------------------------------------------------------------- /x/profile/types/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/genesis.go -------------------------------------------------------------------------------- /x/profile/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/genesis.pb.go -------------------------------------------------------------------------------- /x/profile/types/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/genesis_test.go -------------------------------------------------------------------------------- /x/profile/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/keys.go -------------------------------------------------------------------------------- /x/profile/types/msg_add_validator_operator_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/msg_add_validator_operator_address.go -------------------------------------------------------------------------------- /x/profile/types/msg_add_validator_operator_address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/msg_add_validator_operator_address_test.go -------------------------------------------------------------------------------- /x/profile/types/msg_create_coordinator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/msg_create_coordinator.go -------------------------------------------------------------------------------- /x/profile/types/msg_create_coordinator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/msg_create_coordinator_test.go -------------------------------------------------------------------------------- /x/profile/types/msg_disable_coordinator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/msg_disable_coordinator.go -------------------------------------------------------------------------------- /x/profile/types/msg_disable_coordinator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/msg_disable_coordinator_test.go -------------------------------------------------------------------------------- /x/profile/types/msg_update_coordinator_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/msg_update_coordinator_address.go -------------------------------------------------------------------------------- /x/profile/types/msg_update_coordinator_address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/msg_update_coordinator_address_test.go -------------------------------------------------------------------------------- /x/profile/types/msg_update_coordinator_description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/msg_update_coordinator_description.go -------------------------------------------------------------------------------- /x/profile/types/msg_update_coordinator_description_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/msg_update_coordinator_description_test.go -------------------------------------------------------------------------------- /x/profile/types/msg_update_validator_description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/msg_update_validator_description.go -------------------------------------------------------------------------------- /x/profile/types/msg_update_validator_description_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/msg_update_validator_description_test.go -------------------------------------------------------------------------------- /x/profile/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/query.pb.go -------------------------------------------------------------------------------- /x/profile/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/profile/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/tx.pb.go -------------------------------------------------------------------------------- /x/profile/types/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/types_test.go -------------------------------------------------------------------------------- /x/profile/types/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/validator.go -------------------------------------------------------------------------------- /x/profile/types/validator.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/validator.pb.go -------------------------------------------------------------------------------- /x/profile/types/validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/profile/types/validator_test.go -------------------------------------------------------------------------------- /x/project/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/client/cli/query.go -------------------------------------------------------------------------------- /x/project/client/cli/query_mainnet_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/client/cli/query_mainnet_account.go -------------------------------------------------------------------------------- /x/project/client/cli/query_mainnet_account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/client/cli/query_mainnet_account_test.go -------------------------------------------------------------------------------- /x/project/client/cli/query_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/client/cli/query_params.go -------------------------------------------------------------------------------- /x/project/client/cli/query_project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/client/cli/query_project.go -------------------------------------------------------------------------------- /x/project/client/cli/query_project_chains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/client/cli/query_project_chains.go -------------------------------------------------------------------------------- /x/project/client/cli/query_project_chains_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/client/cli/query_project_chains_test.go -------------------------------------------------------------------------------- /x/project/client/cli/query_project_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/client/cli/query_project_test.go -------------------------------------------------------------------------------- /x/project/client/cli/query_special_allocations_balance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/client/cli/query_special_allocations_balance.go -------------------------------------------------------------------------------- /x/project/client/cli/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/client/cli/query_test.go -------------------------------------------------------------------------------- /x/project/client/cli/query_total_shares.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/client/cli/query_total_shares.go -------------------------------------------------------------------------------- /x/project/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/client/cli/tx.go -------------------------------------------------------------------------------- /x/project/client/cli/tx_burn_vouchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/client/cli/tx_burn_vouchers.go -------------------------------------------------------------------------------- /x/project/client/cli/tx_create_project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/client/cli/tx_create_project.go -------------------------------------------------------------------------------- /x/project/client/cli/tx_edit_project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/client/cli/tx_edit_project.go -------------------------------------------------------------------------------- /x/project/client/cli/tx_initialize_mainnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/client/cli/tx_initialize_mainnet.go -------------------------------------------------------------------------------- /x/project/client/cli/tx_mint_vouchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/client/cli/tx_mint_vouchers.go -------------------------------------------------------------------------------- /x/project/client/cli/tx_redeem_vouchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/client/cli/tx_redeem_vouchers.go -------------------------------------------------------------------------------- /x/project/client/cli/tx_unredeem_vouchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/client/cli/tx_unredeem_vouchers.go -------------------------------------------------------------------------------- /x/project/client/cli/tx_update_special_allocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/client/cli/tx_update_special_allocations.go -------------------------------------------------------------------------------- /x/project/client/cli/tx_update_total_supply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/client/cli/tx_update_total_supply.go -------------------------------------------------------------------------------- /x/project/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/genesis.go -------------------------------------------------------------------------------- /x/project/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/genesis_test.go -------------------------------------------------------------------------------- /x/project/keeper/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/grpc.go -------------------------------------------------------------------------------- /x/project/keeper/grpc_mainnet_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/grpc_mainnet_account.go -------------------------------------------------------------------------------- /x/project/keeper/grpc_mainnet_account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/grpc_mainnet_account_test.go -------------------------------------------------------------------------------- /x/project/keeper/grpc_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/grpc_params.go -------------------------------------------------------------------------------- /x/project/keeper/grpc_params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/grpc_params_test.go -------------------------------------------------------------------------------- /x/project/keeper/grpc_project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/grpc_project.go -------------------------------------------------------------------------------- /x/project/keeper/grpc_project_chains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/grpc_project_chains.go -------------------------------------------------------------------------------- /x/project/keeper/grpc_project_chains_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/grpc_project_chains_test.go -------------------------------------------------------------------------------- /x/project/keeper/grpc_project_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/grpc_project_test.go -------------------------------------------------------------------------------- /x/project/keeper/grpc_special_allocations_balance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/grpc_special_allocations_balance.go -------------------------------------------------------------------------------- /x/project/keeper/grpc_special_allocations_balance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/grpc_special_allocations_balance_test.go -------------------------------------------------------------------------------- /x/project/keeper/grpc_total_shares.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/grpc_total_shares.go -------------------------------------------------------------------------------- /x/project/keeper/grpc_total_shares_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/grpc_total_shares_test.go -------------------------------------------------------------------------------- /x/project/keeper/invariants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/invariants.go -------------------------------------------------------------------------------- /x/project/keeper/invariants_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/invariants_test.go -------------------------------------------------------------------------------- /x/project/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/keeper.go -------------------------------------------------------------------------------- /x/project/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/project/keeper/mainnet_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/mainnet_account.go -------------------------------------------------------------------------------- /x/project/keeper/mainnet_account_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/mainnet_account_test.go -------------------------------------------------------------------------------- /x/project/keeper/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/msg.go -------------------------------------------------------------------------------- /x/project/keeper/msg_burn_vouchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/msg_burn_vouchers.go -------------------------------------------------------------------------------- /x/project/keeper/msg_burn_vouchers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/msg_burn_vouchers_test.go -------------------------------------------------------------------------------- /x/project/keeper/msg_create_project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/msg_create_project.go -------------------------------------------------------------------------------- /x/project/keeper/msg_create_project_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/msg_create_project_test.go -------------------------------------------------------------------------------- /x/project/keeper/msg_edit_project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/msg_edit_project.go -------------------------------------------------------------------------------- /x/project/keeper/msg_edit_project_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/msg_edit_project_test.go -------------------------------------------------------------------------------- /x/project/keeper/msg_initialize_mainnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/msg_initialize_mainnet.go -------------------------------------------------------------------------------- /x/project/keeper/msg_initialize_mainnet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/msg_initialize_mainnet_test.go -------------------------------------------------------------------------------- /x/project/keeper/msg_mint_vouchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/msg_mint_vouchers.go -------------------------------------------------------------------------------- /x/project/keeper/msg_mint_vouchers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/msg_mint_vouchers_test.go -------------------------------------------------------------------------------- /x/project/keeper/msg_redeem_vouchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/msg_redeem_vouchers.go -------------------------------------------------------------------------------- /x/project/keeper/msg_redeem_vouchers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/msg_redeem_vouchers_test.go -------------------------------------------------------------------------------- /x/project/keeper/msg_unredeem_vouchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/msg_unredeem_vouchers.go -------------------------------------------------------------------------------- /x/project/keeper/msg_unredeem_vouchers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/msg_unredeem_vouchers_test.go -------------------------------------------------------------------------------- /x/project/keeper/msg_update_special_allocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/msg_update_special_allocations.go -------------------------------------------------------------------------------- /x/project/keeper/msg_update_special_allocations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/msg_update_special_allocations_test.go -------------------------------------------------------------------------------- /x/project/keeper/msg_update_total_supply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/msg_update_total_supply.go -------------------------------------------------------------------------------- /x/project/keeper/msg_update_total_supply_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/msg_update_total_supply_test.go -------------------------------------------------------------------------------- /x/project/keeper/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/params.go -------------------------------------------------------------------------------- /x/project/keeper/params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/params_test.go -------------------------------------------------------------------------------- /x/project/keeper/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/project.go -------------------------------------------------------------------------------- /x/project/keeper/project_auction_event_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/project_auction_event_hooks.go -------------------------------------------------------------------------------- /x/project/keeper/project_auction_event_hooks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/project_auction_event_hooks_test.go -------------------------------------------------------------------------------- /x/project/keeper/project_chains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/project_chains.go -------------------------------------------------------------------------------- /x/project/keeper/project_chains_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/project_chains_test.go -------------------------------------------------------------------------------- /x/project/keeper/project_mainnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/project_mainnet.go -------------------------------------------------------------------------------- /x/project/keeper/project_mainnet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/project_mainnet_test.go -------------------------------------------------------------------------------- /x/project/keeper/project_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/project_test.go -------------------------------------------------------------------------------- /x/project/keeper/total_shares.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/total_shares.go -------------------------------------------------------------------------------- /x/project/keeper/total_shares_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/keeper/total_shares_test.go -------------------------------------------------------------------------------- /x/project/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/module.go -------------------------------------------------------------------------------- /x/project/module_simulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/module_simulation.go -------------------------------------------------------------------------------- /x/project/simulation/simulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/simulation/simulation.go -------------------------------------------------------------------------------- /x/project/simulation/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/simulation/store.go -------------------------------------------------------------------------------- /x/project/simulation/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/simulation/store_test.go -------------------------------------------------------------------------------- /x/project/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/codec.go -------------------------------------------------------------------------------- /x/project/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/errors.go -------------------------------------------------------------------------------- /x/project/types/events.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/events.pb.go -------------------------------------------------------------------------------- /x/project/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/expected_keepers.go -------------------------------------------------------------------------------- /x/project/types/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/genesis.go -------------------------------------------------------------------------------- /x/project/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/genesis.pb.go -------------------------------------------------------------------------------- /x/project/types/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/genesis_test.go -------------------------------------------------------------------------------- /x/project/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/keys.go -------------------------------------------------------------------------------- /x/project/types/mainnet_account.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/mainnet_account.pb.go -------------------------------------------------------------------------------- /x/project/types/msg_burn_vouchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/msg_burn_vouchers.go -------------------------------------------------------------------------------- /x/project/types/msg_burn_vouchers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/msg_burn_vouchers_test.go -------------------------------------------------------------------------------- /x/project/types/msg_create_project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/msg_create_project.go -------------------------------------------------------------------------------- /x/project/types/msg_create_project_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/msg_create_project_test.go -------------------------------------------------------------------------------- /x/project/types/msg_edit_project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/msg_edit_project.go -------------------------------------------------------------------------------- /x/project/types/msg_edit_project_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/msg_edit_project_test.go -------------------------------------------------------------------------------- /x/project/types/msg_initialize_mainnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/msg_initialize_mainnet.go -------------------------------------------------------------------------------- /x/project/types/msg_initialize_mainnet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/msg_initialize_mainnet_test.go -------------------------------------------------------------------------------- /x/project/types/msg_mint_vouchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/msg_mint_vouchers.go -------------------------------------------------------------------------------- /x/project/types/msg_mint_vouchers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/msg_mint_vouchers_test.go -------------------------------------------------------------------------------- /x/project/types/msg_redeem_vouchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/msg_redeem_vouchers.go -------------------------------------------------------------------------------- /x/project/types/msg_redeem_vouchers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/msg_redeem_vouchers_test.go -------------------------------------------------------------------------------- /x/project/types/msg_unredeem_vouchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/msg_unredeem_vouchers.go -------------------------------------------------------------------------------- /x/project/types/msg_unredeem_vouchers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/msg_unredeem_vouchers_test.go -------------------------------------------------------------------------------- /x/project/types/msg_update_special_allocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/msg_update_special_allocations.go -------------------------------------------------------------------------------- /x/project/types/msg_update_special_allocations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/msg_update_special_allocations_test.go -------------------------------------------------------------------------------- /x/project/types/msg_update_total_supply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/msg_update_total_supply.go -------------------------------------------------------------------------------- /x/project/types/msg_update_total_supply_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/msg_update_total_supply_test.go -------------------------------------------------------------------------------- /x/project/types/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/params.go -------------------------------------------------------------------------------- /x/project/types/params.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/params.pb.go -------------------------------------------------------------------------------- /x/project/types/params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/params_test.go -------------------------------------------------------------------------------- /x/project/types/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/project.go -------------------------------------------------------------------------------- /x/project/types/project.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/project.pb.go -------------------------------------------------------------------------------- /x/project/types/project_chains.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/project_chains.pb.go -------------------------------------------------------------------------------- /x/project/types/project_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/project_test.go -------------------------------------------------------------------------------- /x/project/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/query.pb.go -------------------------------------------------------------------------------- /x/project/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/project/types/share_vesting_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/share_vesting_options.go -------------------------------------------------------------------------------- /x/project/types/share_vesting_options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/share_vesting_options_test.go -------------------------------------------------------------------------------- /x/project/types/shares.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/shares.go -------------------------------------------------------------------------------- /x/project/types/shares_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/shares_test.go -------------------------------------------------------------------------------- /x/project/types/special_allocations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/special_allocations.go -------------------------------------------------------------------------------- /x/project/types/special_allocations.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/special_allocations.pb.go -------------------------------------------------------------------------------- /x/project/types/special_allocations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/special_allocations_test.go -------------------------------------------------------------------------------- /x/project/types/total_supply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/total_supply.go -------------------------------------------------------------------------------- /x/project/types/total_supply_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/total_supply_test.go -------------------------------------------------------------------------------- /x/project/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/tx.pb.go -------------------------------------------------------------------------------- /x/project/types/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/types_test.go -------------------------------------------------------------------------------- /x/project/types/vesting.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/vesting.pb.go -------------------------------------------------------------------------------- /x/project/types/voucher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/voucher.go -------------------------------------------------------------------------------- /x/project/types/voucher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/project/types/voucher_test.go -------------------------------------------------------------------------------- /x/reward/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/client/cli/query.go -------------------------------------------------------------------------------- /x/reward/client/cli/query_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/client/cli/query_params.go -------------------------------------------------------------------------------- /x/reward/client/cli/query_reward_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/client/cli/query_reward_pool.go -------------------------------------------------------------------------------- /x/reward/client/cli/query_reward_pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/client/cli/query_reward_pool_test.go -------------------------------------------------------------------------------- /x/reward/client/cli/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/client/cli/query_test.go -------------------------------------------------------------------------------- /x/reward/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/client/cli/tx.go -------------------------------------------------------------------------------- /x/reward/client/cli/tx_set_reward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/client/cli/tx_set_reward.go -------------------------------------------------------------------------------- /x/reward/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/genesis.go -------------------------------------------------------------------------------- /x/reward/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/genesis_test.go -------------------------------------------------------------------------------- /x/reward/keeper/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/keeper/grpc.go -------------------------------------------------------------------------------- /x/reward/keeper/grpc_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/keeper/grpc_params.go -------------------------------------------------------------------------------- /x/reward/keeper/grpc_params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/keeper/grpc_params_test.go -------------------------------------------------------------------------------- /x/reward/keeper/grpc_reward_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/keeper/grpc_reward_pool.go -------------------------------------------------------------------------------- /x/reward/keeper/grpc_reward_pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/keeper/grpc_reward_pool_test.go -------------------------------------------------------------------------------- /x/reward/keeper/invariants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/keeper/invariants.go -------------------------------------------------------------------------------- /x/reward/keeper/invariants_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/keeper/invariants_test.go -------------------------------------------------------------------------------- /x/reward/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/keeper/keeper.go -------------------------------------------------------------------------------- /x/reward/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/reward/keeper/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/keeper/msg.go -------------------------------------------------------------------------------- /x/reward/keeper/msg_set_reward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/keeper/msg_set_reward.go -------------------------------------------------------------------------------- /x/reward/keeper/msg_set_reward_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/keeper/msg_set_reward_test.go -------------------------------------------------------------------------------- /x/reward/keeper/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/keeper/params.go -------------------------------------------------------------------------------- /x/reward/keeper/params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/keeper/params_test.go -------------------------------------------------------------------------------- /x/reward/keeper/reward_distribution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/keeper/reward_distribution.go -------------------------------------------------------------------------------- /x/reward/keeper/reward_distribution_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/keeper/reward_distribution_test.go -------------------------------------------------------------------------------- /x/reward/keeper/reward_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/keeper/reward_pool.go -------------------------------------------------------------------------------- /x/reward/keeper/reward_pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/keeper/reward_pool_test.go -------------------------------------------------------------------------------- /x/reward/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/module.go -------------------------------------------------------------------------------- /x/reward/module_simulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/module_simulation.go -------------------------------------------------------------------------------- /x/reward/simulation/simulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/simulation/simulation.go -------------------------------------------------------------------------------- /x/reward/simulation/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/simulation/store.go -------------------------------------------------------------------------------- /x/reward/simulation/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/simulation/store_test.go -------------------------------------------------------------------------------- /x/reward/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/types/codec.go -------------------------------------------------------------------------------- /x/reward/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/types/errors.go -------------------------------------------------------------------------------- /x/reward/types/events.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/types/events.pb.go -------------------------------------------------------------------------------- /x/reward/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/types/expected_keepers.go -------------------------------------------------------------------------------- /x/reward/types/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/types/genesis.go -------------------------------------------------------------------------------- /x/reward/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/types/genesis.pb.go -------------------------------------------------------------------------------- /x/reward/types/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/types/genesis_test.go -------------------------------------------------------------------------------- /x/reward/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/types/keys.go -------------------------------------------------------------------------------- /x/reward/types/msg_set_reward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/types/msg_set_reward.go -------------------------------------------------------------------------------- /x/reward/types/msg_set_reward_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/types/msg_set_reward_test.go -------------------------------------------------------------------------------- /x/reward/types/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/types/params.go -------------------------------------------------------------------------------- /x/reward/types/params.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/types/params.pb.go -------------------------------------------------------------------------------- /x/reward/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/types/query.pb.go -------------------------------------------------------------------------------- /x/reward/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/reward/types/reward_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/types/reward_pool.go -------------------------------------------------------------------------------- /x/reward/types/reward_pool.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/types/reward_pool.pb.go -------------------------------------------------------------------------------- /x/reward/types/reward_pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/types/reward_pool_test.go -------------------------------------------------------------------------------- /x/reward/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/types/tx.pb.go -------------------------------------------------------------------------------- /x/reward/types/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tendermint/spn/HEAD/x/reward/types/types_test.go --------------------------------------------------------------------------------