This file contains hidden or 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
| Hey, I'm dcbuild3r-19372745 and I have finalized the world-id-protocol MPC Phase2 Trusted Setup ceremony. | |
| The following are my contribution signatures: | |
| Circuit # 1 (oprfkeygenproof13) | |
| Contributor # final | |
| Contribution Hash: 4d431429 12461b17 2e14232b 6b1c878b | |
| 48248de8 b8f1340c 18e93c6d cf2c4b10 | |
| f447a3d7 8be20b16 772080d6 2cefb8e1 | |
| 248bfc91 816d34da 07bacde2 5c384fd2 |
This file contains hidden or 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
| Hey, I'm dcbuild3r-19372745 and I have contributed to the world-id-protocol MPC Phase2 Trusted Setup ceremony. | |
| The following are my contribution signatures: | |
| Circuit # 1 (oprfkeygenproof13) | |
| Contributor # 1 | |
| Contribution Hash: f61ac8ba 76590d27 4ac30b69 179cb346 | |
| 140fcba3 946d62c1 f0fd73ce a0b1fee7 | |
| 04602e8b bf92efd1 f4fb0f4b ca942fad | |
| aca06f61 8cac350b 3bc3ab61 2e06d340 |
This file contains hidden or 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
| { | |
| "my_digital_id": "testuser2", | |
| "name": "John", | |
| "surname": "Doe", | |
| "nationality": "United States", | |
| "dob": "1990-01-15", | |
| "is_adult": true, | |
| "my_digital_identity_id": 1, | |
| "my_digital_id_hash": "ae5deb822e0d71992900471a7199d0d95b8e7c9d05c40a8245a281fd2c1d6684", | |
| "created_at": "2025-02-26T00:44:17.018770+01:00" |
This file contains hidden or 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
| { | |
| "manifestVersion": "4", | |
| "id": "is_adult_credential", | |
| "name": "Proof of Age", | |
| "title": "Date of Birth Verification", | |
| "description": "Generate a proof that a user is a Malaysian citizen and is over 18", | |
| "request": { | |
| "url": "https://gist.githubusercontent.com/dcbuild3r/09012034f3bc25b980443be1d4184278/raw/9e45e42d4ff7a84c07b1e36fc377eaf5d37c8013/response.json", | |
| "method": "GET", | |
| "headers": { |
This file contains hidden or 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
| Hey, I'm dcbuild3r-19372745 and I have contributed to the Anon Aadhaar V2 Trusted Setup Ceremony. | |
| The following are my contribution signatures: | |
| Circuit # 1 (aadhaarverifier) | |
| Contributor # 91 | |
| Contribution Hash: eef06c12 85f77e22 86d5a1e4 4b064849 | |
| 769eda5e ca037931 0fb6a7e3 e57e07a9 | |
| 80c59ac8 525614b2 f0aad676 ed627047 | |
| 285bc64b 665bc2ec 2b1366f0 178145af |
This file contains hidden or 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
| Hey, I'm dcbuild3r-19372745 and I have contributed to the Semaphore V4 Ceremony. | |
| The following are my contribution signatures: | |
| Circuit # 1 (semaphorev4-1) | |
| Contributor # 109 | |
| Contribution Hash: 81f00abd b2b506a2 adc0ce50 dd6b7814 | |
| e7579520 c8630ef4 51e79792 ec4db4ec | |
| 46198dad e4772694 20732bfa e759adbe | |
| 9ed28e07 c02aef29 18ace35d 60b7dced |
This file contains hidden or 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
| Hey, I'm dcbuild3r-19372745 and I have contributed to the ZKP2P Trusted Setup Ceremony. | |
| The following are my contribution signatures: | |
| Circuit # 1 (venmo_send) | |
| Contributor # 13 | |
| Contribution Hash: ba307ed1 ddf7dfc4 c5498e2c 0aafa922 | |
| e128a4b7 76fd785f b4b06a5d 60e0048a | |
| ffd8018a 1180dede b725a6f1 4ae0baae | |
| 6deebf8a 5e9cb8eb 99ed8419 af2f6909 |
This file contains hidden or 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
| Hey, I'm dcbuild3r-19372745 and I have contributed to the nocturne-v1 MPC Phase2 Trusted Setup ceremony. | |
| The following are my contribution signatures: | |
| Circuit # 1 (canonaddrsigcheck) | |
| Contributor # 242 | |
| Contribution Hash: 2b47296f 75db2021 ddff471c dd2ebd29 | |
| 2ac14496 cce53951 8fe4543f 3450b1b7 | |
| 812ed25f 2d0183e4 73af8b34 6c213911 | |
| 45691fbe cd76f6e7 dcecb169 bdef5f3a |
This file contains hidden or 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
| function sumPrimes(num) { | |
| // stores num for later addition to sum of primes | |
| var originalNum = num; | |
| // array that will store the prime numbersof the array | |
| var primeArrayEnd = []; | |
| // finds what primes is num divisible by (it should) | |
| function isPrime(num) { | |
| var primeArray = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257, 263, 269, 271, 277, 281, 283, 293, 307, 311, 313, 317, 331, 337, 347, 349, 353, 359, 367, 373, 379, 383, 389, 397, 401, 409, 419, 421, 431, 433, 439, 443, 449, 457, 461, 463, 467, 479, 487, 491, 499, 503, 509, 521, 523, 541, 547, 557, 563, 569, 571, 577, 587, 593, 599, 601, 607, 613, 617, 619, 631, 641, 643, 647, 653, 659, 661, 673, 677, 683, 691, 701, 709, 719, 727, 733, 739, 743, 751, 757, 761, 769, 773, 787, 797, 809, 811, 821, 823, 827, 829, 839, 853, 857, 859, 863, 877, 881, 883 |