{"id":14029955,"url":"https://github.com/oraichain/orai","last_synced_at":"2025-04-30T19:31:44.412Z","repository":{"id":58134863,"uuid":"288762317","full_name":"oraichain/orai","owner":"oraichain","description":"Monolithic repository of everything Oraichain","archived":false,"fork":false,"pushed_at":"2024-10-15T22:33:37.000Z","size":95888,"stargazers_count":28,"open_issues_count":0,"forks_count":19,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-10-17T09:14:21.369Z","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":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/oraichain.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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":"2020-08-19T15:01:17.000Z","updated_at":"2024-09-21T07:04:17.000Z","dependencies_parsed_at":"2023-02-08T09:17:09.475Z","dependency_job_id":"76278734-8ea7-4681-91ff-b9efb41ac1a5","html_url":"https://github.com/oraichain/orai","commit_stats":{"total_commits":660,"total_committers":11,"mean_commits":60.0,"dds":0.4363636363636364,"last_synced_commit":"c29cd6bfc91d1022f181dae8d860b76eb2cec135"},"previous_names":[],"tags_count":44,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oraichain%2Forai","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oraichain%2Forai/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oraichain%2Forai/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oraichain%2Forai/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oraichain","download_url":"https://codeload.github.com/oraichain/orai/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224221738,"owners_count":17275906,"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":"2024-08-11T21:01:21.921Z","updated_at":"2025-04-30T19:31:44.406Z","avatar_url":"https://github.com/oraichain.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"# Oraichain\n\n![Banner!](./doc/logo-full-h-light.png#gh-light-mode-only)\n![Banner!](./doc/logo-full-h-dark.png#gh-dark-mode-only)\n\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n\n\u003e [!WARNING] \n\u003e Oraichain Labs, the team behind Oraichain and this repo orai, has fully shifted its focus to [Our Wasmd fork repository](https://github.com/oraichain/wasmd), where we continue to build interoperability solutions for the future! \n\u003e\n\u003e Please read our [Upgrade guideline](https://github.com/oraichain/wasmd/blob/release/v0.50.x/UPGRADE_V050.md) to understand the reasons for the change.\n\u003e\n\u003e As a result, this repository is no longer maintained, and all relevant code has been migrated.\n\u003e\n\u003e The last production version of this repo is [v0.42.4](https://github.com/oraichain/orai/releases/tag/v0.42.4).\n\u003e\n\nOraichain is the world’s first AI-powered oracle and ecosystem for blockchains. \n\nBeyond data oracles, Oraichain aims to become the first AI Layer 1 in the Blockchain sphere with a complete AI ecosystem, serving as a foundational layer for the creation of a new generation of smart contracts and Dapps. With AI as the cornerstone, Oraichain has developed many essential and innovative products and services including AI price feeds, fully on-chain VRF, Data Hub, AI Marketplace with 100+ AI APIs, AI-based NFT generation and NFT copyright protection, Royalty Protocol, AI-powered Yield Aggregator Platform, and Cosmwasm IDE.\n\nThis repository contains the source code \u0026 how to build the Oraichain mainnet, a Cosmos-based blockchain network that levarages the [CosmWasm](https://github.com/CosmWasm/cosmwasm) technology to integrate AI into the ecosystem.\n\n## Getting Started\n\n[These instructions](https://docs.orai.io/developers/tutorials/getting-setup) will get you a copy of the project up and running on your local machine for development and testing purposes. See [deployment](#deployment) for notes on how to deploy the project on a live system.\n\n### Prerequisites\n\n* If you want to build the binary using Docker (recommended), then you only need Docker.\n\n* If you want to build the binary from scratch, you will need:\n\n    - Go 1.15+\n\n    - Make\n\n    - Wasmvm library: https://github.com/CosmWasm/wasmvm/releases/download/v0.13.0/libwasmvm_muslc.a (you can download it and put in /lib/libwasmvm_muslc.a). The file is used by CosmWasm when building the binary\n\n### Hardware requirements\n\n[Please visit the official hardware requirement for Oraichain mainnet here](https://docs.orai.io/developers/networks/mainnet#node-hardwarde-specification)\n\n### Installing\n\n* **Install Golang**\n\n[Please visit the official Golang website to download \u0026 install Go](https://go.dev/doc/install)\n\n* **Install make**\n\nNormally, for Linux-based machines, you already have Make installed by default.\n\n* **Install libwasmvm**\n\nthe wasmd module of CosmWasm uses a wasm vm library, which should be included when building the chain binary. Hence, we need to download and place it in a specific location.\n\nFor Linux based machines, please run the following command:\n\n```bash\nsudo wget https://github.com/CosmWasm/wasmvm/releases/download/v0.13.0/libwasmvm_muslc.a -O /lib/libwasmvm_muslc.a\n```\n\n* **Download Go dependencies**\n\n`go get ./...`\n\n* **Build the binary**\n\n`make install`\n\n* **Verify the binary version**\n\n`oraid version`\n\n## Protobuf \u0026 protobuf swagger generation\n\n* [Install Docker](https://docs.docker.com/engine/install)\n\n* Start the proto docker: `docker-compose up -d proto`\n\n* Install neccessary tools: `docker-compose exec proto ash -c 'apk add build-base bash \u0026\u0026 go get ./...'`\n\n* Gen protobuf: `docker-compose exec proto ash -c 'make proto-gen'`\n\n## Contributing\n\nPlease read [CONTRIBUTING.md](./CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us.\n\n## Versioning\n\nWe use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/oraichain/orai/tags). \n\n## Authors\n\n* [Duc Le Pham](https://github.com/ducphamle2)\n\nSee also the list of [contributors](https://github.com/oraichain/orai/contributors) who participated in this project.\n\n## License\n\nThis project is licensed under the Apache 2.0 license - see the [LICENSE](LICENSE) file for details.\n\n\u003c!-- ## Acknowledgments\n\n* Hat tip to anyone whose code was used\n* Inspiration\n* etc --\u003e\n\n\u003c!-- ## Run test\n`make test-method PACKAGE=github.com/oraichain/orai/x/airequest/keeper METHOD=TestCalucateMol` --\u003e\n\n\u003c!-- ## Create swagger documentation\n\n```bash\n# go to proto\ndocker-compose exec proto ash\nmake proto-swagger\n# then create static file\ngo install github.com/rakyll/statik\nstatik -src doc/swagger-ui/ -dest doc -f\n```\n\n## Non-docker build\n\nmake build LEDGER_ENABLED=false GOMOD_FLAGS= VERSION=0.41.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foraichain%2Forai","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foraichain%2Forai","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foraichain%2Forai/lists"}