├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ ├── canary.yml │ ├── cloc.yml │ ├── codeql-analizer.yml │ ├── cov.yml │ ├── golangci.yml │ ├── release.yml │ ├── test-full-app-sim.yml │ ├── test-import-export-sim.yml │ └── test-unit.yml ├── .gitignore ├── .golangci.yaml ├── ABOUT.md ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE.md ├── Makefile ├── README.md ├── SECURITY.md ├── TOKENS.md ├── app ├── ante.go ├── app.go ├── app_test.go ├── encoding.go ├── export.go ├── genesis.go ├── logger.go ├── params │ ├── doc.go │ ├── encoding.go │ ├── params.go │ ├── proto.go │ └── weights.go ├── sim_test.go ├── test_access.go ├── test_helpers.go ├── upgrades.go ├── upgrades │ ├── bouncybulldog │ │ └── upgrades.go │ ├── recover.go │ ├── testnet │ │ ├── 121 │ │ │ └── upgrades.go │ │ ├── alpha11 │ │ │ └── upgrades.go │ │ ├── alpha13 │ │ │ └── upgrades.go │ │ ├── alpha7 │ │ │ ├── constant.go │ │ │ └── upgrades.go │ │ ├── beta6 │ │ │ └── upgrades.go │ │ ├── beta7 │ │ │ └── upgrades.go │ │ └── v1.2.0-alpha.6 │ │ │ ├── constant.go │ │ │ └── upgrades.go │ ├── upgrades.go │ ├── v3 │ │ └── upgrades.go │ ├── v4 │ │ ├── README.md │ │ ├── commont_test.go │ │ ├── flow_post_file.png │ │ ├── upgrade_test.go │ │ └── upgrades.go │ ├── v410 │ │ ├── commont_test.go │ │ ├── upgrade_data │ │ ├── upgrade_test.go │ │ └── upgrades.go │ ├── v410beta │ │ └── upgrades.go │ ├── v410testnet │ │ └── upgrades.go │ ├── v420 │ │ └── upgrades.go │ ├── v430 │ │ ├── commont_test.go │ │ ├── upgrade_data │ │ ├── upgrade_test.go │ │ └── upgrades.go │ ├── v440 │ │ ├── commont_test.go │ │ ├── upgrade_data │ │ ├── upgrade_test.go │ │ └── upgrades.go │ ├── v450 │ │ ├── commont_test.go │ │ ├── upgrade_data │ │ ├── upgrade_test.go │ │ └── upgrades.go │ ├── v460 │ │ └── upgrades.go │ ├── v4alpha1 │ │ └── upgrades.go │ ├── v4alpha3 │ │ └── upgrades.go │ ├── v4alpha5 │ │ └── upgrades.go │ ├── v500 │ │ ├── logo.txt │ │ └── upgrades.go │ ├── v500testnet │ │ └── upgrades.go │ └── v510 │ │ └── upgrades.go └── wasm_config.go ├── assets └── jackal_logo.png ├── banner.png ├── cmd └── canined │ ├── README.md │ ├── genaccounts.go │ ├── main.go │ ├── root.go │ ├── tx.go │ ├── types.go │ └── utils.go ├── config.yml ├── docs ├── README.md ├── config.json ├── docs.go ├── openapiconsole │ ├── console.go │ └── index.tpl ├── proto │ ├── proto-docs.md │ ├── proto.md │ └── protodoc-markdown.tmpl └── swagger-ui │ └── swagger.yaml ├── go.mod ├── go.sum ├── proto ├── buf.gen.gogo.yaml ├── buf.gen.swagger.yaml ├── buf.lock ├── buf.md ├── buf.yaml └── canine_chain │ ├── filetree │ ├── files.proto │ ├── genesis.proto │ ├── params.proto │ ├── pubkey.proto │ ├── query.proto │ └── tx.proto │ ├── jklmint │ ├── genesis.proto │ ├── minted_block.proto │ ├── params.proto │ ├── query.proto │ └── tx.proto │ ├── notifications │ ├── genesis.proto │ ├── notification.proto │ ├── params.proto │ ├── query.proto │ └── tx.proto │ ├── oracle │ ├── feed.proto │ ├── genesis.proto │ ├── params.proto │ ├── query.proto │ └── tx.proto │ ├── rns │ ├── bids.proto │ ├── forsale.proto │ ├── genesis.proto │ ├── init.proto │ ├── names.proto │ ├── params.proto │ ├── query.proto │ ├── tx.proto │ └── whois.proto │ └── storage │ ├── active_deals.proto │ ├── genesis.proto │ ├── params.proto │ ├── payment_info.proto │ ├── providers.proto │ ├── query.proto │ └── tx.proto ├── scripts ├── README.md ├── auto-testnet │ ├── ValidatorDockerfile │ ├── genesis-validator.sh │ ├── init-subnet.sh │ ├── validator.sh │ └── wipe.sh ├── bulk-upload.sh ├── cosmovisor.sh ├── devnet-ica.sh ├── dummy_data │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.svg │ ├── 6.wav │ └── test.txt ├── mockgen.sh ├── multinode-local-testnet.sh ├── protoc-swagger-gen.sh ├── protocgen.sh ├── protoformat.sh ├── protolint.sh ├── release-setup.sh ├── run-upgrade-node.sh ├── start-provider-openroute.sh ├── start-provider.sh ├── test-attest-w-upgrade.sh ├── test-attest.sh ├── test-node-dev.sh ├── test-node.sh ├── test-provider.sh ├── test-sequoia.sh ├── upgrade-test-mainnet.sh └── upgrade-test.sh ├── testutil ├── context.go ├── logger.go └── misc.go ├── types ├── keys.go ├── module │ └── testutil │ │ └── codec.go └── utils.go ├── upgrades ├── gov-props │ ├── convert.py │ ├── econv2.json │ ├── econv2.md │ ├── v1.2.0.md │ ├── v2.0.0.md │ ├── v3.4.0.md │ └── v4.0.0.md ├── v1.1.2.md ├── v1.2.0.md ├── v2.0.0.md └── v4.0.0.md ├── wasmbinding ├── bindings │ └── msg.go ├── filetree_messages.go ├── message_plugin.go ├── notifications_messages.go ├── storage_messages.go └── wasm.go └── x ├── README.md ├── filetree ├── README.md ├── client │ └── cli │ │ ├── query.go │ │ ├── query_files.go │ │ ├── query_get_keys.go │ │ ├── query_params.go │ │ ├── query_pubkey.go │ │ ├── tx.go │ │ ├── tx_add_editors.go │ │ ├── tx_add_viewers.go │ │ ├── tx_change_owner.go │ │ ├── tx_delete_file.go │ │ ├── tx_make_root.go │ │ ├── tx_post_file.go │ │ ├── tx_postkey.go │ │ ├── tx_remove_editors.go │ │ ├── tx_remove_viewers.go │ │ ├── tx_reset_editors.go │ │ ├── tx_reset_viewers.go │ │ └── utils.go ├── genesis.go ├── handler.go ├── keeper │ ├── access.go │ ├── access_test.go │ ├── common_test.go │ ├── files.go │ ├── files_test.go │ ├── grpc_query.go │ ├── grpc_query_files.go │ ├── grpc_query_params.go │ ├── grpc_query_pubkey.go │ ├── keeper.go │ ├── keeper_test.go │ ├── marshalling_test.go │ ├── migrations.go │ ├── msg_server.go │ ├── msg_server_add_editors.go │ ├── msg_server_add_editors_test.go │ ├── msg_server_add_viewers.go │ ├── msg_server_add_viewers_test.go │ ├── msg_server_change_owner.go │ ├── msg_server_change_owner_test.go │ ├── msg_server_delete_file.go │ ├── msg_server_delete_file_test.go │ ├── msg_server_make_root.go │ ├── msg_server_make_root_test.go │ ├── msg_server_post_file.go │ ├── msg_server_post_file_test.go │ ├── msg_server_post_key_test.go │ ├── msg_server_postkey.go │ ├── msg_server_remove_editors.go │ ├── msg_server_remove_editors_test.go │ ├── msg_server_remove_viewers.go │ ├── msg_server_remove_viewers_test.go │ ├── msg_server_reset_editors.go │ ├── msg_server_reset_editors_test.go │ ├── msg_server_reset_viewers.go │ ├── msg_server_reset_viewers_test.go │ ├── params.go │ ├── pubkey.go │ └── pubkey_test.go ├── legacy │ └── v2 │ │ └── store.go ├── module.go ├── module_simulation.go ├── simulation │ ├── add_editors.go │ ├── add_viewers.go │ ├── change_owner.go │ ├── delete_file.go │ ├── helpers.go │ ├── make_root.go │ ├── post_file.go │ ├── postkey.go │ ├── remove_editors.go │ ├── remove_viewers.go │ ├── reset_editors.go │ ├── reset_viewers.go │ ├── simap.go │ └── utils.go └── types │ ├── codec.go │ ├── errors.go │ ├── events.go │ ├── expected_keepers.go │ ├── files.pb.go │ ├── genesis.go │ ├── genesis.pb.go │ ├── genesis_test.go │ ├── key_files.go │ ├── key_pubkey.go │ ├── keys.go │ ├── merkle-paths.go │ ├── merkle-paths_test.go │ ├── message_add_editors.go │ ├── message_add_editors_test.go │ ├── message_add_viewers.go │ ├── message_add_viewers_test.go │ ├── message_change_owner.go │ ├── message_change_owner_test.go │ ├── message_delete_file.go │ ├── message_delete_file_test.go │ ├── message_make_rootv2.go │ ├── message_post_file.go │ ├── message_post_file_test.go │ ├── message_postkey.go │ ├── message_postkey_test.go │ ├── message_remove_editors.go │ ├── message_remove_editors_test.go │ ├── message_remove_viewers.go │ ├── message_remove_viewers_test.go │ ├── message_reset_editors.go │ ├── message_reset_editors_test.go │ ├── message_reset_viewers.go │ ├── message_reset_viewers_test.go │ ├── params.go │ ├── params.pb.go │ ├── pubkey.pb.go │ ├── query.pb.go │ ├── query.pb.gw.go │ ├── test_helpers.go │ ├── tx.pb.go │ └── types.go ├── jklmint ├── README.md ├── abci.go ├── client │ └── cli │ │ ├── query.go │ │ ├── query_get_inflation.go │ │ ├── query_params.go │ │ └── tx.go ├── exported │ └── exported.go ├── genesis.go ├── genesis_test.go ├── handler.go ├── keeper │ ├── grpc_query.go │ ├── grpc_query_inflation.go │ ├── grpc_query_minted.go │ ├── grpc_query_params.go │ ├── grpc_query_params_test.go │ ├── integration_test.go │ ├── keeper.go │ ├── migrations.go │ ├── mint.go │ ├── mint_test.go │ ├── minted_block.go │ ├── msg_server.go │ ├── params.go │ └── querier.go ├── legacy │ └── v4 │ │ ├── params.go │ │ ├── params.pb.go │ │ └── store.go ├── module.go ├── module_simulation.go ├── simulation │ └── simap.go ├── types │ ├── account_names.go │ ├── account_names_test.go │ ├── codec.go │ ├── errors.go │ ├── events.go │ ├── expected_keepers.go │ ├── genesis.go │ ├── genesis.pb.go │ ├── genesis_test.go │ ├── keys.go │ ├── minted_block.pb.go │ ├── params.go │ ├── params.pb.go │ ├── query.pb.go │ ├── query.pb.gw.go │ ├── tx.pb.go │ └── types.go └── utils │ ├── mint.go │ └── mint_test.go ├── notifications ├── README.md ├── client │ └── cli │ │ ├── query.go │ │ ├── query_notifications.go │ │ ├── query_params.go │ │ ├── tx.go │ │ ├── tx_block_senders.go │ │ └── tx_notifications.go ├── genesis.go ├── handler.go ├── keeper │ ├── blocks.go │ ├── common_test.go │ ├── grpc_query.go │ ├── grpc_query_notifications.go │ ├── grpc_query_params.go │ ├── keeper.go │ ├── keeper_test.go │ ├── migrations.go │ ├── msg_server.go │ ├── msg_server_block_senders.go │ ├── msg_server_block_senders_test.go │ ├── msg_server_create_notifications.go │ ├── msg_server_create_notifications_test.go │ ├── msg_server_delete_notifications.go │ ├── msg_server_delete_notifications_test.go │ ├── notifications.go │ └── params.go ├── module.go ├── module_simulation.go ├── simulation │ ├── block_senders.go │ ├── notifications.go │ └── simap.go └── types │ ├── codec.go │ ├── errors.go │ ├── events.go │ ├── expected_keepers.go │ ├── genesis.go │ ├── genesis.pb.go │ ├── key_notifications.go │ ├── keys.go │ ├── message_block_senders.go │ ├── messages_notifications.go │ ├── notification.pb.go │ ├── params.go │ ├── params.pb.go │ ├── query.pb.go │ ├── query.pb.gw.go │ ├── tx.pb.go │ └── types.go ├── oracle ├── README.md ├── client │ └── cli │ │ ├── query.go │ │ ├── query_feeds.go │ │ ├── query_params.go │ │ ├── tx.go │ │ └── tx_feeds.go ├── genesis.go ├── handler.go ├── keeper │ ├── common_test.go │ ├── feeds.go │ ├── feeds_test.go │ ├── grpc_query.go │ ├── grpc_query_feeds.go │ ├── grpc_query_params.go │ ├── keeper.go │ ├── keeper_test.go │ ├── migrations.go │ ├── msg_server.go │ ├── msg_server_feeds.go │ ├── msg_server_feeds_test.go │ └── params.go ├── legacy │ └── v2 │ │ └── store.go ├── module.go ├── module_simulation.go ├── simulation │ ├── accept_bid.go │ ├── bid.go │ ├── buy.go │ ├── cancel_bid.go │ ├── delist.go │ ├── list.go │ ├── register.go │ ├── simap.go │ └── transfer.go ├── testutil │ └── expected_keepers_mocks.go └── types │ ├── codec.go │ ├── expected_keepers.go │ ├── feed.pb.go │ ├── genesis.go │ ├── genesis.pb.go │ ├── genesis_test.go │ ├── key_feed.go │ ├── keys.go │ ├── message_create_feed.go │ ├── message_create_feed_test.go │ ├── message_update_feed.go │ ├── message_update_feed_test.go │ ├── params.go │ ├── params.pb.go │ ├── query.pb.go │ ├── query.pb.gw.go │ └── tx.pb.go ├── rns ├── README.md ├── client │ └── cli │ │ ├── query.go │ │ ├── query_bids.go │ │ ├── query_forsale.go │ │ ├── query_init.go │ │ ├── query_list_owned_names.go │ │ ├── query_names.go │ │ ├── query_params.go │ │ ├── tx.go │ │ ├── tx_accept_bid.go │ │ ├── tx_add_record.go │ │ ├── tx_addel_redcord.go │ │ ├── tx_bid.go │ │ ├── tx_buy.go │ │ ├── tx_cancel_bid.go │ │ ├── tx_delist.go │ │ ├── tx_init.go │ │ ├── tx_list.go │ │ ├── tx_register.go │ │ ├── tx_transfer.go │ │ └── tx_update.go ├── genesis.go ├── handler.go ├── keeper │ ├── bidding_test.go │ ├── bids.go │ ├── common_test.go │ ├── forsale.go │ ├── grpc_query.go │ ├── grpc_query_bids.go │ ├── grpc_query_forsale.go │ ├── grpc_query_init.go │ ├── grpc_query_list_owned_names.go │ ├── grpc_query_names.go │ ├── grpc_query_params.go │ ├── init.go │ ├── keeper.go │ ├── keeper_test.go │ ├── migrations.go │ ├── msg_server.go │ ├── msg_server_accept_bid.go │ ├── msg_server_add_record.go │ ├── msg_server_basics_test.go │ ├── msg_server_bid.go │ ├── msg_server_bidding_test.go │ ├── msg_server_buy.go │ ├── msg_server_buy_test.go │ ├── msg_server_cancel_bid.go │ ├── msg_server_del_record.go │ ├── msg_server_delist.go │ ├── msg_server_delist_test.go │ ├── msg_server_init.go │ ├── msg_server_list.go │ ├── msg_server_list_test.go │ ├── msg_server_record_test.go │ ├── msg_server_register.go │ ├── msg_server_transfer.go │ ├── msg_server_update.go │ ├── names.go │ ├── params.go │ ├── record_test.go │ ├── register_test.go │ ├── selling_test.go │ ├── transfer_test.go │ ├── utils.go │ └── whois.go ├── legacy │ └── v2 │ │ └── store.go ├── module.go ├── module_simulation.go ├── simulation │ ├── accept_bid.go │ ├── add_record.go │ ├── bid.go │ ├── buy.go │ ├── cancel_bid.go │ ├── del_record.go │ ├── delist.go │ ├── genesis.go │ ├── list.go │ ├── param.go │ ├── register.go │ ├── simap.go │ └── transfer.go ├── testutil │ └── expected_keepers_mocks.go └── types │ ├── bids.pb.go │ ├── codec.go │ ├── errors.go │ ├── events.go │ ├── expected_keepers.go │ ├── forsale.pb.go │ ├── genesis.go │ ├── genesis.pb.go │ ├── genesis_test.go │ ├── init.pb.go │ ├── key_bids.go │ ├── key_forsale.go │ ├── key_init.go │ ├── key_names.go │ ├── key_whois.go │ ├── keys.go │ ├── message_accept_bid.go │ ├── message_accept_bid_test.go │ ├── message_add_record.go │ ├── message_add_record_test.go │ ├── message_addel_redcord.go │ ├── message_addel_redcord_test.go │ ├── message_bid.go │ ├── message_bid_test.go │ ├── message_buy.go │ ├── message_buy_test.go │ ├── message_cancel_bid.go │ ├── message_cancel_bid_test.go │ ├── message_delist.go │ ├── message_delist_test.go │ ├── message_init.go │ ├── message_init_test.go │ ├── message_list.go │ ├── message_list_test.go │ ├── message_register.go │ ├── message_register_name.go │ ├── message_register_test.go │ ├── message_set_primary.go │ ├── message_transfer.go │ ├── message_transfer_test.go │ ├── message_update.go │ ├── names.go │ ├── names.pb.go │ ├── params.go │ ├── params.pb.go │ ├── query.pb.go │ ├── query.pb.gw.go │ ├── tlds.go │ ├── tx.pb.go │ ├── types.go │ ├── utils.go │ ├── utils_test.go │ └── whois.pb.go └── storage ├── README.md ├── abci.go ├── client └── cli │ ├── query.go │ ├── query_active_deals.go │ ├── query_address.go │ ├── query_attest.go │ ├── query_check_price.go │ ├── query_file_upload_check.go │ ├── query_find_file.go │ ├── query_freespace.go │ ├── query_get_client_free_space.go │ ├── query_get_pay_data.go │ ├── query_miners.go │ ├── query_params.go │ ├── query_pay_info.go │ ├── query_payment_info.go │ ├── query_storage_stats.go │ ├── tx.go │ ├── tx_buy_storage.go │ ├── tx_cancel_contract.go │ ├── tx_claimer.go │ ├── tx_init_provider.go │ ├── tx_post_file.go │ ├── tx_provider.go │ ├── tx_set_provider_ip.go │ ├── tx_set_provider_keybase.go │ └── tx_set_provider_totalspace.go ├── exported └── exported.go ├── genesis.go ├── handler.go ├── keeper ├── active_deals.go ├── attestation_test.go ├── attestations.go ├── collateral.go ├── common_test.go ├── files.go ├── files_test.go ├── gauges.go ├── grpc_query.go ├── grpc_query_active_deals.go ├── grpc_query_active_deals_test.go ├── grpc_query_attestation.go ├── grpc_query_file_upload_check.go ├── grpc_query_find_file.go ├── grpc_query_find_file_test.go ├── grpc_query_freespace.go ├── grpc_query_get_client_free_space.go ├── grpc_query_get_pay_data.go ├── grpc_query_params.go ├── grpc_query_pay_info.go ├── grpc_query_payment_info.go ├── grpc_query_price_check.go ├── grpc_query_providers.go ├── grpc_query_report.go ├── grpc_query_storage_stats.go ├── grpc_query_storage_stats_test.go ├── keeper.go ├── keeper_test.go ├── migrations.go ├── msg_server.go ├── msg_server_attest.go ├── msg_server_attest_test.go ├── msg_server_buy_storage.go ├── msg_server_buy_storage_test.go ├── msg_server_file_delete.go ├── msg_server_file_delete_test.go ├── msg_server_init_provider.go ├── msg_server_post_file.go ├── msg_server_post_file_test.go ├── msg_server_postproof.go ├── msg_server_proofs_test.go ├── msg_server_provider_claim.go ├── msg_server_provider_claim_test.go ├── msg_server_providers_test.go ├── msg_server_report.go ├── msg_server_report_test.go ├── msg_server_set_provider_ip.go ├── msg_server_set_provider_keybase.go ├── msg_server_set_provider_totalspace.go ├── msg_server_upgrade_storage_test.go ├── params.go ├── payment_info.go ├── payment_info_test.go ├── proof_manager.go ├── proof_manager_test.go ├── proofs.go ├── providers.go ├── providers_test.go ├── report_test.go ├── reports.go ├── reward_tracker.go ├── rewards.go ├── rewards_test.go ├── utils.go └── utils_test.go ├── legacy ├── paramUpgrade │ └── store.go ├── v2 │ └── store.go ├── v4 │ ├── store.go │ └── types.go └── v5 │ ├── store.go │ └── types.go ├── module.go ├── module_simulation.go ├── simulation ├── buy_storage.go ├── claimer.go ├── genesis.go ├── init_miner.go ├── param.go ├── set_miner_ip.go ├── set_miner_totalspace.go ├── simap.go └── utils.go ├── testutil └── expected_keepers_mocks.go ├── types ├── active_deals.pb.go ├── client_usage.pb.go ├── codec.go ├── errors.go ├── events.go ├── expected_keepers.go ├── file.go ├── file_deal.go ├── file_deal_test.go ├── genesis.go ├── genesis.pb.go ├── genesis_test.go ├── key_client_usage.go ├── key_files.go ├── key_pay_blocks.go ├── key_payment_info.go ├── key_providers.go ├── keys.go ├── message_attest.go ├── message_buy_storage.go ├── message_buy_storage_test.go ├── message_claimers.go ├── message_file_delete.go ├── message_file_delete_test.go ├── message_init_miner.go ├── message_init_miner_test.go ├── message_post_file.go ├── message_postproof.go ├── message_postproof_test.go ├── message_report.go ├── message_set_miner_ip.go ├── message_set_miner_ip_test.go ├── message_set_miner_keybase.go ├── message_set_miner_keybase_test.go ├── message_set_miner_totalspace.go ├── message_set_miner_totalspace_test.go ├── message_shutdown_miner.go ├── params.go ├── params.pb.go ├── payment_info.pb.go ├── proof_loader.go ├── proofs.pb.go ├── providers.pb.go ├── query.pb.go ├── query.pb.gw.go ├── tx.pb.go └── types.go └── utils └── trees.go /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/canary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/.github/workflows/canary.yml -------------------------------------------------------------------------------- /.github/workflows/cloc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/.github/workflows/cloc.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/.github/workflows/codeql-analizer.yml -------------------------------------------------------------------------------- /.github/workflows/cov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/.github/workflows/cov.yml -------------------------------------------------------------------------------- /.github/workflows/golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/.github/workflows/golangci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test-full-app-sim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/.github/workflows/test-full-app-sim.yml -------------------------------------------------------------------------------- /.github/workflows/test-import-export-sim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/.github/workflows/test-import-export-sim.yml -------------------------------------------------------------------------------- /.github/workflows/test-unit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/.github/workflows/test-unit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /ABOUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/ABOUT.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TOKENS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/TOKENS.md -------------------------------------------------------------------------------- /app/ante.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/ante.go -------------------------------------------------------------------------------- /app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/app.go -------------------------------------------------------------------------------- /app/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/app_test.go -------------------------------------------------------------------------------- /app/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/encoding.go -------------------------------------------------------------------------------- /app/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/export.go -------------------------------------------------------------------------------- /app/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/genesis.go -------------------------------------------------------------------------------- /app/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/logger.go -------------------------------------------------------------------------------- /app/params/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/params/doc.go -------------------------------------------------------------------------------- /app/params/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/params/encoding.go -------------------------------------------------------------------------------- /app/params/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/params/params.go -------------------------------------------------------------------------------- /app/params/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/params/proto.go -------------------------------------------------------------------------------- /app/params/weights.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/params/weights.go -------------------------------------------------------------------------------- /app/sim_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/sim_test.go -------------------------------------------------------------------------------- /app/test_access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/test_access.go -------------------------------------------------------------------------------- /app/test_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/test_helpers.go -------------------------------------------------------------------------------- /app/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/bouncybulldog/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/bouncybulldog/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/recover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/recover.go -------------------------------------------------------------------------------- /app/upgrades/testnet/121/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/testnet/121/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/testnet/alpha11/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/testnet/alpha11/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/testnet/alpha13/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/testnet/alpha13/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/testnet/alpha7/constant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/testnet/alpha7/constant.go -------------------------------------------------------------------------------- /app/upgrades/testnet/alpha7/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/testnet/alpha7/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/testnet/beta6/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/testnet/beta6/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/testnet/beta7/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/testnet/beta7/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/testnet/v1.2.0-alpha.6/constant.go: -------------------------------------------------------------------------------- 1 | package v120alpha6 2 | 3 | const ( 4 | UpgradeName = "Infra & Storage Deals" 5 | ) 6 | -------------------------------------------------------------------------------- /app/upgrades/testnet/v1.2.0-alpha.6/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/testnet/v1.2.0-alpha.6/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/v3/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v3/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/v4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v4/README.md -------------------------------------------------------------------------------- /app/upgrades/v4/commont_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v4/commont_test.go -------------------------------------------------------------------------------- /app/upgrades/v4/flow_post_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v4/flow_post_file.png -------------------------------------------------------------------------------- /app/upgrades/v4/upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v4/upgrade_test.go -------------------------------------------------------------------------------- /app/upgrades/v4/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v4/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/v410/commont_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v410/commont_test.go -------------------------------------------------------------------------------- /app/upgrades/v410/upgrade_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v410/upgrade_data -------------------------------------------------------------------------------- /app/upgrades/v410/upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v410/upgrade_test.go -------------------------------------------------------------------------------- /app/upgrades/v410/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v410/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/v410beta/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v410beta/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/v410testnet/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v410testnet/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/v420/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v420/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/v430/commont_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v430/commont_test.go -------------------------------------------------------------------------------- /app/upgrades/v430/upgrade_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v430/upgrade_data -------------------------------------------------------------------------------- /app/upgrades/v430/upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v430/upgrade_test.go -------------------------------------------------------------------------------- /app/upgrades/v430/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v430/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/v440/commont_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v440/commont_test.go -------------------------------------------------------------------------------- /app/upgrades/v440/upgrade_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v440/upgrade_data -------------------------------------------------------------------------------- /app/upgrades/v440/upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v440/upgrade_test.go -------------------------------------------------------------------------------- /app/upgrades/v440/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v440/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/v450/commont_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v450/commont_test.go -------------------------------------------------------------------------------- /app/upgrades/v450/upgrade_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v450/upgrade_data -------------------------------------------------------------------------------- /app/upgrades/v450/upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v450/upgrade_test.go -------------------------------------------------------------------------------- /app/upgrades/v450/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v450/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/v460/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v460/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/v4alpha1/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v4alpha1/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/v4alpha3/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v4alpha3/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/v4alpha5/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v4alpha5/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/v500/logo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v500/logo.txt -------------------------------------------------------------------------------- /app/upgrades/v500/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v500/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/v500testnet/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v500testnet/upgrades.go -------------------------------------------------------------------------------- /app/upgrades/v510/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/upgrades/v510/upgrades.go -------------------------------------------------------------------------------- /app/wasm_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/app/wasm_config.go -------------------------------------------------------------------------------- /assets/jackal_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/assets/jackal_logo.png -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/banner.png -------------------------------------------------------------------------------- /cmd/canined/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/cmd/canined/README.md -------------------------------------------------------------------------------- /cmd/canined/genaccounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/cmd/canined/genaccounts.go -------------------------------------------------------------------------------- /cmd/canined/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/cmd/canined/main.go -------------------------------------------------------------------------------- /cmd/canined/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/cmd/canined/root.go -------------------------------------------------------------------------------- /cmd/canined/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/cmd/canined/tx.go -------------------------------------------------------------------------------- /cmd/canined/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/cmd/canined/types.go -------------------------------------------------------------------------------- /cmd/canined/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/cmd/canined/utils.go -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/config.yml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/docs/config.json -------------------------------------------------------------------------------- /docs/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/docs/docs.go -------------------------------------------------------------------------------- /docs/openapiconsole/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/docs/openapiconsole/console.go -------------------------------------------------------------------------------- /docs/openapiconsole/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/docs/openapiconsole/index.tpl -------------------------------------------------------------------------------- /docs/proto/proto-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/docs/proto/proto-docs.md -------------------------------------------------------------------------------- /docs/proto/proto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/docs/proto/proto.md -------------------------------------------------------------------------------- /docs/proto/protodoc-markdown.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/docs/proto/protodoc-markdown.tmpl -------------------------------------------------------------------------------- /docs/swagger-ui/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/docs/swagger-ui/swagger.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/go.sum -------------------------------------------------------------------------------- /proto/buf.gen.gogo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/buf.gen.gogo.yaml -------------------------------------------------------------------------------- /proto/buf.gen.swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/buf.gen.swagger.yaml -------------------------------------------------------------------------------- /proto/buf.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/buf.lock -------------------------------------------------------------------------------- /proto/buf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/buf.md -------------------------------------------------------------------------------- /proto/buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/buf.yaml -------------------------------------------------------------------------------- /proto/canine_chain/filetree/files.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/filetree/files.proto -------------------------------------------------------------------------------- /proto/canine_chain/filetree/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/filetree/genesis.proto -------------------------------------------------------------------------------- /proto/canine_chain/filetree/params.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/filetree/params.proto -------------------------------------------------------------------------------- /proto/canine_chain/filetree/pubkey.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/filetree/pubkey.proto -------------------------------------------------------------------------------- /proto/canine_chain/filetree/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/filetree/query.proto -------------------------------------------------------------------------------- /proto/canine_chain/filetree/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/filetree/tx.proto -------------------------------------------------------------------------------- /proto/canine_chain/jklmint/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/jklmint/genesis.proto -------------------------------------------------------------------------------- /proto/canine_chain/jklmint/minted_block.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/jklmint/minted_block.proto -------------------------------------------------------------------------------- /proto/canine_chain/jklmint/params.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/jklmint/params.proto -------------------------------------------------------------------------------- /proto/canine_chain/jklmint/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/jklmint/query.proto -------------------------------------------------------------------------------- /proto/canine_chain/jklmint/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/jklmint/tx.proto -------------------------------------------------------------------------------- /proto/canine_chain/notifications/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/notifications/genesis.proto -------------------------------------------------------------------------------- /proto/canine_chain/notifications/notification.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/notifications/notification.proto -------------------------------------------------------------------------------- /proto/canine_chain/notifications/params.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/notifications/params.proto -------------------------------------------------------------------------------- /proto/canine_chain/notifications/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/notifications/query.proto -------------------------------------------------------------------------------- /proto/canine_chain/notifications/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/notifications/tx.proto -------------------------------------------------------------------------------- /proto/canine_chain/oracle/feed.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/oracle/feed.proto -------------------------------------------------------------------------------- /proto/canine_chain/oracle/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/oracle/genesis.proto -------------------------------------------------------------------------------- /proto/canine_chain/oracle/params.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/oracle/params.proto -------------------------------------------------------------------------------- /proto/canine_chain/oracle/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/oracle/query.proto -------------------------------------------------------------------------------- /proto/canine_chain/oracle/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/oracle/tx.proto -------------------------------------------------------------------------------- /proto/canine_chain/rns/bids.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/rns/bids.proto -------------------------------------------------------------------------------- /proto/canine_chain/rns/forsale.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/rns/forsale.proto -------------------------------------------------------------------------------- /proto/canine_chain/rns/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/rns/genesis.proto -------------------------------------------------------------------------------- /proto/canine_chain/rns/init.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/rns/init.proto -------------------------------------------------------------------------------- /proto/canine_chain/rns/names.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/rns/names.proto -------------------------------------------------------------------------------- /proto/canine_chain/rns/params.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/rns/params.proto -------------------------------------------------------------------------------- /proto/canine_chain/rns/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/rns/query.proto -------------------------------------------------------------------------------- /proto/canine_chain/rns/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/rns/tx.proto -------------------------------------------------------------------------------- /proto/canine_chain/rns/whois.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/rns/whois.proto -------------------------------------------------------------------------------- /proto/canine_chain/storage/active_deals.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/storage/active_deals.proto -------------------------------------------------------------------------------- /proto/canine_chain/storage/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/storage/genesis.proto -------------------------------------------------------------------------------- /proto/canine_chain/storage/params.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/storage/params.proto -------------------------------------------------------------------------------- /proto/canine_chain/storage/payment_info.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/storage/payment_info.proto -------------------------------------------------------------------------------- /proto/canine_chain/storage/providers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/storage/providers.proto -------------------------------------------------------------------------------- /proto/canine_chain/storage/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/storage/query.proto -------------------------------------------------------------------------------- /proto/canine_chain/storage/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/proto/canine_chain/storage/tx.proto -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/auto-testnet/ValidatorDockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/auto-testnet/ValidatorDockerfile -------------------------------------------------------------------------------- /scripts/auto-testnet/genesis-validator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/auto-testnet/genesis-validator.sh -------------------------------------------------------------------------------- /scripts/auto-testnet/init-subnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/auto-testnet/init-subnet.sh -------------------------------------------------------------------------------- /scripts/auto-testnet/validator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/auto-testnet/validator.sh -------------------------------------------------------------------------------- /scripts/auto-testnet/wipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/auto-testnet/wipe.sh -------------------------------------------------------------------------------- /scripts/bulk-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/bulk-upload.sh -------------------------------------------------------------------------------- /scripts/cosmovisor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/cosmovisor.sh -------------------------------------------------------------------------------- /scripts/devnet-ica.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/devnet-ica.sh -------------------------------------------------------------------------------- /scripts/dummy_data/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/dummy_data/1.png -------------------------------------------------------------------------------- /scripts/dummy_data/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/dummy_data/2.png -------------------------------------------------------------------------------- /scripts/dummy_data/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/dummy_data/3.png -------------------------------------------------------------------------------- /scripts/dummy_data/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/dummy_data/4.png -------------------------------------------------------------------------------- /scripts/dummy_data/5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/dummy_data/5.svg -------------------------------------------------------------------------------- /scripts/dummy_data/6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/dummy_data/6.wav -------------------------------------------------------------------------------- /scripts/dummy_data/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/dummy_data/test.txt -------------------------------------------------------------------------------- /scripts/mockgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/mockgen.sh -------------------------------------------------------------------------------- /scripts/multinode-local-testnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/multinode-local-testnet.sh -------------------------------------------------------------------------------- /scripts/protoc-swagger-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/protoc-swagger-gen.sh -------------------------------------------------------------------------------- /scripts/protocgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/protocgen.sh -------------------------------------------------------------------------------- /scripts/protoformat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/protoformat.sh -------------------------------------------------------------------------------- /scripts/protolint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/protolint.sh -------------------------------------------------------------------------------- /scripts/release-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/release-setup.sh -------------------------------------------------------------------------------- /scripts/run-upgrade-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/run-upgrade-node.sh -------------------------------------------------------------------------------- /scripts/start-provider-openroute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/start-provider-openroute.sh -------------------------------------------------------------------------------- /scripts/start-provider.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/start-provider.sh -------------------------------------------------------------------------------- /scripts/test-attest-w-upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/test-attest-w-upgrade.sh -------------------------------------------------------------------------------- /scripts/test-attest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/test-attest.sh -------------------------------------------------------------------------------- /scripts/test-node-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/test-node-dev.sh -------------------------------------------------------------------------------- /scripts/test-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/test-node.sh -------------------------------------------------------------------------------- /scripts/test-provider.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/test-provider.sh -------------------------------------------------------------------------------- /scripts/test-sequoia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/test-sequoia.sh -------------------------------------------------------------------------------- /scripts/upgrade-test-mainnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/upgrade-test-mainnet.sh -------------------------------------------------------------------------------- /scripts/upgrade-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/scripts/upgrade-test.sh -------------------------------------------------------------------------------- /testutil/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/testutil/context.go -------------------------------------------------------------------------------- /testutil/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/testutil/logger.go -------------------------------------------------------------------------------- /testutil/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/testutil/misc.go -------------------------------------------------------------------------------- /types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/types/keys.go -------------------------------------------------------------------------------- /types/module/testutil/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/types/module/testutil/codec.go -------------------------------------------------------------------------------- /types/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/types/utils.go -------------------------------------------------------------------------------- /upgrades/gov-props/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/upgrades/gov-props/convert.py -------------------------------------------------------------------------------- /upgrades/gov-props/econv2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/upgrades/gov-props/econv2.json -------------------------------------------------------------------------------- /upgrades/gov-props/econv2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/upgrades/gov-props/econv2.md -------------------------------------------------------------------------------- /upgrades/gov-props/v1.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/upgrades/gov-props/v1.2.0.md -------------------------------------------------------------------------------- /upgrades/gov-props/v2.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/upgrades/gov-props/v2.0.0.md -------------------------------------------------------------------------------- /upgrades/gov-props/v3.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/upgrades/gov-props/v3.4.0.md -------------------------------------------------------------------------------- /upgrades/gov-props/v4.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/upgrades/gov-props/v4.0.0.md -------------------------------------------------------------------------------- /upgrades/v1.1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/upgrades/v1.1.2.md -------------------------------------------------------------------------------- /upgrades/v1.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/upgrades/v1.2.0.md -------------------------------------------------------------------------------- /upgrades/v2.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/upgrades/v2.0.0.md -------------------------------------------------------------------------------- /upgrades/v4.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/upgrades/v4.0.0.md -------------------------------------------------------------------------------- /wasmbinding/bindings/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/wasmbinding/bindings/msg.go -------------------------------------------------------------------------------- /wasmbinding/filetree_messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/wasmbinding/filetree_messages.go -------------------------------------------------------------------------------- /wasmbinding/message_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/wasmbinding/message_plugin.go -------------------------------------------------------------------------------- /wasmbinding/notifications_messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/wasmbinding/notifications_messages.go -------------------------------------------------------------------------------- /wasmbinding/storage_messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/wasmbinding/storage_messages.go -------------------------------------------------------------------------------- /wasmbinding/wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/wasmbinding/wasm.go -------------------------------------------------------------------------------- /x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/README.md -------------------------------------------------------------------------------- /x/filetree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/README.md -------------------------------------------------------------------------------- /x/filetree/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/client/cli/query.go -------------------------------------------------------------------------------- /x/filetree/client/cli/query_files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/client/cli/query_files.go -------------------------------------------------------------------------------- /x/filetree/client/cli/query_get_keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/client/cli/query_get_keys.go -------------------------------------------------------------------------------- /x/filetree/client/cli/query_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/client/cli/query_params.go -------------------------------------------------------------------------------- /x/filetree/client/cli/query_pubkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/client/cli/query_pubkey.go -------------------------------------------------------------------------------- /x/filetree/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/client/cli/tx.go -------------------------------------------------------------------------------- /x/filetree/client/cli/tx_add_editors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/client/cli/tx_add_editors.go -------------------------------------------------------------------------------- /x/filetree/client/cli/tx_add_viewers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/client/cli/tx_add_viewers.go -------------------------------------------------------------------------------- /x/filetree/client/cli/tx_change_owner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/client/cli/tx_change_owner.go -------------------------------------------------------------------------------- /x/filetree/client/cli/tx_delete_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/client/cli/tx_delete_file.go -------------------------------------------------------------------------------- /x/filetree/client/cli/tx_make_root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/client/cli/tx_make_root.go -------------------------------------------------------------------------------- /x/filetree/client/cli/tx_post_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/client/cli/tx_post_file.go -------------------------------------------------------------------------------- /x/filetree/client/cli/tx_postkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/client/cli/tx_postkey.go -------------------------------------------------------------------------------- /x/filetree/client/cli/tx_remove_editors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/client/cli/tx_remove_editors.go -------------------------------------------------------------------------------- /x/filetree/client/cli/tx_remove_viewers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/client/cli/tx_remove_viewers.go -------------------------------------------------------------------------------- /x/filetree/client/cli/tx_reset_editors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/client/cli/tx_reset_editors.go -------------------------------------------------------------------------------- /x/filetree/client/cli/tx_reset_viewers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/client/cli/tx_reset_viewers.go -------------------------------------------------------------------------------- /x/filetree/client/cli/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/client/cli/utils.go -------------------------------------------------------------------------------- /x/filetree/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/genesis.go -------------------------------------------------------------------------------- /x/filetree/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/handler.go -------------------------------------------------------------------------------- /x/filetree/keeper/access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/access.go -------------------------------------------------------------------------------- /x/filetree/keeper/access_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/access_test.go -------------------------------------------------------------------------------- /x/filetree/keeper/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/common_test.go -------------------------------------------------------------------------------- /x/filetree/keeper/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/files.go -------------------------------------------------------------------------------- /x/filetree/keeper/files_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/files_test.go -------------------------------------------------------------------------------- /x/filetree/keeper/grpc_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/grpc_query.go -------------------------------------------------------------------------------- /x/filetree/keeper/grpc_query_files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/grpc_query_files.go -------------------------------------------------------------------------------- /x/filetree/keeper/grpc_query_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/grpc_query_params.go -------------------------------------------------------------------------------- /x/filetree/keeper/grpc_query_pubkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/grpc_query_pubkey.go -------------------------------------------------------------------------------- /x/filetree/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/keeper.go -------------------------------------------------------------------------------- /x/filetree/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/filetree/keeper/marshalling_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/marshalling_test.go -------------------------------------------------------------------------------- /x/filetree/keeper/migrations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/migrations.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_add_editors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_add_editors.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_add_editors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_add_editors_test.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_add_viewers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_add_viewers.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_add_viewers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_add_viewers_test.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_change_owner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_change_owner.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_change_owner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_change_owner_test.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_delete_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_delete_file.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_delete_file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_delete_file_test.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_make_root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_make_root.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_make_root_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_make_root_test.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_post_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_post_file.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_post_file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_post_file_test.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_post_key_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_post_key_test.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_postkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_postkey.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_remove_editors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_remove_editors.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_remove_editors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_remove_editors_test.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_remove_viewers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_remove_viewers.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_remove_viewers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_remove_viewers_test.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_reset_editors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_reset_editors.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_reset_editors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_reset_editors_test.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_reset_viewers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_reset_viewers.go -------------------------------------------------------------------------------- /x/filetree/keeper/msg_server_reset_viewers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/msg_server_reset_viewers_test.go -------------------------------------------------------------------------------- /x/filetree/keeper/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/params.go -------------------------------------------------------------------------------- /x/filetree/keeper/pubkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/pubkey.go -------------------------------------------------------------------------------- /x/filetree/keeper/pubkey_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/keeper/pubkey_test.go -------------------------------------------------------------------------------- /x/filetree/legacy/v2/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/legacy/v2/store.go -------------------------------------------------------------------------------- /x/filetree/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/module.go -------------------------------------------------------------------------------- /x/filetree/module_simulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/module_simulation.go -------------------------------------------------------------------------------- /x/filetree/simulation/add_editors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/simulation/add_editors.go -------------------------------------------------------------------------------- /x/filetree/simulation/add_viewers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/simulation/add_viewers.go -------------------------------------------------------------------------------- /x/filetree/simulation/change_owner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/simulation/change_owner.go -------------------------------------------------------------------------------- /x/filetree/simulation/delete_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/simulation/delete_file.go -------------------------------------------------------------------------------- /x/filetree/simulation/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/simulation/helpers.go -------------------------------------------------------------------------------- /x/filetree/simulation/make_root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/simulation/make_root.go -------------------------------------------------------------------------------- /x/filetree/simulation/post_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/simulation/post_file.go -------------------------------------------------------------------------------- /x/filetree/simulation/postkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/simulation/postkey.go -------------------------------------------------------------------------------- /x/filetree/simulation/remove_editors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/simulation/remove_editors.go -------------------------------------------------------------------------------- /x/filetree/simulation/remove_viewers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/simulation/remove_viewers.go -------------------------------------------------------------------------------- /x/filetree/simulation/reset_editors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/simulation/reset_editors.go -------------------------------------------------------------------------------- /x/filetree/simulation/reset_viewers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/simulation/reset_viewers.go -------------------------------------------------------------------------------- /x/filetree/simulation/simap.go: -------------------------------------------------------------------------------- 1 | package simulation 2 | -------------------------------------------------------------------------------- /x/filetree/simulation/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/simulation/utils.go -------------------------------------------------------------------------------- /x/filetree/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/codec.go -------------------------------------------------------------------------------- /x/filetree/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/errors.go -------------------------------------------------------------------------------- /x/filetree/types/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/events.go -------------------------------------------------------------------------------- /x/filetree/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/expected_keepers.go -------------------------------------------------------------------------------- /x/filetree/types/files.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/files.pb.go -------------------------------------------------------------------------------- /x/filetree/types/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/genesis.go -------------------------------------------------------------------------------- /x/filetree/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/genesis.pb.go -------------------------------------------------------------------------------- /x/filetree/types/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/genesis_test.go -------------------------------------------------------------------------------- /x/filetree/types/key_files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/key_files.go -------------------------------------------------------------------------------- /x/filetree/types/key_pubkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/key_pubkey.go -------------------------------------------------------------------------------- /x/filetree/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/keys.go -------------------------------------------------------------------------------- /x/filetree/types/merkle-paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/merkle-paths.go -------------------------------------------------------------------------------- /x/filetree/types/merkle-paths_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/merkle-paths_test.go -------------------------------------------------------------------------------- /x/filetree/types/message_add_editors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/message_add_editors.go -------------------------------------------------------------------------------- /x/filetree/types/message_add_editors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/message_add_editors_test.go -------------------------------------------------------------------------------- /x/filetree/types/message_add_viewers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/message_add_viewers.go -------------------------------------------------------------------------------- /x/filetree/types/message_add_viewers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/message_add_viewers_test.go -------------------------------------------------------------------------------- /x/filetree/types/message_change_owner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/message_change_owner.go -------------------------------------------------------------------------------- /x/filetree/types/message_change_owner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/message_change_owner_test.go -------------------------------------------------------------------------------- /x/filetree/types/message_delete_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/message_delete_file.go -------------------------------------------------------------------------------- /x/filetree/types/message_delete_file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/message_delete_file_test.go -------------------------------------------------------------------------------- /x/filetree/types/message_make_rootv2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/message_make_rootv2.go -------------------------------------------------------------------------------- /x/filetree/types/message_post_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/message_post_file.go -------------------------------------------------------------------------------- /x/filetree/types/message_post_file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/message_post_file_test.go -------------------------------------------------------------------------------- /x/filetree/types/message_postkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/message_postkey.go -------------------------------------------------------------------------------- /x/filetree/types/message_postkey_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/message_postkey_test.go -------------------------------------------------------------------------------- /x/filetree/types/message_remove_editors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/message_remove_editors.go -------------------------------------------------------------------------------- /x/filetree/types/message_remove_editors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/message_remove_editors_test.go -------------------------------------------------------------------------------- /x/filetree/types/message_remove_viewers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/message_remove_viewers.go -------------------------------------------------------------------------------- /x/filetree/types/message_remove_viewers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/message_remove_viewers_test.go -------------------------------------------------------------------------------- /x/filetree/types/message_reset_editors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/message_reset_editors.go -------------------------------------------------------------------------------- /x/filetree/types/message_reset_editors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/message_reset_editors_test.go -------------------------------------------------------------------------------- /x/filetree/types/message_reset_viewers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/message_reset_viewers.go -------------------------------------------------------------------------------- /x/filetree/types/message_reset_viewers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/message_reset_viewers_test.go -------------------------------------------------------------------------------- /x/filetree/types/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/params.go -------------------------------------------------------------------------------- /x/filetree/types/params.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/params.pb.go -------------------------------------------------------------------------------- /x/filetree/types/pubkey.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/pubkey.pb.go -------------------------------------------------------------------------------- /x/filetree/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/query.pb.go -------------------------------------------------------------------------------- /x/filetree/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/filetree/types/test_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/test_helpers.go -------------------------------------------------------------------------------- /x/filetree/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/filetree/types/tx.pb.go -------------------------------------------------------------------------------- /x/filetree/types/types.go: -------------------------------------------------------------------------------- 1 | package types 2 | -------------------------------------------------------------------------------- /x/jklmint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/README.md -------------------------------------------------------------------------------- /x/jklmint/abci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/abci.go -------------------------------------------------------------------------------- /x/jklmint/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/client/cli/query.go -------------------------------------------------------------------------------- /x/jklmint/client/cli/query_get_inflation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/client/cli/query_get_inflation.go -------------------------------------------------------------------------------- /x/jklmint/client/cli/query_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/client/cli/query_params.go -------------------------------------------------------------------------------- /x/jklmint/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/client/cli/tx.go -------------------------------------------------------------------------------- /x/jklmint/exported/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/exported/exported.go -------------------------------------------------------------------------------- /x/jklmint/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/genesis.go -------------------------------------------------------------------------------- /x/jklmint/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/genesis_test.go -------------------------------------------------------------------------------- /x/jklmint/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/handler.go -------------------------------------------------------------------------------- /x/jklmint/keeper/grpc_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/keeper/grpc_query.go -------------------------------------------------------------------------------- /x/jklmint/keeper/grpc_query_inflation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/keeper/grpc_query_inflation.go -------------------------------------------------------------------------------- /x/jklmint/keeper/grpc_query_minted.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/keeper/grpc_query_minted.go -------------------------------------------------------------------------------- /x/jklmint/keeper/grpc_query_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/keeper/grpc_query_params.go -------------------------------------------------------------------------------- /x/jklmint/keeper/grpc_query_params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/keeper/grpc_query_params_test.go -------------------------------------------------------------------------------- /x/jklmint/keeper/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/keeper/integration_test.go -------------------------------------------------------------------------------- /x/jklmint/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/keeper/keeper.go -------------------------------------------------------------------------------- /x/jklmint/keeper/migrations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/keeper/migrations.go -------------------------------------------------------------------------------- /x/jklmint/keeper/mint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/keeper/mint.go -------------------------------------------------------------------------------- /x/jklmint/keeper/mint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/keeper/mint_test.go -------------------------------------------------------------------------------- /x/jklmint/keeper/minted_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/keeper/minted_block.go -------------------------------------------------------------------------------- /x/jklmint/keeper/msg_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/keeper/msg_server.go -------------------------------------------------------------------------------- /x/jklmint/keeper/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/keeper/params.go -------------------------------------------------------------------------------- /x/jklmint/keeper/querier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/keeper/querier.go -------------------------------------------------------------------------------- /x/jklmint/legacy/v4/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/legacy/v4/params.go -------------------------------------------------------------------------------- /x/jklmint/legacy/v4/params.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/legacy/v4/params.pb.go -------------------------------------------------------------------------------- /x/jklmint/legacy/v4/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/legacy/v4/store.go -------------------------------------------------------------------------------- /x/jklmint/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/module.go -------------------------------------------------------------------------------- /x/jklmint/module_simulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/module_simulation.go -------------------------------------------------------------------------------- /x/jklmint/simulation/simap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/simulation/simap.go -------------------------------------------------------------------------------- /x/jklmint/types/account_names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/types/account_names.go -------------------------------------------------------------------------------- /x/jklmint/types/account_names_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/types/account_names_test.go -------------------------------------------------------------------------------- /x/jklmint/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/types/codec.go -------------------------------------------------------------------------------- /x/jklmint/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/types/errors.go -------------------------------------------------------------------------------- /x/jklmint/types/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/types/events.go -------------------------------------------------------------------------------- /x/jklmint/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/types/expected_keepers.go -------------------------------------------------------------------------------- /x/jklmint/types/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/types/genesis.go -------------------------------------------------------------------------------- /x/jklmint/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/types/genesis.pb.go -------------------------------------------------------------------------------- /x/jklmint/types/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/types/genesis_test.go -------------------------------------------------------------------------------- /x/jklmint/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/types/keys.go -------------------------------------------------------------------------------- /x/jklmint/types/minted_block.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/types/minted_block.pb.go -------------------------------------------------------------------------------- /x/jklmint/types/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/types/params.go -------------------------------------------------------------------------------- /x/jklmint/types/params.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/types/params.pb.go -------------------------------------------------------------------------------- /x/jklmint/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/types/query.pb.go -------------------------------------------------------------------------------- /x/jklmint/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/jklmint/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/types/tx.pb.go -------------------------------------------------------------------------------- /x/jklmint/types/types.go: -------------------------------------------------------------------------------- 1 | package types 2 | -------------------------------------------------------------------------------- /x/jklmint/utils/mint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/utils/mint.go -------------------------------------------------------------------------------- /x/jklmint/utils/mint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/jklmint/utils/mint_test.go -------------------------------------------------------------------------------- /x/notifications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/README.md -------------------------------------------------------------------------------- /x/notifications/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/client/cli/query.go -------------------------------------------------------------------------------- /x/notifications/client/cli/query_notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/client/cli/query_notifications.go -------------------------------------------------------------------------------- /x/notifications/client/cli/query_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/client/cli/query_params.go -------------------------------------------------------------------------------- /x/notifications/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/client/cli/tx.go -------------------------------------------------------------------------------- /x/notifications/client/cli/tx_block_senders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/client/cli/tx_block_senders.go -------------------------------------------------------------------------------- /x/notifications/client/cli/tx_notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/client/cli/tx_notifications.go -------------------------------------------------------------------------------- /x/notifications/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/genesis.go -------------------------------------------------------------------------------- /x/notifications/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/handler.go -------------------------------------------------------------------------------- /x/notifications/keeper/blocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/keeper/blocks.go -------------------------------------------------------------------------------- /x/notifications/keeper/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/keeper/common_test.go -------------------------------------------------------------------------------- /x/notifications/keeper/grpc_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/keeper/grpc_query.go -------------------------------------------------------------------------------- /x/notifications/keeper/grpc_query_notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/keeper/grpc_query_notifications.go -------------------------------------------------------------------------------- /x/notifications/keeper/grpc_query_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/keeper/grpc_query_params.go -------------------------------------------------------------------------------- /x/notifications/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/keeper/keeper.go -------------------------------------------------------------------------------- /x/notifications/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/notifications/keeper/migrations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/keeper/migrations.go -------------------------------------------------------------------------------- /x/notifications/keeper/msg_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/keeper/msg_server.go -------------------------------------------------------------------------------- /x/notifications/keeper/msg_server_block_senders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/keeper/msg_server_block_senders.go -------------------------------------------------------------------------------- /x/notifications/keeper/msg_server_block_senders_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/keeper/msg_server_block_senders_test.go -------------------------------------------------------------------------------- /x/notifications/keeper/msg_server_create_notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/keeper/msg_server_create_notifications.go -------------------------------------------------------------------------------- /x/notifications/keeper/msg_server_create_notifications_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/keeper/msg_server_create_notifications_test.go -------------------------------------------------------------------------------- /x/notifications/keeper/msg_server_delete_notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/keeper/msg_server_delete_notifications.go -------------------------------------------------------------------------------- /x/notifications/keeper/msg_server_delete_notifications_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/keeper/msg_server_delete_notifications_test.go -------------------------------------------------------------------------------- /x/notifications/keeper/notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/keeper/notifications.go -------------------------------------------------------------------------------- /x/notifications/keeper/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/keeper/params.go -------------------------------------------------------------------------------- /x/notifications/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/module.go -------------------------------------------------------------------------------- /x/notifications/module_simulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/module_simulation.go -------------------------------------------------------------------------------- /x/notifications/simulation/block_senders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/simulation/block_senders.go -------------------------------------------------------------------------------- /x/notifications/simulation/notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/simulation/notifications.go -------------------------------------------------------------------------------- /x/notifications/simulation/simap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/simulation/simap.go -------------------------------------------------------------------------------- /x/notifications/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/types/codec.go -------------------------------------------------------------------------------- /x/notifications/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/types/errors.go -------------------------------------------------------------------------------- /x/notifications/types/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/types/events.go -------------------------------------------------------------------------------- /x/notifications/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/types/expected_keepers.go -------------------------------------------------------------------------------- /x/notifications/types/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/types/genesis.go -------------------------------------------------------------------------------- /x/notifications/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/types/genesis.pb.go -------------------------------------------------------------------------------- /x/notifications/types/key_notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/types/key_notifications.go -------------------------------------------------------------------------------- /x/notifications/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/types/keys.go -------------------------------------------------------------------------------- /x/notifications/types/message_block_senders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/types/message_block_senders.go -------------------------------------------------------------------------------- /x/notifications/types/messages_notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/types/messages_notifications.go -------------------------------------------------------------------------------- /x/notifications/types/notification.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/types/notification.pb.go -------------------------------------------------------------------------------- /x/notifications/types/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/types/params.go -------------------------------------------------------------------------------- /x/notifications/types/params.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/types/params.pb.go -------------------------------------------------------------------------------- /x/notifications/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/types/query.pb.go -------------------------------------------------------------------------------- /x/notifications/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/notifications/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/notifications/types/tx.pb.go -------------------------------------------------------------------------------- /x/notifications/types/types.go: -------------------------------------------------------------------------------- 1 | package types 2 | -------------------------------------------------------------------------------- /x/oracle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/README.md -------------------------------------------------------------------------------- /x/oracle/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/client/cli/query.go -------------------------------------------------------------------------------- /x/oracle/client/cli/query_feeds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/client/cli/query_feeds.go -------------------------------------------------------------------------------- /x/oracle/client/cli/query_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/client/cli/query_params.go -------------------------------------------------------------------------------- /x/oracle/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/client/cli/tx.go -------------------------------------------------------------------------------- /x/oracle/client/cli/tx_feeds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/client/cli/tx_feeds.go -------------------------------------------------------------------------------- /x/oracle/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/genesis.go -------------------------------------------------------------------------------- /x/oracle/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/handler.go -------------------------------------------------------------------------------- /x/oracle/keeper/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/keeper/common_test.go -------------------------------------------------------------------------------- /x/oracle/keeper/feeds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/keeper/feeds.go -------------------------------------------------------------------------------- /x/oracle/keeper/feeds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/keeper/feeds_test.go -------------------------------------------------------------------------------- /x/oracle/keeper/grpc_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/keeper/grpc_query.go -------------------------------------------------------------------------------- /x/oracle/keeper/grpc_query_feeds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/keeper/grpc_query_feeds.go -------------------------------------------------------------------------------- /x/oracle/keeper/grpc_query_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/keeper/grpc_query_params.go -------------------------------------------------------------------------------- /x/oracle/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/keeper/keeper.go -------------------------------------------------------------------------------- /x/oracle/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/oracle/keeper/migrations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/keeper/migrations.go -------------------------------------------------------------------------------- /x/oracle/keeper/msg_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/keeper/msg_server.go -------------------------------------------------------------------------------- /x/oracle/keeper/msg_server_feeds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/keeper/msg_server_feeds.go -------------------------------------------------------------------------------- /x/oracle/keeper/msg_server_feeds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/keeper/msg_server_feeds_test.go -------------------------------------------------------------------------------- /x/oracle/keeper/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/keeper/params.go -------------------------------------------------------------------------------- /x/oracle/legacy/v2/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/legacy/v2/store.go -------------------------------------------------------------------------------- /x/oracle/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/module.go -------------------------------------------------------------------------------- /x/oracle/module_simulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/module_simulation.go -------------------------------------------------------------------------------- /x/oracle/simulation/accept_bid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/simulation/accept_bid.go -------------------------------------------------------------------------------- /x/oracle/simulation/bid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/simulation/bid.go -------------------------------------------------------------------------------- /x/oracle/simulation/buy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/simulation/buy.go -------------------------------------------------------------------------------- /x/oracle/simulation/cancel_bid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/simulation/cancel_bid.go -------------------------------------------------------------------------------- /x/oracle/simulation/delist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/simulation/delist.go -------------------------------------------------------------------------------- /x/oracle/simulation/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/simulation/list.go -------------------------------------------------------------------------------- /x/oracle/simulation/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/simulation/register.go -------------------------------------------------------------------------------- /x/oracle/simulation/simap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/simulation/simap.go -------------------------------------------------------------------------------- /x/oracle/simulation/transfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/simulation/transfer.go -------------------------------------------------------------------------------- /x/oracle/testutil/expected_keepers_mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/testutil/expected_keepers_mocks.go -------------------------------------------------------------------------------- /x/oracle/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/types/codec.go -------------------------------------------------------------------------------- /x/oracle/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/types/expected_keepers.go -------------------------------------------------------------------------------- /x/oracle/types/feed.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/types/feed.pb.go -------------------------------------------------------------------------------- /x/oracle/types/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/types/genesis.go -------------------------------------------------------------------------------- /x/oracle/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/types/genesis.pb.go -------------------------------------------------------------------------------- /x/oracle/types/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/types/genesis_test.go -------------------------------------------------------------------------------- /x/oracle/types/key_feed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/types/key_feed.go -------------------------------------------------------------------------------- /x/oracle/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/types/keys.go -------------------------------------------------------------------------------- /x/oracle/types/message_create_feed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/types/message_create_feed.go -------------------------------------------------------------------------------- /x/oracle/types/message_create_feed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/types/message_create_feed_test.go -------------------------------------------------------------------------------- /x/oracle/types/message_update_feed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/types/message_update_feed.go -------------------------------------------------------------------------------- /x/oracle/types/message_update_feed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/types/message_update_feed_test.go -------------------------------------------------------------------------------- /x/oracle/types/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/types/params.go -------------------------------------------------------------------------------- /x/oracle/types/params.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/types/params.pb.go -------------------------------------------------------------------------------- /x/oracle/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/types/query.pb.go -------------------------------------------------------------------------------- /x/oracle/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/oracle/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/oracle/types/tx.pb.go -------------------------------------------------------------------------------- /x/rns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/README.md -------------------------------------------------------------------------------- /x/rns/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/client/cli/query.go -------------------------------------------------------------------------------- /x/rns/client/cli/query_bids.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/client/cli/query_bids.go -------------------------------------------------------------------------------- /x/rns/client/cli/query_forsale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/client/cli/query_forsale.go -------------------------------------------------------------------------------- /x/rns/client/cli/query_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/client/cli/query_init.go -------------------------------------------------------------------------------- /x/rns/client/cli/query_list_owned_names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/client/cli/query_list_owned_names.go -------------------------------------------------------------------------------- /x/rns/client/cli/query_names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/client/cli/query_names.go -------------------------------------------------------------------------------- /x/rns/client/cli/query_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/client/cli/query_params.go -------------------------------------------------------------------------------- /x/rns/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/client/cli/tx.go -------------------------------------------------------------------------------- /x/rns/client/cli/tx_accept_bid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/client/cli/tx_accept_bid.go -------------------------------------------------------------------------------- /x/rns/client/cli/tx_add_record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/client/cli/tx_add_record.go -------------------------------------------------------------------------------- /x/rns/client/cli/tx_addel_redcord.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/client/cli/tx_addel_redcord.go -------------------------------------------------------------------------------- /x/rns/client/cli/tx_bid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/client/cli/tx_bid.go -------------------------------------------------------------------------------- /x/rns/client/cli/tx_buy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/client/cli/tx_buy.go -------------------------------------------------------------------------------- /x/rns/client/cli/tx_cancel_bid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/client/cli/tx_cancel_bid.go -------------------------------------------------------------------------------- /x/rns/client/cli/tx_delist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/client/cli/tx_delist.go -------------------------------------------------------------------------------- /x/rns/client/cli/tx_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/client/cli/tx_init.go -------------------------------------------------------------------------------- /x/rns/client/cli/tx_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/client/cli/tx_list.go -------------------------------------------------------------------------------- /x/rns/client/cli/tx_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/client/cli/tx_register.go -------------------------------------------------------------------------------- /x/rns/client/cli/tx_transfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/client/cli/tx_transfer.go -------------------------------------------------------------------------------- /x/rns/client/cli/tx_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/client/cli/tx_update.go -------------------------------------------------------------------------------- /x/rns/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/genesis.go -------------------------------------------------------------------------------- /x/rns/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/handler.go -------------------------------------------------------------------------------- /x/rns/keeper/bidding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/bidding_test.go -------------------------------------------------------------------------------- /x/rns/keeper/bids.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/bids.go -------------------------------------------------------------------------------- /x/rns/keeper/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/common_test.go -------------------------------------------------------------------------------- /x/rns/keeper/forsale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/forsale.go -------------------------------------------------------------------------------- /x/rns/keeper/grpc_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/grpc_query.go -------------------------------------------------------------------------------- /x/rns/keeper/grpc_query_bids.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/grpc_query_bids.go -------------------------------------------------------------------------------- /x/rns/keeper/grpc_query_forsale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/grpc_query_forsale.go -------------------------------------------------------------------------------- /x/rns/keeper/grpc_query_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/grpc_query_init.go -------------------------------------------------------------------------------- /x/rns/keeper/grpc_query_list_owned_names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/grpc_query_list_owned_names.go -------------------------------------------------------------------------------- /x/rns/keeper/grpc_query_names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/grpc_query_names.go -------------------------------------------------------------------------------- /x/rns/keeper/grpc_query_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/grpc_query_params.go -------------------------------------------------------------------------------- /x/rns/keeper/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/init.go -------------------------------------------------------------------------------- /x/rns/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/keeper.go -------------------------------------------------------------------------------- /x/rns/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/rns/keeper/migrations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/migrations.go -------------------------------------------------------------------------------- /x/rns/keeper/msg_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/msg_server.go -------------------------------------------------------------------------------- /x/rns/keeper/msg_server_accept_bid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/msg_server_accept_bid.go -------------------------------------------------------------------------------- /x/rns/keeper/msg_server_add_record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/msg_server_add_record.go -------------------------------------------------------------------------------- /x/rns/keeper/msg_server_basics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/msg_server_basics_test.go -------------------------------------------------------------------------------- /x/rns/keeper/msg_server_bid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/msg_server_bid.go -------------------------------------------------------------------------------- /x/rns/keeper/msg_server_bidding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/msg_server_bidding_test.go -------------------------------------------------------------------------------- /x/rns/keeper/msg_server_buy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/msg_server_buy.go -------------------------------------------------------------------------------- /x/rns/keeper/msg_server_buy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/msg_server_buy_test.go -------------------------------------------------------------------------------- /x/rns/keeper/msg_server_cancel_bid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/msg_server_cancel_bid.go -------------------------------------------------------------------------------- /x/rns/keeper/msg_server_del_record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/msg_server_del_record.go -------------------------------------------------------------------------------- /x/rns/keeper/msg_server_delist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/msg_server_delist.go -------------------------------------------------------------------------------- /x/rns/keeper/msg_server_delist_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/msg_server_delist_test.go -------------------------------------------------------------------------------- /x/rns/keeper/msg_server_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/msg_server_init.go -------------------------------------------------------------------------------- /x/rns/keeper/msg_server_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/msg_server_list.go -------------------------------------------------------------------------------- /x/rns/keeper/msg_server_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/msg_server_list_test.go -------------------------------------------------------------------------------- /x/rns/keeper/msg_server_record_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/msg_server_record_test.go -------------------------------------------------------------------------------- /x/rns/keeper/msg_server_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/msg_server_register.go -------------------------------------------------------------------------------- /x/rns/keeper/msg_server_transfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/msg_server_transfer.go -------------------------------------------------------------------------------- /x/rns/keeper/msg_server_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/msg_server_update.go -------------------------------------------------------------------------------- /x/rns/keeper/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/names.go -------------------------------------------------------------------------------- /x/rns/keeper/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/params.go -------------------------------------------------------------------------------- /x/rns/keeper/record_test.go: -------------------------------------------------------------------------------- 1 | package keeper_test 2 | -------------------------------------------------------------------------------- /x/rns/keeper/register_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/register_test.go -------------------------------------------------------------------------------- /x/rns/keeper/selling_test.go: -------------------------------------------------------------------------------- 1 | package keeper_test 2 | -------------------------------------------------------------------------------- /x/rns/keeper/transfer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/transfer_test.go -------------------------------------------------------------------------------- /x/rns/keeper/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/utils.go -------------------------------------------------------------------------------- /x/rns/keeper/whois.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/keeper/whois.go -------------------------------------------------------------------------------- /x/rns/legacy/v2/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/legacy/v2/store.go -------------------------------------------------------------------------------- /x/rns/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/module.go -------------------------------------------------------------------------------- /x/rns/module_simulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/module_simulation.go -------------------------------------------------------------------------------- /x/rns/simulation/accept_bid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/simulation/accept_bid.go -------------------------------------------------------------------------------- /x/rns/simulation/add_record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/simulation/add_record.go -------------------------------------------------------------------------------- /x/rns/simulation/bid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/simulation/bid.go -------------------------------------------------------------------------------- /x/rns/simulation/buy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/simulation/buy.go -------------------------------------------------------------------------------- /x/rns/simulation/cancel_bid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/simulation/cancel_bid.go -------------------------------------------------------------------------------- /x/rns/simulation/del_record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/simulation/del_record.go -------------------------------------------------------------------------------- /x/rns/simulation/delist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/simulation/delist.go -------------------------------------------------------------------------------- /x/rns/simulation/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/simulation/genesis.go -------------------------------------------------------------------------------- /x/rns/simulation/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/simulation/list.go -------------------------------------------------------------------------------- /x/rns/simulation/param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/simulation/param.go -------------------------------------------------------------------------------- /x/rns/simulation/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/simulation/register.go -------------------------------------------------------------------------------- /x/rns/simulation/simap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/simulation/simap.go -------------------------------------------------------------------------------- /x/rns/simulation/transfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/simulation/transfer.go -------------------------------------------------------------------------------- /x/rns/testutil/expected_keepers_mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/testutil/expected_keepers_mocks.go -------------------------------------------------------------------------------- /x/rns/types/bids.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/bids.pb.go -------------------------------------------------------------------------------- /x/rns/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/codec.go -------------------------------------------------------------------------------- /x/rns/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/errors.go -------------------------------------------------------------------------------- /x/rns/types/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/events.go -------------------------------------------------------------------------------- /x/rns/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/expected_keepers.go -------------------------------------------------------------------------------- /x/rns/types/forsale.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/forsale.pb.go -------------------------------------------------------------------------------- /x/rns/types/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/genesis.go -------------------------------------------------------------------------------- /x/rns/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/genesis.pb.go -------------------------------------------------------------------------------- /x/rns/types/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/genesis_test.go -------------------------------------------------------------------------------- /x/rns/types/init.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/init.pb.go -------------------------------------------------------------------------------- /x/rns/types/key_bids.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/key_bids.go -------------------------------------------------------------------------------- /x/rns/types/key_forsale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/key_forsale.go -------------------------------------------------------------------------------- /x/rns/types/key_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/key_init.go -------------------------------------------------------------------------------- /x/rns/types/key_names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/key_names.go -------------------------------------------------------------------------------- /x/rns/types/key_whois.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/key_whois.go -------------------------------------------------------------------------------- /x/rns/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/keys.go -------------------------------------------------------------------------------- /x/rns/types/message_accept_bid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_accept_bid.go -------------------------------------------------------------------------------- /x/rns/types/message_accept_bid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_accept_bid_test.go -------------------------------------------------------------------------------- /x/rns/types/message_add_record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_add_record.go -------------------------------------------------------------------------------- /x/rns/types/message_add_record_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_add_record_test.go -------------------------------------------------------------------------------- /x/rns/types/message_addel_redcord.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_addel_redcord.go -------------------------------------------------------------------------------- /x/rns/types/message_addel_redcord_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_addel_redcord_test.go -------------------------------------------------------------------------------- /x/rns/types/message_bid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_bid.go -------------------------------------------------------------------------------- /x/rns/types/message_bid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_bid_test.go -------------------------------------------------------------------------------- /x/rns/types/message_buy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_buy.go -------------------------------------------------------------------------------- /x/rns/types/message_buy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_buy_test.go -------------------------------------------------------------------------------- /x/rns/types/message_cancel_bid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_cancel_bid.go -------------------------------------------------------------------------------- /x/rns/types/message_cancel_bid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_cancel_bid_test.go -------------------------------------------------------------------------------- /x/rns/types/message_delist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_delist.go -------------------------------------------------------------------------------- /x/rns/types/message_delist_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_delist_test.go -------------------------------------------------------------------------------- /x/rns/types/message_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_init.go -------------------------------------------------------------------------------- /x/rns/types/message_init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_init_test.go -------------------------------------------------------------------------------- /x/rns/types/message_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_list.go -------------------------------------------------------------------------------- /x/rns/types/message_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_list_test.go -------------------------------------------------------------------------------- /x/rns/types/message_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_register.go -------------------------------------------------------------------------------- /x/rns/types/message_register_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_register_name.go -------------------------------------------------------------------------------- /x/rns/types/message_register_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_register_test.go -------------------------------------------------------------------------------- /x/rns/types/message_set_primary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_set_primary.go -------------------------------------------------------------------------------- /x/rns/types/message_transfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_transfer.go -------------------------------------------------------------------------------- /x/rns/types/message_transfer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_transfer_test.go -------------------------------------------------------------------------------- /x/rns/types/message_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/message_update.go -------------------------------------------------------------------------------- /x/rns/types/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/names.go -------------------------------------------------------------------------------- /x/rns/types/names.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/names.pb.go -------------------------------------------------------------------------------- /x/rns/types/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/params.go -------------------------------------------------------------------------------- /x/rns/types/params.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/params.pb.go -------------------------------------------------------------------------------- /x/rns/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/query.pb.go -------------------------------------------------------------------------------- /x/rns/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/rns/types/tlds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/tlds.go -------------------------------------------------------------------------------- /x/rns/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/tx.pb.go -------------------------------------------------------------------------------- /x/rns/types/types.go: -------------------------------------------------------------------------------- 1 | package types 2 | -------------------------------------------------------------------------------- /x/rns/types/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/utils.go -------------------------------------------------------------------------------- /x/rns/types/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/utils_test.go -------------------------------------------------------------------------------- /x/rns/types/whois.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/rns/types/whois.pb.go -------------------------------------------------------------------------------- /x/storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/README.md -------------------------------------------------------------------------------- /x/storage/abci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/abci.go -------------------------------------------------------------------------------- /x/storage/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/query.go -------------------------------------------------------------------------------- /x/storage/client/cli/query_active_deals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/query_active_deals.go -------------------------------------------------------------------------------- /x/storage/client/cli/query_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/query_address.go -------------------------------------------------------------------------------- /x/storage/client/cli/query_attest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/query_attest.go -------------------------------------------------------------------------------- /x/storage/client/cli/query_check_price.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/query_check_price.go -------------------------------------------------------------------------------- /x/storage/client/cli/query_file_upload_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/query_file_upload_check.go -------------------------------------------------------------------------------- /x/storage/client/cli/query_find_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/query_find_file.go -------------------------------------------------------------------------------- /x/storage/client/cli/query_freespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/query_freespace.go -------------------------------------------------------------------------------- /x/storage/client/cli/query_get_client_free_space.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/query_get_client_free_space.go -------------------------------------------------------------------------------- /x/storage/client/cli/query_get_pay_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/query_get_pay_data.go -------------------------------------------------------------------------------- /x/storage/client/cli/query_miners.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/query_miners.go -------------------------------------------------------------------------------- /x/storage/client/cli/query_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/query_params.go -------------------------------------------------------------------------------- /x/storage/client/cli/query_pay_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/query_pay_info.go -------------------------------------------------------------------------------- /x/storage/client/cli/query_payment_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/query_payment_info.go -------------------------------------------------------------------------------- /x/storage/client/cli/query_storage_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/query_storage_stats.go -------------------------------------------------------------------------------- /x/storage/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/tx.go -------------------------------------------------------------------------------- /x/storage/client/cli/tx_buy_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/tx_buy_storage.go -------------------------------------------------------------------------------- /x/storage/client/cli/tx_cancel_contract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/tx_cancel_contract.go -------------------------------------------------------------------------------- /x/storage/client/cli/tx_claimer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/tx_claimer.go -------------------------------------------------------------------------------- /x/storage/client/cli/tx_init_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/tx_init_provider.go -------------------------------------------------------------------------------- /x/storage/client/cli/tx_post_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/tx_post_file.go -------------------------------------------------------------------------------- /x/storage/client/cli/tx_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/tx_provider.go -------------------------------------------------------------------------------- /x/storage/client/cli/tx_set_provider_ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/tx_set_provider_ip.go -------------------------------------------------------------------------------- /x/storage/client/cli/tx_set_provider_keybase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/tx_set_provider_keybase.go -------------------------------------------------------------------------------- /x/storage/client/cli/tx_set_provider_totalspace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/client/cli/tx_set_provider_totalspace.go -------------------------------------------------------------------------------- /x/storage/exported/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/exported/exported.go -------------------------------------------------------------------------------- /x/storage/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/genesis.go -------------------------------------------------------------------------------- /x/storage/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/handler.go -------------------------------------------------------------------------------- /x/storage/keeper/active_deals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/active_deals.go -------------------------------------------------------------------------------- /x/storage/keeper/attestation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/attestation_test.go -------------------------------------------------------------------------------- /x/storage/keeper/attestations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/attestations.go -------------------------------------------------------------------------------- /x/storage/keeper/collateral.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/collateral.go -------------------------------------------------------------------------------- /x/storage/keeper/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/common_test.go -------------------------------------------------------------------------------- /x/storage/keeper/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/files.go -------------------------------------------------------------------------------- /x/storage/keeper/files_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/files_test.go -------------------------------------------------------------------------------- /x/storage/keeper/gauges.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/gauges.go -------------------------------------------------------------------------------- /x/storage/keeper/grpc_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/grpc_query.go -------------------------------------------------------------------------------- /x/storage/keeper/grpc_query_active_deals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/grpc_query_active_deals.go -------------------------------------------------------------------------------- /x/storage/keeper/grpc_query_active_deals_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/grpc_query_active_deals_test.go -------------------------------------------------------------------------------- /x/storage/keeper/grpc_query_attestation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/grpc_query_attestation.go -------------------------------------------------------------------------------- /x/storage/keeper/grpc_query_file_upload_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/grpc_query_file_upload_check.go -------------------------------------------------------------------------------- /x/storage/keeper/grpc_query_find_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/grpc_query_find_file.go -------------------------------------------------------------------------------- /x/storage/keeper/grpc_query_find_file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/grpc_query_find_file_test.go -------------------------------------------------------------------------------- /x/storage/keeper/grpc_query_freespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/grpc_query_freespace.go -------------------------------------------------------------------------------- /x/storage/keeper/grpc_query_get_client_free_space.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/grpc_query_get_client_free_space.go -------------------------------------------------------------------------------- /x/storage/keeper/grpc_query_get_pay_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/grpc_query_get_pay_data.go -------------------------------------------------------------------------------- /x/storage/keeper/grpc_query_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/grpc_query_params.go -------------------------------------------------------------------------------- /x/storage/keeper/grpc_query_pay_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/grpc_query_pay_info.go -------------------------------------------------------------------------------- /x/storage/keeper/grpc_query_payment_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/grpc_query_payment_info.go -------------------------------------------------------------------------------- /x/storage/keeper/grpc_query_price_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/grpc_query_price_check.go -------------------------------------------------------------------------------- /x/storage/keeper/grpc_query_providers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/grpc_query_providers.go -------------------------------------------------------------------------------- /x/storage/keeper/grpc_query_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/grpc_query_report.go -------------------------------------------------------------------------------- /x/storage/keeper/grpc_query_storage_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/grpc_query_storage_stats.go -------------------------------------------------------------------------------- /x/storage/keeper/grpc_query_storage_stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/grpc_query_storage_stats_test.go -------------------------------------------------------------------------------- /x/storage/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/keeper.go -------------------------------------------------------------------------------- /x/storage/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/storage/keeper/migrations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/migrations.go -------------------------------------------------------------------------------- /x/storage/keeper/msg_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/msg_server.go -------------------------------------------------------------------------------- /x/storage/keeper/msg_server_attest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/msg_server_attest.go -------------------------------------------------------------------------------- /x/storage/keeper/msg_server_attest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/msg_server_attest_test.go -------------------------------------------------------------------------------- /x/storage/keeper/msg_server_buy_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/msg_server_buy_storage.go -------------------------------------------------------------------------------- /x/storage/keeper/msg_server_buy_storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/msg_server_buy_storage_test.go -------------------------------------------------------------------------------- /x/storage/keeper/msg_server_file_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/msg_server_file_delete.go -------------------------------------------------------------------------------- /x/storage/keeper/msg_server_file_delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/msg_server_file_delete_test.go -------------------------------------------------------------------------------- /x/storage/keeper/msg_server_init_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/msg_server_init_provider.go -------------------------------------------------------------------------------- /x/storage/keeper/msg_server_post_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/msg_server_post_file.go -------------------------------------------------------------------------------- /x/storage/keeper/msg_server_post_file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/msg_server_post_file_test.go -------------------------------------------------------------------------------- /x/storage/keeper/msg_server_postproof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/msg_server_postproof.go -------------------------------------------------------------------------------- /x/storage/keeper/msg_server_proofs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/msg_server_proofs_test.go -------------------------------------------------------------------------------- /x/storage/keeper/msg_server_provider_claim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/msg_server_provider_claim.go -------------------------------------------------------------------------------- /x/storage/keeper/msg_server_provider_claim_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/msg_server_provider_claim_test.go -------------------------------------------------------------------------------- /x/storage/keeper/msg_server_providers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/msg_server_providers_test.go -------------------------------------------------------------------------------- /x/storage/keeper/msg_server_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/msg_server_report.go -------------------------------------------------------------------------------- /x/storage/keeper/msg_server_report_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/msg_server_report_test.go -------------------------------------------------------------------------------- /x/storage/keeper/msg_server_set_provider_ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/msg_server_set_provider_ip.go -------------------------------------------------------------------------------- /x/storage/keeper/msg_server_set_provider_keybase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/msg_server_set_provider_keybase.go -------------------------------------------------------------------------------- /x/storage/keeper/msg_server_set_provider_totalspace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/msg_server_set_provider_totalspace.go -------------------------------------------------------------------------------- /x/storage/keeper/msg_server_upgrade_storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/msg_server_upgrade_storage_test.go -------------------------------------------------------------------------------- /x/storage/keeper/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/params.go -------------------------------------------------------------------------------- /x/storage/keeper/payment_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/payment_info.go -------------------------------------------------------------------------------- /x/storage/keeper/payment_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/payment_info_test.go -------------------------------------------------------------------------------- /x/storage/keeper/proof_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/proof_manager.go -------------------------------------------------------------------------------- /x/storage/keeper/proof_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/proof_manager_test.go -------------------------------------------------------------------------------- /x/storage/keeper/proofs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/proofs.go -------------------------------------------------------------------------------- /x/storage/keeper/providers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/providers.go -------------------------------------------------------------------------------- /x/storage/keeper/providers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/providers_test.go -------------------------------------------------------------------------------- /x/storage/keeper/report_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/report_test.go -------------------------------------------------------------------------------- /x/storage/keeper/reports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/reports.go -------------------------------------------------------------------------------- /x/storage/keeper/reward_tracker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/reward_tracker.go -------------------------------------------------------------------------------- /x/storage/keeper/rewards.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/rewards.go -------------------------------------------------------------------------------- /x/storage/keeper/rewards_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/rewards_test.go -------------------------------------------------------------------------------- /x/storage/keeper/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/utils.go -------------------------------------------------------------------------------- /x/storage/keeper/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/keeper/utils_test.go -------------------------------------------------------------------------------- /x/storage/legacy/paramUpgrade/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/legacy/paramUpgrade/store.go -------------------------------------------------------------------------------- /x/storage/legacy/v2/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/legacy/v2/store.go -------------------------------------------------------------------------------- /x/storage/legacy/v4/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/legacy/v4/store.go -------------------------------------------------------------------------------- /x/storage/legacy/v4/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/legacy/v4/types.go -------------------------------------------------------------------------------- /x/storage/legacy/v5/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/legacy/v5/store.go -------------------------------------------------------------------------------- /x/storage/legacy/v5/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/legacy/v5/types.go -------------------------------------------------------------------------------- /x/storage/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/module.go -------------------------------------------------------------------------------- /x/storage/module_simulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/module_simulation.go -------------------------------------------------------------------------------- /x/storage/simulation/buy_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/simulation/buy_storage.go -------------------------------------------------------------------------------- /x/storage/simulation/claimer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/simulation/claimer.go -------------------------------------------------------------------------------- /x/storage/simulation/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/simulation/genesis.go -------------------------------------------------------------------------------- /x/storage/simulation/init_miner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/simulation/init_miner.go -------------------------------------------------------------------------------- /x/storage/simulation/param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/simulation/param.go -------------------------------------------------------------------------------- /x/storage/simulation/set_miner_ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/simulation/set_miner_ip.go -------------------------------------------------------------------------------- /x/storage/simulation/set_miner_totalspace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/simulation/set_miner_totalspace.go -------------------------------------------------------------------------------- /x/storage/simulation/simap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/simulation/simap.go -------------------------------------------------------------------------------- /x/storage/simulation/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/simulation/utils.go -------------------------------------------------------------------------------- /x/storage/testutil/expected_keepers_mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/testutil/expected_keepers_mocks.go -------------------------------------------------------------------------------- /x/storage/types/active_deals.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/active_deals.pb.go -------------------------------------------------------------------------------- /x/storage/types/client_usage.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/client_usage.pb.go -------------------------------------------------------------------------------- /x/storage/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/codec.go -------------------------------------------------------------------------------- /x/storage/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/errors.go -------------------------------------------------------------------------------- /x/storage/types/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/events.go -------------------------------------------------------------------------------- /x/storage/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/expected_keepers.go -------------------------------------------------------------------------------- /x/storage/types/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/file.go -------------------------------------------------------------------------------- /x/storage/types/file_deal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/file_deal.go -------------------------------------------------------------------------------- /x/storage/types/file_deal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/file_deal_test.go -------------------------------------------------------------------------------- /x/storage/types/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/genesis.go -------------------------------------------------------------------------------- /x/storage/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/genesis.pb.go -------------------------------------------------------------------------------- /x/storage/types/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/genesis_test.go -------------------------------------------------------------------------------- /x/storage/types/key_client_usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/key_client_usage.go -------------------------------------------------------------------------------- /x/storage/types/key_files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/key_files.go -------------------------------------------------------------------------------- /x/storage/types/key_pay_blocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/key_pay_blocks.go -------------------------------------------------------------------------------- /x/storage/types/key_payment_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/key_payment_info.go -------------------------------------------------------------------------------- /x/storage/types/key_providers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/key_providers.go -------------------------------------------------------------------------------- /x/storage/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/keys.go -------------------------------------------------------------------------------- /x/storage/types/message_attest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/message_attest.go -------------------------------------------------------------------------------- /x/storage/types/message_buy_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/message_buy_storage.go -------------------------------------------------------------------------------- /x/storage/types/message_buy_storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/message_buy_storage_test.go -------------------------------------------------------------------------------- /x/storage/types/message_claimers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/message_claimers.go -------------------------------------------------------------------------------- /x/storage/types/message_file_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/message_file_delete.go -------------------------------------------------------------------------------- /x/storage/types/message_file_delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/message_file_delete_test.go -------------------------------------------------------------------------------- /x/storage/types/message_init_miner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/message_init_miner.go -------------------------------------------------------------------------------- /x/storage/types/message_init_miner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/message_init_miner_test.go -------------------------------------------------------------------------------- /x/storage/types/message_post_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/message_post_file.go -------------------------------------------------------------------------------- /x/storage/types/message_postproof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/message_postproof.go -------------------------------------------------------------------------------- /x/storage/types/message_postproof_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/message_postproof_test.go -------------------------------------------------------------------------------- /x/storage/types/message_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/message_report.go -------------------------------------------------------------------------------- /x/storage/types/message_set_miner_ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/message_set_miner_ip.go -------------------------------------------------------------------------------- /x/storage/types/message_set_miner_ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/message_set_miner_ip_test.go -------------------------------------------------------------------------------- /x/storage/types/message_set_miner_keybase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/message_set_miner_keybase.go -------------------------------------------------------------------------------- /x/storage/types/message_set_miner_keybase_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/message_set_miner_keybase_test.go -------------------------------------------------------------------------------- /x/storage/types/message_set_miner_totalspace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/message_set_miner_totalspace.go -------------------------------------------------------------------------------- /x/storage/types/message_set_miner_totalspace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/message_set_miner_totalspace_test.go -------------------------------------------------------------------------------- /x/storage/types/message_shutdown_miner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/message_shutdown_miner.go -------------------------------------------------------------------------------- /x/storage/types/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/params.go -------------------------------------------------------------------------------- /x/storage/types/params.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/params.pb.go -------------------------------------------------------------------------------- /x/storage/types/payment_info.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/payment_info.pb.go -------------------------------------------------------------------------------- /x/storage/types/proof_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/proof_loader.go -------------------------------------------------------------------------------- /x/storage/types/proofs.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/proofs.pb.go -------------------------------------------------------------------------------- /x/storage/types/providers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/providers.pb.go -------------------------------------------------------------------------------- /x/storage/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/query.pb.go -------------------------------------------------------------------------------- /x/storage/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/storage/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/types/tx.pb.go -------------------------------------------------------------------------------- /x/storage/types/types.go: -------------------------------------------------------------------------------- 1 | package types 2 | -------------------------------------------------------------------------------- /x/storage/utils/trees.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackalLabs/canine-chain/HEAD/x/storage/utils/trees.go --------------------------------------------------------------------------------