Latest 4 solc versions are missed.
See original GitHub issueWhen listing the remote versions the loop misses the last 4 versions in the list.
for (var i = sources.length - 1; i >= 0; i--) {
// FIXME: use build as well
var version = sources[i].match(/^soljson-v([0-9.]*)-.*.js$/);
// Skip invalid lines
if (!version) {
continue;
}
if (version[1] === wanted) {
downloadBinary(sources[i].match(/^soljson-(.*).js$/)[1]);
return;
}
}
Issue Analytics
- State:
- Created 7 years ago
- Comments:11 (8 by maintainers)
Top Results From Across the Web
solc-js - npm
Solidity compiler. Latest version: 0.8.17, last published: 3 months ago. Start using solc in your project by running `npm i solc`.
Read more >How to upgrade solidity compiler in truffle
I'm trying the latest development version of solc, but I like the truffle testing framework. Is there a way to force truffle to...
Read more >ParserError: Source file requires different compiler version
Now I get a different error. Completely lost here :( terminal: INFO: Could not find files for the given pattern(s). Brownie v1 ...
Read more >truffle-solc-select - npm Package Health Analysis - Snyk
Handles multiple solc version compilation between smart contracts using the ... for a period of the last 12 months, excluding weekends and known...
Read more >安装Solidity编译器 — Solidity develop 文档 - Read the Docs
We also have PPAs for Ubuntu. For the latest stable version. sudo add-apt-repository ppa:ethereum/ethereum sudo apt-get update sudo apt-get install solc.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@Denton-L thank you! Answered your question on the PR.
@Latrasis yes, good idea!