This repository was archived by the owner on Mar 10, 2025. It is now read-only.

Description
The SDK should provide an API to write an event to ceramic-one. The API should accept the JSON content of the document. It should then compute the diff and sign the event build the CAR file and submit the event to ceramic-one.
Implementation Notes
In order to do the diff the SDK will need to know the current state of the document. There are two ways know the state:
- Query the state via the ceramic-one API
- Cache the state from a previous write
We should prefer to cache the state over doing a read from the API for every write.
DOD