arnaucode 42800d994a | 6 years ago | |
---|---|---|
contracts | 6 years ago | |
wallet | 6 years ago | |
.gitattributes | 6 years ago | |
LICENSE | 6 years ago | |
README.md | 6 years ago | |
r1.png | 6 years ago | |
r2.png | 6 years ago |
Decentralized mutual credit system based on Ethereum smart contracts.
For the moment this is an implementation of a Proof of Concept.
Each user connects to reciproka
throught the frontend wallet app. Once the app is opened, it creates a new ethereum private key (if the user already have one, loads it).
Account data structure:
struct Account {
address ID;
int64 Balance;
bytes32[] History;
}
Handles a public list of accounts that have been verified, in order to give some kind of trusted certification to an user's account. Can be runned by a collective, so for example, a group of people that work together in a project, can run a Reputation Authority, that will 'validate' trusted user's accounts.