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

ethernal

v2.3.1

Published

CLI interface for Ethernal

Downloads

112

Readme

ethernal-cli

CLI to sync transactions with Ethernal.

Truffle & Brownie artifacts are also synced through this CLI, if you are using Hardhat, use this plugin.

If you are looking for more detailed doc about Ethernal: https://doc.tryethernal.com

Installation

OSX / Windows

npm install ethernal -g

Linux

On Linux systems, Ethernal CLI relies on libsecret to securely store your password. Make sure it's installed by running the following command, depending on your distribution:

  • Debian/Ubuntu: sudo apt-get install libsecret-1-dev
  • Red Hat-based: sudo yum install libsecret-devel
  • Arch Linux: sudo pacman -S libsecret

Source

Then run:

npm install ethernal -g

Usage

Authentication

Authentication is done through the env variables ETHERNAL_EMAIL abd ETHERNAL_PASSWORD. They need to be set for all the following commands to work properly.

Listening to transactions

This will synchronize blocks, transactions & contracts to Ethernal The CLI will connect to the URL set on the workspace you used last.

ethernal listen

For blocks & transactions, the whole object returned by web3 is synchronized with Ethernal.

Options

-w

Connect to the specified workspace. You can also set it with the env variable ETHERNAL_WORKSPACE.

ethernal listen -w workspace

-d

Specifiy which directory to watch (one or more, separated by a comma)

ethernal listen -d ~/solidity/project,~/solidity/project2

-s

Only listen to transactions, do not watch artifacts for changes. Useful if your blockchain is not on your local environment. Will be ignore if the -l flag is passed

ethernal listen -s

-l

Only watch artifact changes, do not listen to transactions. Useful if you ran the ethernal listen -s somewhere else.

ethernal listen -l

-h

Display help

ethernal listen -h

Artifacts Uploading

Running the listen command in a Truffle or Brownie project will automatically watch your artifacts, and upload the data everytime it changes. You can also pass a path to watch with the -d flag.

ethernal listen -d ~/solidity/my-project

Watch multiple directories at once:

ethernal listen -d ~/solidity/my-project,~/solidity/other-project

By default, only the name and the ABI of the contract are going to be uploaded. If you want to use the "Storage" tab of contracts page, you'll need to have the AST uploaded as well. To do so, pass the --astUpload flag as a parameter. ethernal listen --astUpload (this will upload the ast field, as well as the source field).

For Brownie projects, the flag dev_deployment_artifacts needs to be set to true in brownie-config.yaml.

Syncing a range of blocks

This will sync all blocks in a range (start and end of the range included), and their transactions. It takes two mandatory parameters: -f or --from is the first block to be synchronized, and -t or --to which is the last block.

ethernal sync -f 1 -t 10

Resetting a workspace

This will delete all accounts/blocks/transactions/contracts from a specific workspace

ethernal reset [workspace]

[Public Explorer] Verifying a contract

It is possible to verify a contract deployed on a public explorer using ethernal verify with the parameters described below. Contracts are verified using partial matches, meaning that metadata are stripped before doing the verification.

| Argument | Shorthand | description | Type | Required | |------------------------|-----------|------------------------------------------------------------------------------------------------------------------------------------------------------|---------|----------| | --slug | -s | Slug of the explorer to connect to | string | Yes | | --address | -a | Address of the contract to verify | string | Yes | | --compiler | -c | Solidity compiler version to use (See list here https://raw.githubusercontent.com/ethereum/solc-bin/gh-pages/bin/list.json, use "longVersion" field) | string | Yes | | --name | -n | Name of the contract to verify | string | Yes | | --path | -p | Path to the file containing the contract to verify | string | Yes | | --libraries | -l | Link external library. Format path/to/library.sol:Library1=0x1234,path/to/library.sol:Library2=0x12345 | string | No | | --constructorArguments | -g | Specify constructor arguments (ABI encoded) | string | No | | --evmVersion | -e | Specify EVM version (see https://docs.soliditylang.org/en/v0.8.16/using-the-compiler.html#target-options for valid options). Default to latest | string | No | | --optimizer | -o | Enable optimizer. Default to false | boolean | No | | --runs | -r | Number of runs if optimizer is enabled | number | no |

Example:

ethernal verify \
    --address="0xa4c190681d2b5cc3d86e62379e0bc94afe2282e7" \
    --slug="ethernal" \
    --path="contracts/ExampleERC20.sol" \
    --compiler="v0.8.0+commitc7dfd78e" \
    --name="ExampleERC20" \
    --optimizer=true \
    --runs=1000 \
    --evmVersion="byzantium" \
    --constructorArguments="000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000024869000000000000000000000000000000000000000000000000000000000000"