Skip to content

Commit b3a5b88

Browse files
committed
Update ARC1 admin and info
1 parent b330910 commit b3a5b88

File tree

3 files changed

+25
-10
lines changed

3 files changed

+25
-10
lines changed

README.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,27 @@ Aleo Request for Comments (ARCs) are protocol-level, network-level, and applicat
1010
## ✍️ Getting Started
1111

1212
To create a new ARC proposal:
13-
1. Copy template [ARC-0000](./arc-0000) into a new folder with the latest ARC number (ARC-XXXX)
14-
2. Open a [Github Discussion](https://github.com/AleoHQ/ARCs/discussions/categories/arcs) for your ARC number
15-
3. File a [Pull Request](https://github.com/AleoHQ/ARCs/pulls) to add your new ARC proposal
13+
1. Open a [Github Discussion](https://github.com/AleoHQ/ARCs/discussions/categories/arcs) with your proposal using template [ARC-0000](./arc-0000) and an available ARC number.
14+
2. File a [Pull Request](https://github.com/AleoHQ/ARCs/pulls) with your proposal in a new subdirectory.
15+
16+
### Progressing an ARC
17+
18+
An ARC will start as a "Draft" and progress through the following stages:
19+
20+
Once a proposal is up:
21+
1. The community will discuss and review the proposal. A maintainer will monitor the ARC and change its status to "Active" once it is ready.
22+
a. ARCs will be prioritized by number of votes and whether a prototype exists.
23+
b. ARCs will be discussed during certain community calls. Proposers will have the opportunity to join and participate in the discussion.
24+
c. Up to this point, the ARC can be withdrawn by the proposer or withdrawn by the maintainers if there is no activity for a long time.
25+
2. A governor or a team member of the Aleo Network Foundation (ANF) will create a formal proposal on Aleo governance (https://vote.aleo.org/) and initiate the voting process.
26+
3. The community will vote on the proposal for approval.
27+
4. If the proposal is accepted, its status will be updated to "Accepted" and the associated pull request will be merged into the ARCs repo. If the proposal is rejected, the status will be reverted to "Draft".
28+
5. The relevant parties should complete the implementation. Updates can be made to the ARC as needed through new PRs, which do not need votes.
29+
6. Once the implementation is finalized, the status will change from "Accepted" to "Final" or "Living", depending on the nature of the proposal.
30+
31+
### Statuses
32+
33+
See [ARC-0001](./arc-0001) for a detailed explanation of the statuses.
1634

1735
## 📜 License
1836

arc-0001/README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,13 @@ graph LR
2929
end
3030
3131
draft([Draft]) -.-> withdrawn([Withdrawn])
32-
active([Active]) -.-> withdrawn([Withdrawn])
3332
3433
subgraph standards
3534
active([Active]) --> decision{Decision}
3635
decision{Decision} --> accepted([Accepted])
3736
end
3837
39-
decision{Decision} -.-> rejected([Rejected])
38+
decision{Decision} -.-> rejected([Draft])
4039
4140
subgraph standards
4241
accepted([Accepted]) --> final([Final])
@@ -49,11 +48,9 @@ graph LR
4948

5049
`Active` refers to a proposal with a reference implementation that is ready for review.
5150

52-
`Withdrawn` refers to a proposal that was previously marked as `Idea`, `Draft`, or `Active`.
51+
`Withdrawn` refers to a proposal that was previously marked as `Draft`, or `Active`.
5352

54-
`Accepted` refers to a proposal that was `Active` with a reference implementation, and has been approved by reviewer(s).
55-
56-
`Rejected` refers to a proposal that was `Active` with a reference implementation, and has been denied by reviewer(s).
53+
`Accepted` refers to a proposal that has been approved by the community and is ready for implementation.
5754

5855
`Final` refers to a proposal that was `Accepted`, and the reference implementation has been incorporated into Aleo.
5956

parser/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const requiredMetadata = ['arc', 'title', 'authors', 'discussion', 'topic', 'sta
1515

1616
const topics = ['Protocol', 'Network', 'Application', 'Meta'];
1717

18-
const statuses = ['Draft', 'Active', 'Withdrawn', 'Accepted', 'Rejected', 'Final', 'Deprecated', 'Living'];
18+
const statuses = ['Draft', 'Active', 'Withdrawn', 'Accepted', 'Final', 'Deprecated', 'Living'];
1919

2020
// Executes sanity checks for CI.
2121
const ci = () => {

0 commit comments

Comments
 (0)