{"id":26448595,"url":"https://github.com/scorum/cosmos-network","last_synced_at":"2025-03-18T14:35:11.236Z","repository":{"id":195991577,"uuid":"694287065","full_name":"scorum/cosmos-network","owner":"scorum","description":null,"archived":false,"fork":false,"pushed_at":"2024-12-19T09:08:49.000Z","size":582,"stargazers_count":4,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-12-19T10:24:40.956Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/scorum.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-09-20T17:37:16.000Z","updated_at":"2024-10-22T14:00:52.000Z","dependencies_parsed_at":"2023-10-05T02:28:30.865Z","dependency_job_id":"08915848-4217-4e08-8e62-4d9605a58785","html_url":"https://github.com/scorum/cosmos-network","commit_stats":null,"previous_names":["scorum/cosmos-network"],"tags_count":20,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scorum%2Fcosmos-network","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scorum%2Fcosmos-network/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scorum%2Fcosmos-network/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scorum%2Fcosmos-network/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scorum","download_url":"https://codeload.github.com/scorum/cosmos-network/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244240946,"owners_count":20421556,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-18T14:35:10.180Z","updated_at":"2025-03-18T14:35:11.230Z","avatar_url":"https://github.com/scorum.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003e Scorum Network \u003c/h1\u003e\n\u003c/div\u003e\n\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://github.com/scorum/cosmos-network/blob/main/LICENSE\"\u003e\n    \u003cimg alt=\"License: Apache-2.0\" src=\"https://img.shields.io/github/license/scorum/cosmos-network.svg\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://docs.cosmos.network/main\"\u003e\n    \u003cimg alt=\"Cosmos Version: v0.47.11\" src=\"https://img.shields.io/badge/cosmos_sdk-v0.47.11-blueviolet\" /\u003e\n  \u003c/a\u003e\n\n  \u003cimg alt=\"Mainnet Version: v1.1.0\" src=\"https://img.shields.io/badge/mainnet-v1.1.0-green\" /\u003e\n  \u003cimg alt=\"Candidate Version: v1.2.0\" src=\"https://img.shields.io/badge/candidate-v1.2.0-blue\" /\u003e\n\u003c/div\u003e\n\n# Introducing Scorum Cosmos Network\n\nScorum’s blockchain protocol is in the [cosmos](https://github.com/cosmos/cosmos-sdk) family.\n\n### Projects currently working on Scorum Cosmos Network\n- [Aviatrix](https://aviatrix.bet)\n\n### Projects on which work is underway to transfer to the Scorum Cosmos Network\n- [Blogging platform](https://scorum.com)\n- [Betting platform](https://betscorum.com)\n\n### Current and future functions of Scorum Cosmos Network\n- Blogging platform where authors and readers will be rewarded for creating and engaging with content\n- Commission-free betting exchange where fans can place bets against each other using Scorum Coins (SCR)\n- Direct access to the Cosmos Network ecosystem\n- Aviatrix NFT marketplace\n\n### Public Announcement \u0026 Discussion\nFind out more as we take the project public through the following channels:\n- Get the latest updates and chat with us on [Telegram](https://telegram.me/SCORUM)\n\n---\n\n# Run Local Node Quick Start\nThis assumes that you're running Linux or MacOS and have installed [Go 1.19+](https://golang.org/dl/).  This guide helps you:\n\n* build and install Scorum Network\n* allow you to name your node\n* add seeds to your config file\n* download genesis state\n* start your node\n* use scorumd to check the status of your node.\n\n\nIf you already have a previous version of Scorum Network installed:\n```\nrm -rf ~/.scorum\n```\n\n## Development\n\n### Requirements\nTo build project you should have:\n- go \u003e= 1.19\n- protobuf\n- buf\n- golangci-lint\n\n### Guide\n\n#### Build and install\nBuild and install are available with `make`\n```shell\nmake build\n```\n\nor \n\n```shell\nmake install\n```\n\n#### Install tools\n```shell\nmake install-proto\nmake install-linter\n```\n\n#### Generate proto\n```shell\nmake generate-proto\n```\n\n#### Generate swagger\nTo generate swagger you need:\n- buf\n- cloned to gopath github.com/cosmos/cosmos-sdk with correct version\n- go-swagger-merger\n```shell\nmake generate-proto-swagger\n```\n\n#### Run tests\n```shell\nmake test\n```\n\nAlso you can run non-determinism simulation\n```shell\nmake test-determinism\n```\n\n#### Run linter\n```shell\nmake lint\n```\n\n#### Start local node\nNode's home is a directory test in the root of the repo. There will be available `test` account in the test directory. \n\n```shell\nmake local-init\nmake local-start\n```\n\nTo reset state\n```shell\nmake local-reset\n```\n\n#### Run cli with the local node\nBe sure you installed `scorumd` or use the built one from `./build`\n\nRetrieve info about test account\n```shell\nscorumd keys list  --keyring-backend test --keyring-dir test\n```\n\nBroadcast transaction\n```shell\nscorumd tx aviatrix create-plane 06c444a4-1ca4-11ee-be56-0242ac120003 scorum1z2ptzs6a2f8dfp4et22x36a53x0w6cma6pplca my-plane black --keyring-backend test --keyring-dir test --broadcast-mode block --from test\n```\n\nQuery command\n```shell\nscorumd query bank balances scorum1qujv377hmegm46vnllm20y9c56m5nztserc07a\n```\n\n---\n\n# No Support \u0026 No Warranty\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\n# License\n\n© 2023 Scorum. All right reserved.\n\nLicensed under the Apache v2 License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscorum%2Fcosmos-network","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscorum%2Fcosmos-network","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscorum%2Fcosmos-network/lists"}