Skip to content
#

tooling

Here are 480 public repositories matching this topic...

next.js
wolflo
wolflo commented Jul 28, 2021

Testing methods like evm_mine and evm_increaseTime expect integer parameters. Unlike other methods, they reject these parameters if they are not decimal-encoded.

To reproduce

npx hardhat --version -> 2.5.0

Run npx hardhat node and make the following rpc calls:

> curl -H "Content-Type: application/json" -X POST --data \
        '{"id":1337,"jsonrpc":"2.0","method":"evm
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

log4brains

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