The Wayback Machine - https://web.archive.org/web/20220430193810/https://github.com/topics/tooling
Skip to content
#

tooling

Here are 565 public repositories matching this topic...

dbeal-eth
dbeal-eth commented Jan 26, 2022

It is currently not possible to specify the chain ID for a hardhat network invoked with npx hardhat node through any means other than the config file. This means it is impossible to specify the --chain-id argument in the command line, or execute a chain host pragmatically with hre.run('node', { chainId: 100 }).

Please add the chainId parameter to the node command so it is possible to

good first issue type:feature
SusheendharVijay
SusheendharVijay commented Apr 28, 2022

Component

Cast

Describe the feature you would like

Right now cast interface only works on abi's from etherscan or abi files.
cast interface "./out/Contract.sol/Contract.json" will give an error.

It would be nice if it could also generate interfaces from the forge build artifacts (out/Contract.sol/Contract.json), where we already have the abi for the compiled contracts.

good first issue T-feature C-cast P-low
log4brains
thomvaill
thomvaill commented Apr 30, 2021

Feature Request

Feature Suggestion

This is working:

- Status: superseded by [20201016-use-the-adr-slug-as-its-unique-id](20201016-use-the-adr-slug-as-its-unique-id.md)

This is not working:

- Status: superseded by [custom name](20201016-use-the-adr-slug-as-its-unique-id.md)

-> Let's make it work!

Context

Today, the link name MUST b

feature good first issue
bbatsov
bbatsov commented Aug 14, 2020

Currently the eldoc type is either function or variable:

(defn- extract-eldoc
  [info]
  (if-let [arglists (seq (-> info extract-arglists format-arglists))]
    {:eldoc arglists :type "function"}
    {:type "variable"}))

This means that the result users see is not particularly accurate, not to mention that the function check is pretty primitive. We should add types like `m

enhancement good first issue
WhatTheStack

Improve this page

Add a description, image, and links to the tooling topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the tooling topic, visit your repo's landing page and select "manage topics."

Learn more