npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@nilfoundation/evm-mina-state

v1.0.7

Published

In-EVM Mina State Management

Downloads

102

Readme

In-EVM Mina State Verification

Discord Telegram Twitter

This repository contains In-EVM Mina State verification project.

Dependencies

Clone

git clone [email protected]:NilFoundation/mina-state-proof.git
cd mina-state-proof

Install dependency packages

npm i

Compile contracts

npx hardhat compile

Test

npx hardhat test #Execute tests
REPORT_GAS=true npx hardhat test # Test with gas reporting

Deploy

Launch a local-network using the following

npx hardhat node

To deploy to test environment (ex: Ganache)

npx hardhat deploy  --network localhost 

Hardhat re-uses old deployments, to force re-deploy add the --reset flag above

Usage

Below are two tasks that execute flows to validate the ledger state and validate the account state. Please note, these work against the above deployment, hence, you must run the deployment before executing the following.

Validate Ledger State

npx hardhat validate_ledger_state --proof ./test/data/proof_v.data \ 
--ledger jwYPLbRQa4X86tSJs1aTzusf3TNdVTj58oyWJQB132sEGUtKHcB \  
--network localhost

Inputs

  • proof : File path with the full Mina ledger state proof retrieved from proof market.
  • ledger: This is the hash of the ledger which this proof attests.
  • network: Network to run this task against.

Validate Account State

npx hardhat validate_account_state --proof dummyFlag \  
--state ./examples/data/account_data.json \
--ledger jwYPLbRQa4X86tSJs1aTzusf3TNdVTj58oyWJQB132sEGUtKHcB \ 
--network localhost

Inputs

  • proof : File path of the account state proof retrieved from the proof market.
  • state : File path of the account state which the above proof attests to.
  • ledger: Hash of the ledger against which the account state is validated.
  • network: Network to run this task against.

Account state file structure

{
  "public_key" : public key of zkApp/User Account,
  "balance" : {
    "liquid" : Unlocked balance in MINA  ,
    "locked" : Locked/Staked balance in MINA 
  },
  "state": 8 byte state of zkApp/user account
}

See examples/data/account_data.json for examples.

Community

Issue reports are preferred to be done with Github Issues in here: https://github.com/nilfoundation/mina-state-proof/issues.

Forum-alike discussion topics are better to be done with Discussions section in here: https://github.com/NilFoundation/mina-state-proof/discussions

Usage and development questions are preferred to be asked in a Telegram chat: https://t.me/nilfoundation or in Discord (https://discord.gg/KmTAEjbmM3)