Skip to content

Instantly share code, notes, and snippets.

View shep-eth's full-sized avatar

shep.eth shep-eth

View GitHub Profile
@shep-eth
shep-eth / nocturne-v1_attestation.log
Created November 1, 2023 13:45
Attestation for nocturne-v1 MPC Phase 2 Trusted Setup ceremony
Hey, I'm shep-eth-88466792 and I have contributed to the nocturne-v1 MPC Phase2 Trusted Setup ceremony.
The following are my contribution signatures:
Circuit # 1 (canonaddrsigcheck)
Contributor # 155
Contribution Hash: d7b525e0 0d7cdcdf 834e85b7 98b5ba54
017cb724 5bd40865 4f42e6e6 7a46e423
99107781 57461b15 7400d399 eccd6405
6f679298 fa2828d9 67f28f68 6f8c2d80
const fs = require("fs");
const shuffle = (array) => {
let currentIndex = array.length,
randomIndex;
// While there remain elements to shuffle...
while (currentIndex != 0) {
// Pick a remaining element...
randomIndex = Math.floor(Math.random() * currentIndex);