Public Ed25519 verifier
Integrity proof for strategy audits

Verify the report, not the screenshot.

A “Verified by Quantor” audit is useful only when anyone can check the exact JSON and its Ed25519 signature. Paste both files here: the emerald seal appears only when the signature matches Quantor’s published key and the report has not been changed.

What counts as proof here: only a report that passes the cryptographic signature check on this page, or via openssl with our published key. A screenshot, PDF, or video of a report proves nothing: pixels can be edited by anyone. Free previews are unsigned and always carry a “PREVIEW - UNSIGNED” watermark. They never verify.
public key check offline recipe included integrity only
Reviewer workflow

Check a signed audit

How verification works

Get your strategy verified:

  1. Export your trade log as a CSV from Binance, Bybit, 3Commas, Cornix, TradingView, MT4/MT5, or a custom sheet. It needs a header row plus either a PnL column or entry + exit + qty columns.
  2. Upload it below and get a free unsigned preview instantly. It runs from the file only: no API keys, no account access, no signup. Limits: 4 MB / 100k rows.
  3. Want it signed? Pay $99 with a card or PayPal balance on this page when checkout is available, otherwise by invoice. We reply within 24-48 h.
  4. You receive an evidence bundle: signed report JSON, Ed25519 signature, your original CSV unchanged, and the offline verification recipe. Paying on the page, that download appears the moment the payment clears.

Check someone’s claim:

  1. Ask for both files: the report JSON and the signature. A screenshot is not a report.
  2. Paste them above. The emerald seal appears only if the signature matches our published key. Any edit to a single character makes it fail.
  3. Prefer not to trust this site? Verify offline with stock OpenSSL:
« save the report EXACTLY as received to report.json and the signature to sig.b64 »
base64 -d sig.b64 > sig.bin
curl -s https://quantorsaas.app/api/v1/public/audit/verify-key \
  | jq -r '"-----BEGIN PUBLIC KEY-----\n"+.publicKeyBase64+"\n-----END PUBLIC KEY-----"' > quantor.pem
openssl pkeyutl -verify -pubin -inkey quantor.pem -rawin -in report.json -sigfile sig.bin
# → "Signature Verified Successfully"

Scope: verification proves the report was produced by Quantor’s audit engine from the submitted trade log and was not altered afterwards, with costs applied at honest floors. It does not prove the strategy is profitable going forward, and it does not by itself prove the trades were executed on an exchange. It makes the presented record tamper-evident and checkable, losses included.

Trader workflow

Run a free unsigned preview

Upload or paste a trade-log CSV. The audit runs from the file only: no API keys, no account access, no signup. The preview helps you catch wrong columns before paying.

CSV format

Example:

symbol,side,qty,entry,exit,closeTime
BTC/USDT,LONG,0.05,42000,44500,2026-01-05T00:00:00Z
BTC/USDT,LONG,0.05,44800,43900,2026-01-11T00:00:00Z
ETH/USDT,SHORT,0.8,2460,2280,2026-01-26T00:00:00Z

Download this example

Accepted: comma, semicolon, or tab separators; Excel UTF-8 BOM and Windows line endings; one closed trade per line; 4 MB and 100,000 row limits.

Required columns: either a PnL value, or entry + exit + qty with a recognised side. Column names are matched case-insensitively, with spaces and underscores ignored.

Not accepted: screenshots, PDFs, XLSX files, open positions, percent-only PnL, accounting negatives, space thousands separators, or fill-level exports where one trade spans many rows. Skipped rows are disclosed, never guessed.

A successful check proves the report was signed by Quantor’s audit key and has not been altered since. It does not prove the supplied trades are real, nor predict future performance. For fully independent verification, fetch the public key at /api/v1/public/audit/verify-key and check the Ed25519 signature over the exact JSON bytes with any tool.