New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

cairovm_verifier

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

cairovm_verifier

CairoVM verifier - starknet_with_keccak & blake2s

unpublished
latest
Source
npmnpm
Version
0.0.3
Version published
Maintainers
0
Created
Source

Cairo-VM Verifier

Version Continuous Integration

This is the Rust implementation of the Cairo-VM STARK verifier with layouts. The code is inspired by StarkWare's Cairo-verifier implementation in Cairo0.

Example usage

import init, { cairovm_verify } from 'cairovm_verifier';

async function run(proof_json) {
  await init();  // Initialize the Wasm module
  try {
    const [programHash, programOutput] = JSON.parse( await cairovm_verify(proof_json) );
  } catch (err) {
    console.error(`Verification failed: ${err}`);
  }
}

Contributing

Feel free to open issues or submit pull requests to help improve this project.

Keywords

stark

FAQs

Package last updated on 20 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts