{"id":13762987,"url":"https://github.com/AztecProtocol/aztec-nr","last_synced_at":"2025-05-10T16:32:05.035Z","repository":{"id":194802239,"uuid":"691083596","full_name":"AztecProtocol/aztec-nr","owner":"AztecProtocol","description":null,"archived":false,"fork":false,"pushed_at":"2024-05-23T02:13:28.000Z","size":1638,"stargazers_count":89,"open_issues_count":3,"forks_count":19,"subscribers_count":9,"default_branch":"master","last_synced_at":"2024-05-23T03:29:19.960Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/AztecProtocol.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-13T13:18:54.000Z","updated_at":"2024-05-28T05:48:55.120Z","dependencies_parsed_at":"2023-09-15T06:38:51.541Z","dependency_job_id":"42763525-ab17-41df-a751-4bd2298ad101","html_url":"https://github.com/AztecProtocol/aztec-nr","commit_stats":null,"previous_names":["aztecprotocol/aztec-nr"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AztecProtocol%2Faztec-nr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AztecProtocol%2Faztec-nr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AztecProtocol%2Faztec-nr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AztecProtocol%2Faztec-nr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AztecProtocol","download_url":"https://codeload.github.com/AztecProtocol/aztec-nr/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224978739,"owners_count":17401789,"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-03T15:00:25.253Z","updated_at":"2025-05-10T16:32:05.025Z","avatar_url":"https://github.com/AztecProtocol.png","language":"Rust","readme":"\u003cdiv align=\"center\"\u003e\n  \u003cimg height=\"210\" src=\"./assets/Aztec_banner.png\" /\u003e\n\n  \u003ch1\u003eAztec.nr\u003c/h1\u003e\n\n  \u003cp\u003e\n    \u003cstrong\u003eAztec Smart Contract Framework\u003c/strong\u003e\n  \u003c/p\u003e\n\n  \u003cp\u003e\n    \u003ca href=\"https://github.com/AztecProtocol/aztec-nr/actions\"\u003e\u003cimg alt=\"Build Status\" src=\"https://github.com/AztecProtocol/aztec-nr/actions/workflows/tests.yaml/badge.svg\" /\u003e\u003c/a\u003e\n    \u003ca href=\"https://docs.aztec.network\"\u003e\u003cimg alt=\"Aztec Website\" src=\"https://img.shields.io/badge/docs-tutorials-blueviolet\" /\u003e\u003c/a\u003e\n    \u003ca href=\"https://discord.gg/p6BBdH9ctY\"\u003e\u003cimg alt=\"Discord Chat\" src=\"https://img.shields.io/discord/889577356681945098?color=blueviolet\" /\u003e\u003c/a\u003e\n    \u003ca href=\"https://opensource.org/licenses/Apache-2.0\"\u003e\u003cimg alt=\"License\" src=\"https://img.shields.io/github/license/AztecProtocol/aztec-nr?color=blueviolet\" /\u003e\u003c/a\u003e\n  \u003c/p\u003e\n\u003c/div\u003e\n\n# Aztec.nr\n\n`Aztec-nr` is a [Noir](https://noir-lang.org) framework for smart contracts on [Aztec](aztec.network).\n\n### Directory Structure\n\n```\n.\n├── aztec               // The core of the aztec framework\n├── easy-private-state  // A library for easily creating private state\n├── safe-math           // A library for safe arithmetic\n└── value-note          // A library for storing arbitrary values\n```\n\n## Installing Aztec-nr libraries\n\n```toml\n[package]\nname = \"your_contract\"\nauthors = [\"you! ;) \"]\ncompiler_version = \"\u003ccurrent_noir_version\u003e\"\ntype = \"contract\"\n\n[dependencies]\n# To install the aztec framework (required to create aztec contracts).\naztec = { git = \"https://github.com/AztecProtocol/aztec-nr\", tag = \"master\" , directory = \"aztec\" }\n\n# Optional libraries\neasy_private_state = { git = \"https://github.com/AztecProtocol/aztec-nr\", tag = \"master\" , directory = \"easy-private-state\" }\nvalue_note = { git = \"https://github.com/AztecProtocol/aztec-nr\", tag = \"master\" , directory = \"value-note\" }\n```\n\n## Prerequisites\n\nTo use `Aztec.nr` you must have [Noir](https://noir-lang.org/) installed. Noir is a general purpose programming language for creating zero-knowledge-proofs. `Aztec.nr` supercharges the Noir language with Aztec Smart Contract capabilities.\n\n### Quick Installation\n\nThe fastest way to install is with [noirup](https://noir-lang.org/docs/getting_started/quick_start).\n\nTo use `Aztec-nr` the `aztec` version of `Noir` is required (Note; this version is temporarily required if you would like to use `#[aztec()]` macros).\n\nOnce noirup is installed, you can run the following:\n\n```bash\nnoirup -v NARGO_VERSION_COMPATIBLE_WITH_YOUR_SANDBOX\n```\n\nReplace `NARGO_VERSION_COMPATIBLE_WITH_YOUR_SANDBOX` with the version from the output of `aztec-cli get-node-info`:\n\n```bash\naztec-cli get-node-info\n```\n\nFor more installation options, please view [Noir's getting started.](https://noir-lang.org/docs/getting_started/noir_installation)\n","funding_links":[],"categories":["Libraries","Layer 2"],"sub_categories":["Aztec"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAztecProtocol%2Faztec-nr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FAztecProtocol%2Faztec-nr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAztecProtocol%2Faztec-nr/lists"}