-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add APIs for v4 Semaphore commitment and public key
- Loading branch information
Showing
7 changed files
with
95 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
import type { ParcnetIdentityRPC } from "@parcnet-js/client-rpc"; | ||
import { encodePublicKey } from "@pcd/pod"; | ||
import type { Identity } from "@semaphore-protocol/identity"; | ||
|
||
export class ParcnetIdentityProcessor implements ParcnetIdentityRPC { | ||
public constructor(private readonly v4Identity: Identity) {} | ||
|
||
async getSemaphoreV3Commitment(): Promise<bigint> { | ||
return BigInt(0); | ||
} | ||
async getSemaphoreV4Commitment(): Promise<bigint> { | ||
return this.v4Identity.commitment; | ||
} | ||
async getSemaphoreV4PublicKey(): Promise<string> { | ||
return encodePublicKey(this.v4Identity.publicKey); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters