Skip to content

Commit

Permalink
perf: make the TIP adoption process more predictable and understandable
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyar committed Aug 28, 2023
1 parent e982b64 commit 38b80cb
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions src/standard/workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,20 @@ Each TIP should have the following parts (which are heavily copy-pasted from BIP
- Rationale — The rationale fleshes out the specification by describing what motivated the design and why particular design decisions were made. It should describe alternate designs that were considered and related work. The rationale should provide evidence of consensus within the community and discuss important objections or concerns raised during discussion;
- Backwards compatibility — All TIPs that introduce backwards incompatibilities must include a section describing these incompatibilities and their severity. The TIP must explain how the author proposes to deal with these incompatibilities;

Each TIP should pass the following process of acceptance:
## Workflow

`Proposal``Discussion``Community Voting``Reference Implementations Contest``Final TIP with Reference Implementations`
Each TIP should pass the following process of acceptance:

- Reference implementation — The reference implementation must be completed before any TIP is given status `Final`, but it need not be completed before the TIP is accepted. It is better to finish the specification and rationale first and reach consensus on it before writing code. The final implementation must include test code and documentation appropriate for the Everscale protocol.
```mermaid
stateDiagram-v2
Idea --> Draft: Reference Implementation
Draft --> Proposal: Pull Request in ready\nfor review and conversation
Proposal --> Draft: Pull Request in draft\nfor resolve request changes
Proposal --> Review: Approving and merge Pull Request
Review --> Stagnant: If inactive for a period\nof greater 6 months
Stagnant --> Review
Review --> Withdrawn: The author have withdrawn
Review --> Living: The has integration of more \n than 10% of ecosystem projects
Living --> Finalization: This is the final review for an TIP\nbefore moving to Final
Finalization --> Final
```

0 comments on commit 38b80cb

Please sign in to comment.