chiefbiiko / sp1-safe

Safe multisig zkzk prover

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sp1-safe

ci release

Prove a Safe multisig over a message in zk

# current program vkey hash on the ampere machine
0x3358220a0e1210f615022e614e5301c91348f744615544606838afdc41ad5725

Commands

Build the RISC-V ELF binary:

cd ./program
cargo prove build

Propose a Safe message multisig:

RPC=https://yorpc.io SAFE=0x249....3423 PRIVATE_KEY=0x... MSG=halloc node ./lib/auxiliary/proposeSignMsg.js

Then confirm the Safe transaction with the required number of signers. Once executed you can proceed running the script or server binarires with the associated message hash...


Obtain a Safe message hash:

RPC=https://yorpc.io SAFE=0x249....3423 MSG=halloc node ./lib/auxiliary/msgHash.js

Run the example script:

cd ./script

SAFE=0x38Ba7...336EDDc \
MSG_HASH=0xa225aed0c0283cef82b24485b8b28fb756fc9ce83d25e5cf799d0c8aa20ce6b7 \
RUST_LOG=info \
RUST_BACKTRACE=full \
  time cargo run --release

Build and run the server:

cargo build --manifest-path ./server/Cargo.toml --release
./server/target/release/sp1-safe-server

Fetch a prebuilt sp1-safe-server binary and run it as a systemd service:

VERSION=v0.1.0
case "$(uname -a)" in
  Linux*)  target=x86_64-unknown-linux-gnu  ;;
  Darwin*) target=x86_64-apple-darwin ;;
esac
temp=$(mktemp)
curl -sSfL https://github.com/chiefbiiko/sp1-safe/releases/download/$VERSION/sp1-safe-server-$VERSION-$target.gz | gunzip > $temp
chmod +x $temp
sudo cp $temp /usr/local/bin/sp1-safe-server
curl -sSfL https://raw.githubusercontent.com/chiefbiiko/sp1-safe/main/server/sp1-safe-server.service | sudo tee /etc/systemd/system/sp1-safe-server.service
systemctl daemon-reload
systemctl start sp1-safe-server.service

Endpoints

POST /proof

Request

{
  "chain_id": 11155111,
  "safe_address": "0x...",
  "message_hash": "0x..."
}

Response

200

{
  "chain_id": 11155111,
  "safe_address": "0x...",
  "message_hash": "0x...",
  "block_number": 34234234,
  "block_hash": "0x...",
  "challenge": "0x...",
  "proof": "0x..."
}

GET /status

Response

200

{ "status": "ok" }

About

Safe multisig zkzk prover


Languages

Language:Solidity 51.2%Language:Rust 42.9%Language:Shell 3.8%Language:JavaScript 2.1%