We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 143d867 + f07c433 commit 4c995afCopy full SHA for 4c995af
packages/processor/src/lib/zkp.ts
@@ -44,7 +44,7 @@ export const createWrappedProof = async (
44
export const createGnarkProof = async (wrappedProof: string) => {
45
return makeProverRequest<CreateGnarkProofResponse>({
46
method: "post",
47
- path: "gnark-server/start-proof",
+ path: "withdrawal-gnark-server/start-proof",
48
data: {
49
proof: wrappedProof,
50
},
@@ -68,7 +68,7 @@ export const getWithdrawalWrapperProof = async (proofId: string) => {
68
export const getGnarkProof = async (jobId: string) => {
69
return makeProverRequest<GetZKProofResponse<GnarkProof>>({
70
method: "get",
71
- path: `gnark-server/get-proof`,
+ path: `withdrawal-gnark-server/get-proof`,
72
params: {
73
jobId,
74
0 commit comments