Skip to content

Commit

Permalink
Merge pull request #22 from zkonduit/3.10.0-update
Browse files Browse the repository at this point in the history
feat: 3.10.0 artifact update
  • Loading branch information
ethan-crypto committed Nov 11, 2023
2 parents 1b572b2 + e9bb6f3 commit 8d77b3b
Show file tree
Hide file tree
Showing 31 changed files with 2,194 additions and 1,041 deletions.
2 changes: 1 addition & 1 deletion app/EngineContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const SharedResourcesProvider: React.FC<SharedResourcesProviderProps> = (
// Initialize the WASM module
const engine = await import("@ezkljs/engine/web/ezkl.js");
setEngine(engine)
await (engine as any).default(undefined, new WebAssembly.Memory({ initial: 20, maximum: 4096, shared: true }))
await (engine as any).default()
// For human readable wasm debug errors call this function
engine.init_panic_hook()
// Initialize the utils module
Expand Down
2 changes: 1 addition & 1 deletion app/gen-witness/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default function GenWitness() {
})
.catch((error) => {
console.error('An error occurred:', error)
setWarning(`Hash generation failed: ${error}`)
setWarning(`Witness generation failed: ${error}`)
})

setLoading(false)
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@
"test": "jest"
},
"dependencies": {
"@ezkljs/engine": "^3.9.3",
"@ezkljs/engine": "^3.10.0",
"@ezkljs/verify": "^0.0.8",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@types/file-saver": "^2.0.6",
"@types/json-bigint": "^1.0.3",
"@types/file-saver": "^2.0.7",
"@types/json-bigint": "^1.0.4",
"@types/node": "20.4.5",
"@types/react": "18.2.18",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.14",
"axios": "^1.6.0",
"axios": "^1.6.1",
"bufferutil": "^4.0.8",
"copy-webpack-plugin": "^11.0.0",
"env": "^0.0.2",
Expand All @@ -39,19 +39,19 @@
"react": "18.2.0",
"react-dom": "18.2.0",
"react-spring": "^9.7.3",
"solc": "^0.8.22",
"solc": "^0.8.23",
"tailwindcss": "3.3.3",
"ts-jest": "^29.1.1",
"typescript": "5.1.6",
"utf-8-validate": "^6.0.3",
"ws": "^8.14.2",
"zod": "^3.22.4",
"zustand": "^4.4.4"
"zustand": "^4.4.6"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"jest": "^29.7.0"
}
}
Loading

0 comments on commit 8d77b3b

Please sign in to comment.