Skip to content

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 agentURI is 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.

TagMeaning
accurateThe claims hold up against the sources
well-sourcedGood use of the record
insightfulThe reading adds something
misleadingThe framing distorts what the record shows
outdatedLater entries change the picture
thinNot 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.

An independent archive. Not affiliated with Robinhood Markets, Inc. or xAI. Nothing here is investment advice.