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

fs-eth-tools-cli

v1.0.5

Published

Useful toolset from FailSafe team to perform various operations on EVM blockchain using command line

Downloads

8

Readme

fs-eth-tools-cli

Useful toolset to perform various operations on EVM blockchain on the CLI

Installation

  1. Install globally using npm install -g fs-eth-tools-cli
  2. Execute commands using the command prefix fs-eth-tools

Available commands

| Command | Explaination | | ------------ | ------------ | | cco | Manage the ownership of an Ethereum smart contract that inherits OpenZeppelin's Ownable contract | | ace | Manage the roles of an Ethereum smart contract that inherits OpenZeppelin's AccessControlEnumerable contract | | help| Display list of available Commands |

Available sub-commands under each command

| Command | Sub-command | Arguements | Explaination | Example | | ------------ | ------------ | ------------ | ------------ | ------------ | | cco | eoa-to-safe | 1.contractAddress 2.safeAddress 3.chainId | Convert the ownership of an Ethereum smart contract from an externally owned wallet address to a Safe (multi-signature) wallet address | fs-eth-tools cco 0x475e0DB6c69117565A85cd6cBc06a917274CE189 0xD503aa20Fd1704B8600933E531804d3d4B58672d 137 | | cco | help | | Display list of available sub-commands for cco | fs-eth-tools cco help | | ace | check-if-account-has-role | 1.contractAddress 2.walletAddress 3.roleBytes32 4.chainId | Check if an account has a role on the Ethereum smart contract that inherits OpenZeppelin's AccessControlEnumerable contract | fs-eth-tools ace check-if-account-has-role 0x986F5dD85b7C7361ed9Fc4b5094d3C5eD1a34fDa 0xe7804c37c13166fF0b37F5aE0BB07A3aEbb6e245 0x0000000000000000000000000000000000000000000000000000000000000003 137 | | ace | check-if-account-has-role | 1.contractAddress 2.walletAddress 3.roleBytes32 4.chainId | Grant role to an address on the Ethereum smart contract that inherits OpenZeppelin's AccessControlEnumerable contract | fs-eth-tools ace grant-role-to-address 0x986F5dD85b7C7361ed9Fc4b5094d3C5eD1a34fDa 0xe7804c37c13166fF0b37F5aE0BB07A3aEbb6e245 0x0000000000000000000000000000000000000000000000000000000000000003 137 | | ace | grant-role-to-address | 1.contractAddress 2.walletAddress 3.roleBytes32 4.chainId | Grant role to an address on the Ethereum smart contract that inherits OpenZeppelin's AccessControlEnumerable contract | fs-eth-tools ace grant-role-to-address 0x986F5dD85b7C7361ed9Fc4b5094d3C5eD1a34fDa 0xe7804c37c13166fF0b37F5aE0BB07A3aEbb6e245 0x0000000000000000000000000000000000000000000000000000000000000003 137 | | ace | revoke-role-from-address | 1.contractAddress 2.walletAddress 3.roleBytes32 4.chainId | Revoke role from an address on the Ethereum smart contract that inherits OpenZeppelin's AccessControlEnumerable contract | fs-eth-tools ace revoke-role-from-address 0x986F5dD85b7C7361ed9Fc4b5094d3C5eD1a34fDa 0xe7804c37c13166fF0b37F5aE0BB07A3aEbb6e245 0x0000000000000000000000000000000000000000000000000000000000000003 137 | | ace | list-accounts-for-role | 1.contractAddress 2.roleBytes32 3.chainId | List accounts that have a given role on the Ethereum smart contract that inherits OpenZeppelin's AccessControlEnumerable contract | fs-eth-tools ace list-accounts-for-role 0x986F5dD85b7C7361ed9Fc4b5094d3C5eD1a34fDa 0x0000000000000000000000000000000000000000000000000000000000000003 137 | | ace | help | | Display list of available sub-commands for ace | fs-eth-tools ace help |