Skip to content

Instantly share code, notes, and snippets.

@artem-bakuta
artem-bakuta / VkCompressionSnarkVerifier.py
Last active February 6, 2024 09:56
Python Script to verify vk.json and compression-snark.json with generating them from https://github.com/artem-bakuta/Nova/tree/solidity-verifier-pp-spartan-keys_verifier
import subprocess
import sys
import os
import re
def execute_shell_command(command):
try:
result = subprocess.run(command, shell=True, capture_output=True, text=True)
return result.stdout