Skip to content
LivreSignals

integrity

Don't take our word for it

Each record stores the hash of the record before it. Change any past entry and every hash after it stops matching. That property is what separates this record from a screenshot of a chart.

Chain problem detected

The chain failed its integrity check with 1 problem(s). The record should not be trusted until this is resolved.

records
0
problems
1
  • · could not reach the ledger API

Check a single record

Paste a signal's proof value from the record table — or its seq number — to confirm it exists in the chain and that its contents still match its hash.

What this proves: the record you are looking at is the same one committed at that point in the chain, unaltered. What it does not prove: that the trading will be profitable. Those are separate claims.

current chain head:

how the chain works

Six steps anyone can repeat

  1. 1

    A signal is issued

    Before the outcome is known, the signal is written to the ledger: pair, direction, entry, stop, and the features that justified it.
  2. 2

    It is hashed together with the previous record

    hash = sha256( previous_hash + "|" + record )
  3. 3

    The hash is stored with the record

    Anyone can recompute it from the record's own contents.
  4. 4

    The outcome is appended separately

    A close record references the signal by id. The original signal record is never rewritten — that is the point.
  5. 5

    Altering history breaks everything after it

    Change one digit of one past signal and its hash changes, so the next record no longer links, and the chain fails.
  6. 6

    Deleting a record fails too

    Removing a record leaves a gap in the sequence and a broken link.

Current chain state

records
0
signals
0
outcomes
0
head hash
first record
latest record

Adversarial tests we ran

A chain that cannot detect tampering is worthless, so we tried to break this one:

  • Edit a losing trade into a winnercontent altered
  • Delete a losing recordsequence gap
  • Reorder recordslink mismatch

Each attempt broke the chain and was reported by the verifier. You can run the same check on the live ledger above.