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

@verax-attestation-registry/verax-contracts

v0.0.3

Published

Verax Attestation Registry core smart contracts

Downloads

25

Readme

Verax Attestation Registry - Contracts

Verax is mainly composed of a set of smart contracts that allows anyone to read and write attestations of any type and any subject.

Foundry Installation

Using Foundryup

Foundryup is the Foundry toolchain installer. Open your terminal and run the following command:

curl -L https://foundry.paradigm.xyz | bash This will install Foundryup, then simply follow the instructions on-screen, which will make the foundryup command available in your CLI.

Running foundryup by itself will install the latest (nightly) precompiled binaries: forge, cast, anvil and chisel. See foundryup --help for more options, like installing from a specific version or commit.

ℹ️ Note

If you're on Windows, you will need to install and use Git BASH or WSL, as your terminal, since Foundryup currently does not support Powershell or Cmd.

For more details on installation, see the installation guide in the book.

If you're experiencing any issues while installing, check out the FAQ.

Forge - build and test

We can build the project with forge build:

forge build

And run the tests with forge test:

forge test

And get the coverage with fotge coverage:

forge coverage

Verax contracts deployment

  1. Copy the .env.example file to a .env file
  2. Fill it with your Infura key
  3. Add your private key
  4. To verify the contracts on the dedicated explorer, also add your Etherscan/Lineascan/Arbiscan API key
  5. Deploy all contracts via the pnpm run deploy NETWORK_NAME command (replacing NETWORK_NAME with the name of the targeted network)
  6. Note down the summarized addresses (proxies), and the total logs can be of interest too
  7. Gather the first list of issuers addresses
  8. Set the issuers via the PortalRegistry’s setIssuers method
  9. Deploy an instance of DefaultPortal via the PortalRegistry’s deployDefaultPortal method and note down its address
  10. Verify this contract via npx hardhat verify --network NETWORK_NAME ADDRESS (replacing NETWORK_NAME with the name of the targeted network and ADDRESS with the address of the freshly deployed DefaultPortal)
  11. Update the network files via pnpm run reimport NETWORK_NAME (replacing NETWORK_NAME with the name of the targeted network)

Verax contracts upgrade

1. Check all registries implementations follow the upgradeability rules

Run pnpm run check:implementations to check if the local versions of the registries follow the upgradeability rules.

:warning: Note: this is a static check, not run against the already deployed contracts.

2. Check all registries implementations are upgradeable

Run pnpm run check:upgradeability NETWORK_NAME (replacing NETWORK_NAME with the name of the targeted network) to check if the already deployed registries are upgradable to the new local versions.

:warning: Note: this is a dynamic check, run against the already deployed contracts.

3. Do upgrade

  1. Check that your .env file contains the address of all the proxies for the targeted network
  2. Upgrade only the implementations that changed since the last upgrade via the pnpm run upgrade NETWORK_NAME command
  3. Optional: Upgrade all the implementations by forcing their re-deployment via the pnpm run upgrade:force NETWORK_NAME command

:warning: Note: Forcing the redeployment of all the implementations is more expensive!

4. Update the network files

:warning: Note: this script must only be run on a branch/commit corresponding to the version of the contracts deployed on the targeted network!.

Run pnpm run reimport NETWORK_NAME (replacing NETWORK_NAME with the name of the targeted network) to re-generate the network files describing the deployed contracts.

:warning: Note: This step is mandatory to avoid being de-synchronized.

Utils

Verify with arguments

Change the arguments you want to use fpr the verify action in contracts/script/arguments.ts, then run:

npx hardhat verify --network NETWORK_NAME CONTRACT_ADDRESS --constructor-args contracts/script/arguments.ts