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.