acuarica / evm

A Symbolic Ethereum Virtual Machine (EVM) bytecode interpreter, parser and decompiler, along with several other utils for programmatically extracting information from EVM bytecode.

Home Page:https://acuarica.github.io/evm/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Should we support Node 14?

acuarica opened this issue · comments

Tests fail when running them with Node 14. See https://github.com/acuarica/evm/actions/runs/4833210841/jobs/8612936982.

We use the method Array.prototype.at() to get the last Stmt, but it's only supported from Node 16.6.0.

We just reenable full test support for Node 16 in e251b50. This was because we introduced fetch to download solc compilers, which is only available natively in Node 18. This commit removes the fetch dependency.

So for now, we don't plan to support Node 14.