-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add semaphore-identity snark artifacts (#31)
- Loading branch information
Showing
12 changed files
with
2,485 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,54 @@ | ||
{ | ||
"name": "@zk-kit/artifacts", | ||
"version": "1.0.0", | ||
"description": "Utilities for downloading snark artifacts", | ||
"scripts": { | ||
"build": "npm run clean && rollup -c rollup.config.ts --configPlugin typescript", | ||
"clean": "rimraf dist" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/privacy-scaling-explorations/snark-artifacts.git" | ||
}, | ||
"keywords": [ | ||
"snark", | ||
"artifacts", | ||
"circom", | ||
"zk" | ||
], | ||
"contributors": [ | ||
"cedoor <[email protected]>", | ||
"sripwoud <[email protected]" | ||
], | ||
"license": "AGPL-3.0", | ||
"bugs": { | ||
"url": "https://github.com/privacy-scaling-explorations/snark-artifacts/issues" | ||
}, | ||
"homepage": "https://github.com/privacy-scaling-explorations/snark-artifacts/tree/main/packages/artifacts", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"main": "./dist/index.cjs.js", | ||
"module": "./dist/index.esm.js", | ||
"types": "./dist/index.d.ts", | ||
"exports": { | ||
".": { | ||
"default": "./dist/index.esm.js", | ||
"import": "./dist/index.esm.js", | ||
"require": "./dist/index.cjs.js", | ||
"types": "./dist/index.d.ts" | ||
"name": "@zk-kit/artifacts", | ||
"version": "1.1.0", | ||
"description": "Utilities for downloading snark artifacts", | ||
"scripts": { | ||
"build": "npm run clean && rollup -c rollup.config.ts --configPlugin typescript", | ||
"clean": "rimraf dist" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/privacy-scaling-explorations/snark-artifacts.git" | ||
}, | ||
"keywords": [ | ||
"snark", | ||
"artifacts", | ||
"circom", | ||
"zk" | ||
], | ||
"contributors": [ | ||
"cedoor <[email protected]>", | ||
"sripwoud <[email protected]" | ||
], | ||
"license": "AGPL-3.0", | ||
"bugs": { | ||
"url": "https://github.com/privacy-scaling-explorations/snark-artifacts/issues" | ||
}, | ||
"homepage": "https://github.com/privacy-scaling-explorations/snark-artifacts/tree/main/packages/artifacts", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"main": "./dist/index.cjs.js", | ||
"module": "./dist/index.esm.js", | ||
"types": "./dist/index.d.ts", | ||
"exports": { | ||
".": { | ||
"default": "./dist/index.esm.js", | ||
"import": "./dist/index.esm.js", | ||
"require": "./dist/index.cjs.js", | ||
"types": "./dist/index.d.ts" | ||
} | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"devDependencies": { | ||
"@rollup/plugin-terser": "^0.4.4", | ||
"@rollup/plugin-typescript": "^11.1.6", | ||
"@types/node": "^20.12.10", | ||
"rimraf": "^5.0.5", | ||
"rollup": "^2.79.1", | ||
"tslib": "^2.6.2", | ||
"typescript": "^5.4.5" | ||
} | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"devDependencies": { | ||
"@rollup/plugin-terser": "^0.4.4", | ||
"@rollup/plugin-typescript": "^11.1.6", | ||
"@types/node": "^20.12.10", | ||
"rimraf": "^5.0.5", | ||
"rollup": "^2.79.1", | ||
"tslib": "^2.6.2", | ||
"typescript": "^5.4.5" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export enum Proof { | ||
EDDSA = "eddsa", | ||
POSEIDON = "poseidon", | ||
//RLN = 'rln', | ||
SEMAPHORE = "semaphore", | ||
SEMAPHORE_IDENTITY = "semaphore-identity", | ||
POSEIDON = "poseidon", | ||
//RLN = 'rln', | ||
SEMAPHORE = "semaphore" | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# [@zk-kit/semaphore-identity-artifacts](https://www.npmjs.com/package/@zk-kit/semaphore-identity-artifacts) | ||
|
||
* Circuits: [`identity-proof.circom`](https://github.com/semaphore-protocol/extensions/blob/main/packages/identity-proof.circom/src/identity-proof.circom) | ||
* JS library: [`@semaphore-extensions/identity-proof`](https://github.com/semaphore-protocol/extensions/tree/main/packages/identity-proof) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"name": "@zk-kit/semaphore-identity-artifacts", | ||
"version": "1.0.0-beta", | ||
"description": "semaphore identity artifacts", | ||
"circuit": "@semaphore-extensions/identity-proof.circom", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/privacy-scaling-explorations/snark-artifacts.git" | ||
}, | ||
"homepage": "https://github.com/privacy-scaling-explorations/snark-artifacts/tree/main/packages/eddsa", | ||
"bugs": { | ||
"url": "https://github.com/privacy-scaling-explorations/snark-artifacts/issues" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
} | ||
} |
Binary file renamed
BIN
+1.7 MB
packages/eddsa/eddsa.wasm → ...emaphore-identity/semaphore-identity.wasm
Binary file not shown.
Binary file not shown.
Oops, something went wrong.