Skip to content

Commit 2e939ff

Browse files
Merge pull request #6 from InternetMaximalism/update-path
update wrapper path
2 parents 7200670 + d68903d commit 2e939ff

File tree

1 file changed

+2
-2
lines changed
  • packages/processor/src/lib

1 file changed

+2
-2
lines changed

packages/processor/src/lib/zkp.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const createWrappedProof = async (
3232
) => {
3333
return makeProverRequest<CreateProofResponse>({
3434
method: "post",
35-
path: "aggregator-prover/proof/wrapper",
35+
path: "aggregator-prover/proof/wrapper/withdrawal",
3636
data: {
3737
id,
3838
withdrawalAggregator: withdrawalAggregatorAddress,
@@ -51,7 +51,7 @@ export const getWithdrawalProof = async (proofId: string) => {
5151
export const getWithdrawalWrapperProof = async (proofId: string) => {
5252
return makeProverRequest<GetZKProofResponse<string>>({
5353
method: "get",
54-
path: `aggregator-prover/proof/wrapper/${proofId}`,
54+
path: `aggregator-prover/proof/wrapper/withdrawal/${proofId}`,
5555
});
5656
};
5757

0 commit comments

Comments
 (0)