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

tt-hardhat

v0.1.6

Published

Hardhat TypeScript plugin boilerplate

Downloads

5

Readme

ThunderCore Hardhat Plugin

This repo contains configs and features that aims to standardize and jumpstart your smart contract dev experience on ThunderCore:

  • ThunderCore network configurations
  • Contract deployment logging

NPM Package link

Usage

yarn add -D tt-hardhat

Then in hardhat.config

import "tt-hardhat";

Config

account: KEY=$PRIVATE_KEY in your .env file

Features

Networks added

  1. thundercore-testnet (chain ID - 18)
  2. thundercore-mainnet (chain ID - 108)

Use deploy account for the above networks: simply add a KEY environment variable

Log contracts deployed

// in your deployment file:
import { ethers, network, upgrades, logDeployContracts } from "hardhat";
logDeployContracts(chainId, { [contractName: string]: Contract });

Package development

To start working on your project, just run

yarn
or
npm install

Plugin development

Read Hardhat's Plugin Development Guide

Publish

yarn publish make sure to yarn login if you haven't

Testing

(From Hardhat) Running yarn run test will run every test located in the test/ folder.

Testing package on project

  1. run yarn link in root
  2. cd into test/project, then run yarn link tt-hardhat to link to local package
  3. if package's code is changed, run yarn build to rebuild the package
  4. do tests...
  5. after testing, run yarn unlink tt-hardhat in test/project, then yarn unlink in root.

Building the project

Just run yarn build ️👷