Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Deprioritize Truffle relays #6183

Merged
merged 1 commit into from
Sep 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ export class VersionRange {
compilerRoots: [
// this order of url root preference was recommended by Cameel from the
// Solidity team here -- https://github.com/trufflesuite/truffle/pull/5008
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@haltman-at perhaps this comment could be updated in a follow-up as it is now out of date as to not throw off future readers?

"https://relay.trufflesuite.com/solc/emscripten-wasm32/",
"https://binaries.soliditylang.org/emscripten-wasm32/",
"https://relay.trufflesuite.com/solc/emscripten-asmjs/",
"https://binaries.soliditylang.org/emscripten-asmjs/",
"https://solc-bin.ethereum.org/bin/",
"https://ethereum.github.io/solc-bin/bin/"
"https://ethereum.github.io/solc-bin/bin/",
"https://relay.trufflesuite.com/solc/emscripten-wasm32/",
"https://relay.trufflesuite.com/solc/emscripten-asmjs/"
]
};
this.config = Object.assign({}, defaultConfig, options);
Expand Down