Update src/data/messages.ts

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
AtHeartEngineer
2023-08-15 17:20:37 -04:00
committed by GitHub
parent 9475263a8c
commit fe9ef4d7f7

View File

@@ -16,13 +16,13 @@ export interface Proof {
curve: string;
}
export type RLNPublicSignals = {
export interface RLNPublicSignals {
x: StrBigInt;
externalNullifier: StrBigInt;
y: StrBigInt;
root: StrBigInt;
nullifier: StrBigInt;
};
}
export type RLNSNARKProof = {
proof: Proof;