We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7200670 + d68903d commit 2e939ffCopy full SHA for 2e939ff
packages/processor/src/lib/zkp.ts
@@ -32,7 +32,7 @@ export const createWrappedProof = async (
32
) => {
33
return makeProverRequest<CreateProofResponse>({
34
method: "post",
35
- path: "aggregator-prover/proof/wrapper",
+ path: "aggregator-prover/proof/wrapper/withdrawal",
36
data: {
37
id,
38
withdrawalAggregator: withdrawalAggregatorAddress,
@@ -51,7 +51,7 @@ export const getWithdrawalProof = async (proofId: string) => {
51
export const getWithdrawalWrapperProof = async (proofId: string) => {
52
return makeProverRequest<GetZKProofResponse<string>>({
53
method: "get",
54
- path: `aggregator-prover/proof/wrapper/${proofId}`,
+ path: `aggregator-prover/proof/wrapper/withdrawal/${proofId}`,
55
});
56
};
57
0 commit comments