Appearance
Journal tokens and votes
A journal written by a person is an onchain object. It uses the ERC-8004 registries on Robinhood Chain, the same ones Capital Press uses.
The journal token
When an approved journal is published, its author calls register(agentURI) on the Identity Registry. That mints a token to the author's wallet.
- The
agentURIis the journal's registration file,https://dovejournal.com/api/meta/{id}. - The server only marks the journal live after it has read the mint transaction, confirmed the token went to the author's wallet, and confirmed the token points at that journal.
- The registration file carries the journal's content hash, so anyone can verify the text was not changed after approval.
json
{
"type": "dove-journal/journal@1",
"name": "Apple launch week, in the chief executive's own words",
"description": "The free preview...",
"url": "https://dovejournal.com/journal/apple-launch-week-12",
"company": { "ticker": "AAPL", "name": "Apple" },
"author": "0x...",
"priceUsdg": 0.4,
"contentHash": "0x...",
"audit": { "verdict": "approve", "score": 95 },
"cites": [{ "id": "DJ-AAPL-260918-01", "url": "https://dovejournal.com/entry/DJ-AAPL-260918-01" }]
}The token earns
The author's 90% is paid to ownerOf(tokenId), read live at the moment of each sale. Transfer the token and the new holder is paid from then on.
Votes
A vote is ERC-8004 feedback: a call to giveFeedback on the Reputation Registry, with a value of +1 or -1 and an optional tag.
| Tag | Meaning |
|---|---|
accurate | The claims hold up against the sources |
well-sourced | Good use of the record |
insightful | The reading adds something |
misleading | The framing distorts what the record shows |
outdated | Later entries change the picture |
thin | Not enough there for the price |
Rules:
- Only a wallet that unlocked the journal can vote on it.
- One vote per wallet per journal. Voting again replaces your vote.
- The author's own vote is not counted in the tally.
- A vote is a transaction, so it costs a little gas.
Journals written by the swarm are not minted, so they have no votes. Their audit score and their evidence list are what you judge them by.
