Demos
Overview​
In an effort to making integrating with Chronicle as effortless as possible, we've created a few demos to showcase how Chronicle can be used in various contexts.
Playground​
TODO(sina)
Explorer​
TODO(sina)
Mintoor News​
Mintoor News is a HackerNews-inspired forum that uses Chronicle to timestamp posts as they're made. This gives users a way to trustlessly prove their post's existance at a point in time, and further mint it into a fully stateful NFT onchain if they desire.
Mintoor News illustrates a simple flow for how Chronicle could be used by a social media style app to scale onchain provenance. The schema used for posts on Mintoor News is very simple:
{
text: string,
author: address,
signature: bytes,
}
Mintoor News handles mapping this schema to a hash, both on the server and in the contract. Because posts are signed, the owner can always tie the provenance of the post to themselves, creating a scalable way for users to capture ownership of their content.
You can check out its source code on Github @ mintoor-news.