mirror of
https://github.com/selfxyz/self.git
synced 2026-01-14 09:08:03 -05:00
* rename handleProofVerified to handleProofResult * from the app, call proof_verified or proof_generation_failed instead of always proof_verified * messaging for when proof fails * bump sdk version * yarn nice
10 lines
203 B
TypeScript
10 lines
203 B
TypeScript
export const QRcodeSteps = {
|
|
DISCONNECTED: 0,
|
|
WAITING_FOR_MOBILE: 1,
|
|
MOBILE_CONNECTED: 2,
|
|
PROOF_GENERATION_STARTED: 3,
|
|
PROOF_GENERATION_FAILED: 4,
|
|
PROOF_GENERATED: 5,
|
|
PROOF_VERIFIED: 6,
|
|
};
|