Are notes timestamped in a verifiable way? Or can I create a fake "history" of "things i said" ?
Discussion
Example of how events are saved:
{
"id": "",
"pubkey": "",
"created_at": ,
"kind": ,
"tags": [],
"content": "",
"sig": ""
}
The id field tells us the ID of the event.
The pubkey field tells us the public key of the user who sent the event.
The created_at field tells us when the event was published.
The kind field tells us what sort of event it is.
The tags field tells us about tags on the event. These are used for creating links, adding media, and mentioning other users or events.
The content field gives us the content of the event. In this case, the short text post.
The sig field is the signature that clients use to verify that the user with this pubkey did in fact send this event on the date specified.
Ok. So by running a node you cant prove that you said something as i understand it? You can create a post with a backdated timestamp.