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

@tenderly/loki-deployer

v0.1.1

Published

Solidity IaC deployment tool

Downloads

3

Readme

Ignition

Getting Started

Overview

Hardhat Ignition is an Ethereum deployment system for structuring, automating and distributing smart contract deployment setups. It helps developers clearly articulate and reliably execute the exact deployment result they're looking for.

The deployment definition is structured following a dependency injection pattern combined with an "infrastructure as code" approach. This means that contract dependencies are explicitly specified for each contract, and a deployment setup is code that describes initialization and relationships across your contracts.

When it comes to execution, Hardhat Ignition offers a series of features to facilitate and smooth out the often complex process of contract deployment. This includes:

  • Managing multiple deployment environments with different setups.
  • Automated retry and resume mechanisms.
  • Automated gas cost optimization, transaction batching and parallelization for cheaper and faster deployments by default.
  • Tracking of deployed addresses.
  • Availability of hooks throughout the deployment process for running arbitrary maintenance or initialization commands.

In combination, these features provide the infrastructure needed to confidently and reliably run deployment processes that take a long time without needing to start from scratch somewhere during the process because something went wrong.

Hardhat Ignition is designed around the concepts of contracts bindings and modules. A contract binding is the definition for how to instantiate a given contract. A module is a collection of bindings, and a module can contain other modules. When you execute a deployment you're deploying a module.

Using Hardhat Ignition you can manage and structure the deployment of any Ethereum smart contract system, regardless of its size or complexity.

Installation

Quick Start

npm i @tenderly/hardhat-ignition --dev
npm i ts-node typescript --dev
mkdir deployment/

deployment/greeter.module.ts:

import { buildModule, ModuleBuilder } from '@tenderly/hardhat-ignition';

export const GreeterModule = buildModule('GreeterModule', async (m: ModuleBuilder) => {
  const Greeter = m.contract('Greeter', 'Hola mundo!');
});

$ npx hardhat-ignition node

$ npx hardhat-ignition deploy

Documentation

Currently, only documentation is available here: Docs

Team

Designed and built by Tenderly