feat: add Bolyra action provider for ZKP agent identity#1351
Open
saneGuy wants to merge 1 commit into
Open
Conversation
🟡 Heimdall Review Status
|
Adds bolyraActionProvider with two actions for ZKP-based agent identity verification: - create_identity_proof: generate a credential proving this agent's identity and permissions using zero-knowledge proofs - verify_identity_proof: verify another agent's proof envelope and optionally check required permissions Complements ERC-8004: ERC-8004 handles on-chain registry identity, Bolyra handles off-chain ZKP portable identity with privacy-preserving proofs. Network-agnostic (off-chain ZKP). Uses @bolyra/sdk as a lazy-loaded optional peer dependency. Signed-off-by: Viswanadha Pratap Kondoju <kondojuviswanadha@gmail.com>
5912d31 to
2fe9016
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
bolyraActionProviderwith two actions for ZKP-based agent identity verification:create_identity_proof— Generate a credential proving this agent's identity and permissions using zero-knowledge proofsverify_identity_proof— Verify another agent's proof envelope and optionally check required permissionsComplements the ERC-8004 provider: ERC-8004 handles on-chain registry identity, Bolyra handles off-chain ZKP portable identity with privacy-preserving proofs. Network-agnostic (off-chain ZKP).
Files added:
typescript/agentkit/src/action-providers/bolyra/bolyraActionProvider.ts— provider classtypescript/agentkit/src/action-providers/bolyra/schemas.ts— Zod input schemastypescript/agentkit/src/action-providers/bolyra/bolyraActionProvider.test.ts— unit teststypescript/agentkit/src/action-providers/bolyra/index.ts— re-exportstypescript/agentkit/src/action-providers/bolyra/README.md— documentationUses
@bolyra/sdkas a lazy-loaded optional peer dependency.WISHLIST.md alignment
Addresses aspects of:
Test plan
Links