{"id":14029939,"url":"https://github.com/aura-nw/aura","last_synced_at":"2026-01-12T13:02:34.204Z","repository":{"id":37440605,"uuid":"427223678","full_name":"aura-nw/aura","owner":"aura-nw","description":"Aura Network Daemon","archived":false,"fork":false,"pushed_at":"2024-10-15T13:57:50.000Z","size":176303,"stargazers_count":49,"open_issues_count":14,"forks_count":47,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-07-26T20:29:06.005Z","etag":null,"topics":["cosmos-sdk","nft"],"latest_commit_sha":null,"homepage":"https://aura.network","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/aura-nw.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":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-11-12T03:45:48.000Z","updated_at":"2025-06-14T03:57:03.000Z","dependencies_parsed_at":"2023-10-12T18:39:59.037Z","dependency_job_id":"4809e89c-b58d-4185-bf9a-9a97164ab972","html_url":"https://github.com/aura-nw/aura","commit_stats":{"total_commits":375,"total_committers":13,"mean_commits":"28.846153846153847","dds":0.5946666666666667,"last_synced_commit":"2cab28f8828829588c8b858965c8c81d15821bc4"},"previous_names":[],"tags_count":95,"template":false,"template_full_name":null,"purl":"pkg:github/aura-nw/aura","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aura-nw%2Faura","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aura-nw%2Faura/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aura-nw%2Faura/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aura-nw%2Faura/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aura-nw","download_url":"https://codeload.github.com/aura-nw/aura/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aura-nw%2Faura/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28338990,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T12:22:26.515Z","status":"ssl_error","status_checked_at":"2026-01-12T12:22:10.856Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["cosmos-sdk","nft"],"created_at":"2024-08-11T21:01:16.087Z","updated_at":"2026-01-12T13:02:34.186Z","avatar_url":"https://github.com/aura-nw.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"# Aura\n\n[![Release](https://github.com/aura-nw/aura/actions/workflows/release.yml/badge.svg?branch=main)](https://github.com/aura-nw/aura/actions/workflows/release.yml)\n\nThis repository contains source code for Aurad (Aura Daemon). Aurad binary is the official client for Aura Network. Aurad is built using Cosmos SDK\n\nAura Network is a NFT-centric blockchain platform that provides infrastructure assisting to bring user assets to the crypto market.\n\n## Prerequisite\n\n- Go 1.20\n\n## Install Aura daemon\n\nUsing Makefile\n\n```bash\n    make\n```\n\nThe **aurad** bin file is located on **${source_directory}/build/** or **GO_PATH** (default ~/go/bin/)\n\n## Setup a LocalNet\n\n### Initialize the Chain\n\n```bash\n# \u003cmoniker\u003e is the custom username of the node\n# \u003cchain-id\u003e is the identity of the chain\naurad init \u003cmoniker\u003e --chain-id \u003cchain-id\u003e\n```\n\nThis command will initialize the home folder containing necessary components for your chain  \n(default: ~/.aura)\n\n### Customize the genesis file\n\nA genesis file is a JSON file which defines the initial state of your blockchain. It can be seen as height 0 of your blockchain. The first block, at height 1, will reference the genesis file as its parent.\n\nThe docs about genesis customization: \u003chttps://hub.cosmos.network/main/resources/genesis.html\u003e\n\n### Create your validator\n\nCreate a local key pair for creating validator:\n\n```bash\naurad keys add \u003ckey_name\u003e \n```\n\nAdd some tokens to the wallet:\n\n```bash\naurad add-genesis-account \u003ckey_name\u003e \u003camount\u003e\u003cdenom\u003e\n```\n\nCreate a validtor generation transaction:\n\n```bash\naurad gentx \u003ckey_name\u003e \u003camount\u003e\u003cdenom\u003e --chain-id \u003cchain-id\u003e\n```\n\nCollect the gentx to genesis file:\n\n```bash\naurad collect-gentxs\n```\n\n### Run a node\n\n```bash\naurad start \n```\n\n## Run a local test node\n\n```bash\nsh scripts/testnode.sh\n```\n\n## Setup testnet using testnetCmd\n\n## Contribution\n\nThe Aurad is still in development by the Aura Network team. For more information on how to contribute to this project, please contact us at \u003csupport@aura.network\u003e\n\n## License\n\nAura project source code files are made available under Apache-2.0 License, located in the LICENSE file. Basically, you can do whatever you want as long as you include the original copyright and license notice in any copy of the software/source.\n\n## Acknowledgments\n\nAura project is built using [Cosmos SDK](https://github.com/cosmos/cosmos-sdk) and uses additional modules:\n- ```github.com/evmos/evmos/v18``` by Tharsis Labs Ltd.(Evmos). This EVM library is distributed under [ENCL-1.0](https://github.com/evmos/evmos/blob/v16.0.3/LICENSE).\n\n- ```x/evmutil``` by Kava Labs, Inc. This module is distributed under [Apache v2 License](https://github.com/Kava-Labs/kava/blob/master/LICENSE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faura-nw%2Faura","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faura-nw%2Faura","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faura-nw%2Faura/lists"}