Skip to main content
Version: 2.0.0-beta-3

User State

The user state object is used to manage user state for an attester. The state is backed by an anondb instance.

import { UserState, schema } from '@unirep/core'
import { defaultProver } from '@unirep/circuits/provers/defaultProver'

const state = new UserState({
prover: defaultProver, // a circuit prover
unirepAddress: '0xaabbccaabbccaabbccaabbccaabbccaabbccaaaa',
provider, // an ethers.js provider
}, identity)

// or, initialize with an existing synchronizer object

const state = new UserState(synchronizer, identity)

constructor​

Can be constructed using an existing synchronizer, or by initializing a new synchronizer.

constructor(
config:
| {
db?: DB
attesterId?: bigint | bigint[]
unirepAddress: string
prover: Prover
provider: ethers.providers.Provider
_id?: ZkIdentity
}
| Synchronizer,
id: ZkIdentity
) {

sync​

The underlying synchronizer object.

state.sync: Synchronizer

start​

Convenience accessor for synchronizer start.

state.start(): Promise<void>

waitForSync​

Convenience accessor for synchronizer waitForSync.

state.waitForSync(blockNumber?: number): Promise<void>

stop​

Convenience accessor for synchronizer stop.

state.stop(): void

hasSignedUp​

state.hasSignedUp(attesterId?: bigint | string): Promise<boolean>

latestTransitionedEpoch​

state.latestTransitionedEpoch(attesterId?: bigint | string): Promise<number>

latestStateTreeLeafIndex​

Get the latest state tree leaf index for either the latest transitioned epoch, or the epoch specified.

state.latestStateTreeLeafIndex(epoch?: number, attesterId?: bigint | string): Promise<number>

getEpochKeys​

Get epoch keys for the current user, for an epoch. If a nonce value is supplied the return value will be a single epoch key. Otherwise an array of all epoch keys will be returned.

If no epoch is supplied the current epoch will be used (as determined by calcCurrentEpoch).

state.getEpochKeys(epoch?: number, nonce?: number, attesterId?: bigint | string): bigint | bigint[]

getData​

Get the data for a user up to and including the provided epoch. By default data up to and including the current epoch is returned.

tip

If you want to make a proof of data make sure to use getProvableData. Data can only be proven once it has been included in a state tree leaf. Learn more about reputation proofs here.

state.getData(toEpoch?: number, attesterId?: bigint | string): Promise<bigint[]>

getProvableData​

Get the data that can be proven by the user using a state tree leaf. This is the data up to, but not including, the epoch the user has transitioned into.

state.getProvableData(attesterId?: bigint | string): Promise<bigint[]>

getDataByEpochKey​

Get the pending changes to the data owned by an epoch key.

state.getDataByEpochKey(epochKey: bigint, epoch: number, attesterId?: bigint | string): Promise<bigint[]>

getEpochKeyIndex​

Get the index of epoch key among all attestations.

state.getEpochKeyIndex(epoch: number, epochKey: bigint | string): Promise<number>

genUserStateTransitionProof​

Generate a user state transition proof. Returns a UserStateTransitionProof.

state.genUserStateTransitionProof(options?: {
toEpoch?: bigint | number
attesterId?: bigint | string
}): Promise<UserStateTransitionProof>

genProveReputationProof​

Generate a proof of reputation. Returns a ReputationProof.

danger

Please avoid assigning the minRep = data[0] - data[1] or maxRep = data[1] - data[0].
The proof could allow a user to accidentally publish their overall reputation (i.e. data[0]-data[1]). Depending on the circumstances (such as the length of the attestation history) this could reveal a user’s epoch key(s) as well.

state.genProveReputationProof(options: {
epkNonce?: number
minRep?: number
maxRep?: number
graffitiPreImage?: bigint | string
proveZeroRep?: boolean
revealNonce?: boolean
data?: bigint | string
attesterId?: bigint | string
}): Promise<ReputationProof>

genUserSignUpProof​

Generate a proof that can be used to signup. Returns a SignupProof.

state.genUserSignUpProof(options: {
epoch?: bigint | number
attesterId?: bigint | string
}): Promise<SignupProof>

genEpochKeyProof​

Generate a proof that a user controls an epoch key in a certain epoch. Optionally provide a data value to sign. Returns an EpochKeyProof.

state.genEpochKeyProof(options: {
revealNonce?: boolean,
nonce?: number,
epoch?: number,
data?: bigint,
attesterId?: bigint | string
}): Promise<EpochKeyProof>

genEpochKeyLiteProof​

Generate a proof that a user controls an epoch key in a certain epoch. Optionally provide a data value to sign. Returns an EpochKeyLiteProof. This proof will not include a merkle tree proof which makes the proof size smaller than an EpochKeyProof. It can be used to prove a seen and valid epoch key.

state.genEpochKeyLiteProof(options: {
revealNonce?: boolean,
nonce?: number,
epoch?: number,
data?: bigint,
attesterId?: bigint | string
}): Promise<EpochKeyLiteProof>