Contract to product transaction ledgers
The idea behind this project was to develop a open and centralised transaction ledger that can be queried for a detailed history on the ownership, history, and exchange of physical products and goods. The C2P framework is a network with this ledger at its core, as well as a store of user accounts and products referenced by the ledger. A contract is an abstraction of this framework that describes the exchange or transfer of products between accounts.
The motivation for this project was to provide transparency and buyer security in the chinese second hand car market, which can be notoriously problematic. Using this framework, a detailed vehicle history can be made openly available to prospective buyers. The ledger would contain inforation such as the date and location of original purchase, previous ownership, service, accident, location, and MOT history. This is just one use case of this network. In this case though, it is possible to implement that certain parts of the ledger be updated automtically, although particular event such as accidents must be recorded manually, I hope that vehicle owners would have the motivation to do this to increase the value of the vehicle and attract interest and confidence in buyers.
Products must have a physical identifier intrinsically bound to the product hardware, such as a serial number. User accounts must also be tightly bound to a single person, and KYC verification is some cases may also be necessary. All products tracked on the ledger must obviously have an original point at which they began, so designated permissioned accounts must have the ability to create products.
The two diagrams illsustarte the idea in more detail.
The class diagram refers specifically to a java implementation, but it gives some of the basic components and object abstractions required, such as contracts, accounts, and products.

This image shows the recursive relationship between products and contracts. A single product may be referenced my multiple contracts, and a single contact may reference multiple products. A contract must also also reference two accounts: The buyer/owner/giver and the seller/receiver. The process of querying the ledger and tracing back the history of a product to see what contarcts it has been used in, who are the participants of those contracts, and what other products were involved in those contracts can be seen here.
The sequence of events illusrated below shows how a permissioned account Am creates 5 proucts, P0-4, and then sends a contract C0 to A 0 products. The double blue lines show how this contract (C0) contains all 5 of all these original products. A0 then decides to keeps P0, and sends another contract (C1) to A 1, that contains the remaining 4 products P1-4. A1 then decides to keeps P1, and sends another contract (C2) to A 2, that contains the remaining 3 products P2-4. This sequential series of events continues with each subsequent contract containing 1 less product than the contract before until each account A0-5 owns a single product.

At this point, given any contract or product on the ledger we can see the history of all the contracts a given product was involved in, and in turn all the contracts each product was involved in. The sequence of events given in the example above was purposefully simplistic, but depending on the actual sequence of events recorded on the ledger, it may be possible to realise and form a complete picture of all events recorded on the ledger from any single starting point.
Having said this, for the purpose of privacy, there may be some authentication or security measure implemented to restrict access to particular parts such as accounts or unrelated contracts.
The C2P network is a framework that may be implemented and adapted in different ways and to suit different purposes or retail markets. My own implementation to demonstarte this idea, I have developed in Java and deployed on a Tomcat servlet container. The web interafce I write in Javascript, HTML5 and SAS/CSS. I didnt use any component frameworks, although I made heavy use of some popular libraries. The eventual idea behind the interface is to be able to create a user account, write contracts, create and send products, and query the ledger history.
The site isnt quite finished yet, and I havent found an ideal server to deplo it on either, so currently I just able to provide screenshots taken from my own computer.





