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

@graphprotocol/everest-contracts

v0.0.1

Published

Everest is a DAO that allows any Ethereum account to apply as a member. Whitelisted members can then challenge any member they believe is representing themselves incorrectly, and with a majority vote they can be removed from the list.

Downloads

8

Readme

Everest Contracts

Everest is a DAO that allows any Ethereum account to apply as a member. Whitelisted members can then challenge any member they believe is representing themselves incorrectly, and with a majority vote they can be removed from the list.

Everest is used specifically to curate a list of crypto projects. However, it is encouraged that this code is forked, and used to curate any list.

Instructions

These instructions are specific to just deploying contracts. The root folder has more instructions for deploying the whole dapp.

Building Solidity and ABIs

Run yarn build The package.json has a command yarn build that will run truffle build, run a script to extract the abis, and run a script to create flattened contracts.

Linting

This project uses Prettier, Solium, and eslint. Node scripts are in package.json to help.

Testing

  1. Make sure Node 12 is installed (It might work with newer versions, but it is unconfirmed)
  2. Make sure Truffle is installed globally. It currently works with version v5.0.43. The command is yarn global add truffle
  3. Run yarn at contracts root directory
  4. Start ganache with ganache-cli -d -l 9900000 -i 9545. Note - we use 9,900,000 because that is what mainnet eth is doing today (Dec 2019)
  5. Run truffle test
  6. Truffle stores the contracts each time you deploy. So the easiest way to restart is to just restart ganache with CRTL-C, and then start it up again and run truffle test

Current Contract Addresses

See addresses.json

Deploying

  1. Deploy new contracts to Ropsten with yarn deploy-ropsten. Mainnet is yarn deploy-mainnet.
  2. Get the new contract addresses from the deployment. They are logged in the terminal output from deploying. Put these contract addresses into addresses.json