Skip to content

Commit 7b1e716

Browse files
jrag0xgitbook-bot
authored andcommitted
GitBook: [master] 37 pages and 3 assets modified
1 parent 5d17dd5 commit 7b1e716

40 files changed

+927
-0
lines changed

.gitbook/assets/image (1).png

86.8 KB
Loading

.gitbook/assets/image (2).png

86.8 KB
Loading

.gitbook/assets/image.png

177 KB
Loading

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Introduction to Kleros
2+
3+
🚧**👷 IN PROGRESS 👷**🚧
4+
5+
## What is Kleros?
6+
7+
Kleros is a decentralized decision protocol for use on smart contract platforms, which has been implemented on Ethereum.
8+
9+
It acts as a decentralized third party capable of providing decisions on the correct result when applying a set of rules to questions ranging from simple to highly complex.
10+
11+
This is achieved by using game theoretic incentives to have crowdsourced jurors analyze and rule on cases correctly. Hence, Kleros provides judgments in an inexpensive, reliable, typically fast, and decentralized way. Of particular relevance is the use of this protocol to dispute resolution, creating a form of decentralized justice.
12+

SUMMARY.md

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# Table of contents
2+
3+
* [Introduction to Kleros](README.md)
4+
* [FAQ](faq.md)
5+
* [Decentralized Justice Glossary](decentralized-justice-glossary.md)
6+
* [Governance](governance.md)
7+
* [PNK Token](pnk-token.md)
8+
9+
## Products
10+
11+
* [Court](products/court.md)
12+
* [Escrow](products/escrow.md)
13+
* [Curate](products/curate.md)
14+
* [Oracle](products/oracle.md)
15+
* [Linguo](products/linguo.md)
16+
* [Proof of Humanity](products/proof-of-humanity.md)
17+
* [Governor](products/governor.md)
18+
* [T2CR \(Token Registry\)](products/t2cr-token-registry.md)
19+
20+
## INTEGRATIONS
21+
22+
* [Overview](integrations/overview.md)
23+
* [Use Cases](integrations/untitled.md)
24+
* [xDai](integrations/xdai.md)
25+
* [Current Integrations](integrations/current-integrations.md)
26+
27+
## Developer
28+
29+
* [ERC-792: Arbitration Standard](developer/erc-792-arbitration-standard.md)
30+
* [ERC 1497: Evidence Standard](developer/erc-1497-evidence-standard.md)
31+
* [Archon: Ethereum Arbitration Standard API](developer/archon-ethereum-arbitration-standard-api.md)
32+
33+
## Contribution Guidelines
34+
35+
* [Overview](contribution-guidelines/overview.md)
36+
* [General Dev. Workflow](contribution-guidelines/general-dev.-workflow/README.md)
37+
* [Task Tracking & Lifecycle](contribution-guidelines/general-dev.-workflow/task-tracking-and-lifecycle.md)
38+
* [Releases](contribution-guidelines/general-dev.-workflow/releases.md)
39+
* [Smart Contract Workflow](contribution-guidelines/smart-contract-workflow/README.md)
40+
* [Task Tracking & Lifecycle](contribution-guidelines/smart-contract-workflow/task-tracking-and-lifecycle.md)
41+
* [RAB - Review, Audit, Bounty](contribution-guidelines/smart-contract-workflow/rab.md)
42+
* [RABd \(+ Deploy\)](contribution-guidelines/smart-contract-workflow/rabd.md)
43+
* [Reporting Vulnerabilities](contribution-guidelines/smart-contract-workflow/reporting-vulnerabilities.md)
44+
* [Code Style and Guidelines](contribution-guidelines/code-style-and-guidelines/README.md)
45+
* [Git](contribution-guidelines/code-style-and-guidelines/git.md)
46+
* [Solidity](contribution-guidelines/code-style-and-guidelines/solidity.md)
47+
* [Web Languages](contribution-guidelines/code-style-and-guidelines/web-languages.md)
48+
* [License & Code of Conduct](contribution-guidelines/license-and-code-of-conduct/README.md)
49+
* [License](contribution-guidelines/license-and-code-of-conduct/license.md)
50+
* [Code of Conduct](contribution-guidelines/license-and-code-of-conduct/code-of-conduct.md)
51+
52+
## Additional Resources
53+
54+
---
55+
56+
* [Telegram](https://t.me/kleros)
57+
* [Reddit](https://reddit.com/r/Kleros/)
58+
* [Github](https://github.com/kleros)
59+
* [Slack](https://slack.kleros.io/)
60+
* [Twitter](https://twitter.com/kleros_io)
61+
* [Blog](https://blog.kleros.io/)
62+
* [Forum](https://forum.kleros.io/)
63+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
description: Keep your code compliant to Kleros' standards.
3+
---
4+
5+
# Code Style and Guidelines
6+
7+
{% page-ref page="git.md" %}
8+
9+
{% page-ref page="solidity.md" %}
10+
11+
{% page-ref page="web-languages.md" %}
12+
13+
14+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
---
2+
description: Controlling version control.
3+
---
4+
5+
# Git
6+
7+
We use Git for version control and use [Conventional Commits](https://www.conventionalcommits.org) for branch names and commit messages to enforce consistency and enjoy automatic changelog generation.
8+
9+
## Branches
10+
11+
Use short and descriptive, kebab-cased names with a conventional commits type prefix separated by a slash, like so:
12+
13+
* `feat/implement-arbitrator`
14+
* `fix/invalid-rulings-from-arbitrator`
15+
16+
When several people are working on a branch, you may create personal branches that can be merged before merging the main branch to `develop`. For example:
17+
18+
* `feat/implement-arbitrator/alice`
19+
* `feat/implement-arbitrator/bob`
20+
21+
{% hint style="info" %}
22+
Always delete merged branches, locally and remotely. You can use the following command to list them, `git branch --merged | grep -v "\*"`.
23+
{% endhint %}
24+
25+
## Commits
26+
27+
It's important for commits to follow a standard to allow efficient navigation of change history in the case of regressions and to make reviewers' lives easier.
28+
29+
### When to Commit
30+
31+
As a general guideline, each commit should be a single logical change. Don't make several logical changes in one commit. For example, if a commit fixes a bug and optimizes the performance of a feature, split it. Here are some useful tips:
32+
33+
* Use `git add -p` to interactively stage specific portions of modified files.
34+
* Commit early and often. Small, self-contained commits are easier to understand and revert when something goes wrong.
35+
* Order commits logically.
36+
37+
When working locally, it's OK if your branch history is not perfect, but that should be cleaned up before pushing upstream.
38+
39+
### Messages
40+
41+
Follow [Conventional Commits](https://www.conventionalcommits.org). If the repo uses [Kathari](), you can just run `yarn run cz` and follow the prompts to craft a valid message.
42+
43+
{% hint style="info" %}
44+
Note that all the words in a commit message are in **present tense** except for the first word in the footer, e.g. Closes, Fixes, etc.
45+
{% endhint %}
46+
47+
## Merging
48+
49+
{% hint style="danger" %}
50+
Branches that are used by CI/CD processes, like `develop` and `master` should never have their history rewritten.
51+
{% endhint %}
52+
53+
Before merging:
54+
55+
* [x] Make sure the branch you are merging is fresh by rebasing it into the target branch.
56+
* [x] Verify that all commits adhere to this guide, otherwise, fix them.
57+
* [x] Wait for all CI/CD processes to give the green light.
58+
59+
{% hint style="info" %}
60+
Always alert other people who are working on a branch when you are about to rewrite its history.
61+
{% endhint %}
62+
63+
## Misc. Tips
64+
65+
{% hint style="danger" %}
66+
Test before you push. Do not push half-done work.
67+
{% endhint %}
68+
69+
{% hint style="info" %}
70+
Use lightweight tags to bookmark commits for future reference.
71+
{% endhint %}
72+
73+
{% hint style="success" %}
74+
Keep repos in good shape by performing maintenance tasks from time to time:
75+
76+
* `git-gc`
77+
* `git-prune`
78+
* `git-fsck`
79+
{% endhint %}
80+
81+
82+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
---
2+
description: Our standards for smart contract code.
3+
---
4+
5+
# Solidity
6+
7+
## Style
8+
9+
We follow the [Official Solidity Style Guide](https://solidity.readthedocs.io/en/develop/style-guide.html) and use [Kathari]() for linting.
10+
11+
## Comments & Documentation
12+
13+
### When to Comment
14+
15+
Comments should be used for:
16+
17+
* Documenting all functions using the [**Ethereum Natural Specification Format**](https://github.com/ethereum/wiki/wiki/Ethereum-Natural-Specification-Format) \(ENSF\).
18+
* Explaining all non-obvious parts of code. A smart contract **must work**, but must also **convince external reviewers that it works**.
19+
* Explaining **security choices**.
20+
21+
#### Computational Complexity
22+
23+
If a function is **not** `O(1)` , the first line of the `@dev` part of the ENSF comment should be followed by what the **big O** complexity is and a brief explanation. This is so that callers know what they are getting into in terms of gas consumption. It is common for some gas intensive functions to only be called from clients and not from other contracts.
24+
25+
#### External Trust
26+
27+
For functions that make an external call with enough gas for re-entry, not `send` or `transfer`, specify **"UN/TRUSTED."** at the end of the `@dev` part of the ENSF comment. This tells readers wether the external call receiver is trusted or not, i.e. the code it executes is controlled.
28+
29+
{% hint style="danger" %}
30+
Note that specifying a **contract type** for a variable **does not guarantee** that it will reference a contract of that **type** as any address can be coerced into any contract, and vice-versa.
31+
{% endhint %}
32+
33+
#### Work in Progress
34+
35+
Mark unsecured functions or functions that are **not finished** yet with **"TODO."** at the end of the `@dev` part of the ENSF comment.
36+
37+
## Good Practices
38+
39+
### Code
40+
41+
A lot of these apply to software in general.
42+
43+
* Do **not** use **magic numbers** or values, define a constant or enum.
44+
* If you need **special testing functions** that expose functionality not intended for production, make a test contract **inheriting** from the original one, rather than adding the testing functions to the original contract.
45+
46+
### Mindset
47+
48+
Traditional back ends do most of the heavy lifting for the front end, because computation is cheap and faster than on the client. But, smart contract backends, **leave most of the heavy lifting for the front end**, because computation is expensive and slower than on the client. This is an inherent property of consensus based systems that involve lots of parties. Improvements will always be made, but it will also always be cheaper to execute code on the front end.
49+
50+
{% hint style="info" %}
51+
Abstractions can be made to make front end developers' lives easier. Our [archon](https://github.com/kleros/archon) does just that for ERC 792 contracts.
52+
{% endhint %}
53+
54+
This and the security risks of smart contracts that interact with other smart contracts with complex and stateful interdependencies requires that we take a unique approach and mindset when developing smart contracts. Here are some general guidelines:
55+
56+
* If possible, i.e. does not lead to a significant increase in computation, externally called functions should follow this **3-step pattern**:
57+
58+
* Verify that the call is authorized. Modifiers can be used for this.
59+
* Execute state changes.
60+
* Interact with other accounts by making external calls other than `send` and `transfer`.
61+
62+
This protects the function from being re-entered through the external calls and having some effect running more times than was intended. Note that despite what the official documentation indicates, `send` and `transfer` are not to be counted as interactions as they do not give enough gas to make a callback or change contract state.
63+
64+
* Be aware of **gas consumption**. Smart contracts differ to traditional software where you can "Get it correct the first time, fast the second.", being slow in a smart contract is being incorrect. Out of gas transactions fail and high TX fees can place a huge burden on users.
65+
* Be OK with **"doing 0"**. A function that sends 0 tokens, gives a penalty of 0%, and/or can't be called again unless 0 seconds pass is fine. Smart contracts should have the minimum amount of code possible and this ties into the next point.
66+
* Don't protect the user from himself. Client execution is almost free, but smart contract execution isn't, so **limit smart contracts to blocking malicious behavior** and **let clients prevent the stupid ones**.
67+
* As a general rule, your priorities should be in this order:
68+
* **Security**: Prevent vulnerabilities, unexpected behaviour, and reduce the impact of those which could arise.
69+
* **Gas**: Lower the gas usage to save on TX fees.
70+
* **Convincibility**: Write code that allows other parties to be easily convinced that it works. Remember that more time is spent in reviews/audits/bug bounties than in actually writing the code.
71+
* **Reusability**: Write code that is generic enough to avoid starting from scratch every time. This should not hinder the 3 previous priorities.
72+
* Do not **over-engineer**. Over-engineering lowers security, increases gas costs, and decreases convincibility. [Kiss](https://en.wikipedia.org/wiki/KISS_principle) ♥.
73+
* Smart contracts should only do what is **required, no more, no less**. Do not abstract contracts into more generic contracts if the deployed version will only use a subset of the functionality. E.g. if you can only have 2 parties in your contract, only write code for 2 parties. Do not write code supporting an arbitrary number of parties and then set it to 2 at deployment. This is a stark contrast to traditional software where generic abstractions can save time in the long run. In smart contract development, there is no continuous deployments and the additional time spent in security practices that a generic contract requires far outweighs the potential benefit of its reusability.
74+
* However, **abstraction** can be useful when contracts need to interact with contracts which are **not known in advance**, either because they won't be finished by the time of deployment or because they will be developed by other projects you don't have control over. [**ERC20**](https://github.com/ethereum/EIPs/issues/20) and [**ERC792**](https://github.com/ethereum/EIPs/issues/792) are good examples of this.
75+
76+
77+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
description: How we handle the ever changing suite of tools and frameworks.
3+
---
4+
5+
# Web Languages
6+
7+
## Long Live the Web
8+
9+
We are huge fans of the Web and Javascript community and regularly follow thought leaders, specially from the React team, to keep up to date with the latest best practices. However, we engineer for users, not other engineers, so we try to remain as pragmatic as possible.
10+
11+
That said, I think we still do pretty well with staying up to date, although I'm not sure for how long after this last ReactConf :\).
12+
13+
## Our Approach
14+
15+
There is no point in listing out a bunch of frameworks and linters here. In general, we follow the **"pick the best tool for the job philosophy"**. Check out [Kathari]() and [one of our dapps](https://github.com/kleros/doges-on-trial) to get a sense of what we think that is at the moment.
16+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
description: How we keep track of new development work and push new code.
3+
---
4+
5+
# General Dev. Workflow
6+
7+
8+
9+
{% page-ref page="task-tracking-and-lifecycle.md" %}
10+
11+
{% page-ref page="releases.md" %}
12+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
description: 'How we push new code to staging, production, and beyond.'
3+
---
4+
5+
# Releases
6+
7+
## Branch Deploys
8+
9+
In an effort to keep everything as automated as possible, we have two main protected branches that get automatically deployed in most of our projects:
10+
11+
| `develop` | `master` |
12+
| :--- | :--- |
13+
| Deploys to a staging environment. | Deploys to a production environment. |
14+
15+
{% hint style="info" %}
16+
Pull requests also get deploy previews when applicable.
17+
{% endhint %}
18+
19+
## Version Bumps & Releasing
20+
21+
When a task is finished, it gets merged to `develop`. When `develop` is tested and ready to become a production release, the following process takes place:
22+
23+
1. We run [standard-version](https://github.com/conventional-changelog/standard-version) on `develop` and take advantage of our [Git](../code-style-and-guidelines/git.md) style conventions to automatically create or update a changelog and bump the version number following [semver](https://semver.org) guidelines.
24+
2. We push and submit a pull request to `master`.
25+
3. We conduct one final review before merging and letting CI/CD take care of the rest.
26+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
---
2+
description: Our methodology for keeping track of development work.
3+
---
4+
5+
# Task Tracking & Lifecycle
6+
7+
## All in Github
8+
9+
{% hint style="info" %}
10+
See [Git Code Style & Guidelines](../code-style-and-guidelines/git.md) for our message and branch names style and guidelines.
11+
{% endhint %}
12+
13+
We try to keep the number of tools we use to a minimum for simplicity and ease of on-boarding. The new features of Github make it possible to keep most of the project management next to the code, and this is our approach:
14+
15+
| Issues | Projects | Milestones |
16+
| :--- | :--- | :--- |
17+
| Reference a specific task and keep track of its status. | Reference a long term project or goal. | Are used to group issues into time-controlled sprints. |
18+
19+
## Labels for Days
20+
21+
We also have a very comprehensive set of labels that can be automatically added to a repo using [Kathari](). It's important that all issues and pull requests have a priority, status, and type, and that they keep track of who is working and who is reviewing, if anyone.
22+
23+
### **Optional**
24+
25+
* duplicate 2️⃣ - Is a duplicate.
26+
* starter 🍼 - Good for new contributors.
27+
28+
### **Priority**
29+
30+
* **Critical 🔥** - Mission critical.
31+
* **High** - Top of to-do list.
32+
* **Low** - Bottom of to-do list.
33+
* **Medium** - Somewhere in the middle of to-do list.
34+
35+
### Status
36+
37+
* **Abandoned** - The assigned contributor gave up.
38+
* **Available** - Open for anyone to work on.
39+
* **Blocked** - Blocked by another issue.
40+
* **In Progress** - Someone is already working on it.
41+
* **On Hold** - Purposely paused.
42+
* **Proposal** - Don't work on it until accepted.
43+
* **Review Needed** - Pending reviews.
44+
45+
### Type
46+
47+
* **Bug 🐛** - Bugs.
48+
* **Documentation 📚** - Documentation work.
49+
* **Enhancement ✨** - Enhancements.
50+
* **Maintenance 🚧** - Chores.
51+
* **Question ❔ -** Queries about the project.
52+
53+
## Lifecycle
54+
55+
The lifecycle of a task goes like this:
56+
57+
{% hint style="info" %}
58+
We don't have a complicated issue or pull request template, we just ask for common sense and for all necessary information.
59+
{% endhint %}
60+
61+
1. An issue is raised with the description of what needs to be done.
62+
2. Discussion takes place and someone is assigned to the issue.
63+
3. The issue is added to a project and/or milestone, if applicable.
64+
4. The assignee branches off `develop` to work and submits a pull request when ready.
65+
5. Our CI/CD process lints, formats, and tests the code.
66+
6. The pull request is merged after all the changes are reviewed and accepted, and any requested changes are made.
67+
68+
69+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
description: 'Kleros is open-sourced, MIT licensed and a civilized collaboration space.'
3+
---
4+
5+
# License & Code of Conduct
6+
7+
{% page-ref page="license.md" %}
8+
9+
{% page-ref page="code-of-conduct.md" %}
10+
11+
12+

0 commit comments

Comments
 (0)