Skip to content

Commit 4c995af

Browse files
Merge pull request #10 from InternetMaximalism/withdrawal-url
withdrawal url
2 parents 143d867 + f07c433 commit 4c995af

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
@@ -44,7 +44,7 @@ export const createWrappedProof = async (
4444
export const createGnarkProof = async (wrappedProof: string) => {
4545
return makeProverRequest<CreateGnarkProofResponse>({
4646
method: "post",
47-
path: "gnark-server/start-proof",
47+
path: "withdrawal-gnark-server/start-proof",
4848
data: {
4949
proof: wrappedProof,
5050
},
@@ -68,7 +68,7 @@ export const getWithdrawalWrapperProof = async (proofId: string) => {
6868
export const getGnarkProof = async (jobId: string) => {
6969
return makeProverRequest<GetZKProofResponse<GnarkProof>>({
7070
method: "get",
71-
path: `gnark-server/get-proof`,
71+
path: `withdrawal-gnark-server/get-proof`,
7272
params: {
7373
jobId,
7474
},

0 commit comments

Comments
 (0)