Prover API
A Prover is a participant that receives confirmed Cohort information from the Manager and provides it in a static form. The Prover can be an API or a decentralized static file system. Unlike the Manager API, the Prover API protocol must utilize precise implementations. External systems must appropriately call the API according to the Prover version to obtain Proof.
Release Versions
1.0.0 Initial Prover API
Supported Prover Protocol Version
GET /prover/config
This endpoint provides the version of the protocol offered by this Prover path.
Rollup Information Provision
GET /cohort/{cohortId}/rollup/info.json
/cohort/{cohortId}/rollup/infos
Provides the current information that the Prover is aware of for a specific cohort.
application/json
Rollup Information Dump
GET /cohort/{cohortId}/rollup/chunk/{n00}.csv
Provides the current information that the Prover is aware of for a specific cohort, in units of 100.
/cohort/{cohortId}/rollup/chunk/0
: Provides Rollup information for nonce 0 to 99./cohort/{cohortId}/rollup/chunk/100
: Provides Rollup information for nonce 100 to 199./cohort/{cohortId}/rollup/chunk/10000
: Provides Rollup information for nonce 10000 to 10099.
text/csv
Snapshot Basic Information Provision
GET /prover/{0xMerkleRootHash}/member/count
Provides the current information that the Prover is aware of for a specific cohort.
GET /prover/{0xMerkleRootHash}/member/chunk/{n}
Provides the current information that the Prover is aware of for a specific cohort.
Query members for a specific merkle root in units of 1000 * n
GET /prover/{0xMerkleRootHash}/info.json
Provides information for a specific snapshot.
application/json
Snapshot Proof Information Dump
GET /prover/{0xMerkleRootHash}/chunk/{n0000}.csv
Provides all associated addresses and information that can prove the merkleRootHash for a specific snapshot. Provided in units of 10000.
/prover/{0xMerkleRootHash}/chunk/0.csv
: Provides information for index 1 to 10000./prover/{0xMerkleRootHash}/chunk/10000.csv
: Provides information for index 10001 to 20000./prover/{0xMerkleRootHash}/chunk/20000.csv
: Provides information for index 20001 to 30000./prover/{0xMerkleRootHash}/chunk/100000.csv
: Provides information for index 100001 to 110000.
text/csv
Snapshot Proof Information Retrieval
GET /prover/{0xMerkleRootHash}/proof/{0xAddress}
Provides the proof information for the requested address in the specified snapshot.
application/json
Identity-EOA Mapping Signature Information Retrieval
GET /identity/signature/{signer}/{0xIdentity}
Provides the proof information for the requested address in the specified snapshot.
application/json
Identity-EOA Mapping Signature Information Dump
GGET /identity/chunk/{signer}/{n0000}.csv
Provides EOA mappings for all identities related to a specific cohort. Provided in units of 10000.
/identity/{signer}/chunk/0.csv
: Provides the first mapping from 1 to 10000./identity/{signer}/chunk/10000.csv
: Provides mapping information from 10001 to 20000./identity/{signer}/chunk/20000.csv
: Provides mapping information from 20001 to 30000./identity/{signer}/chunk/100000.csv
: Provides mapping information from 100001 to 110000.
text/csv
Last updated