Merge branch 'master' into nx

pull/3352/head
bunsenstraat 2 years ago committed by GitHub
commit a06a6f0e47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      apps/remix-ide/src/assets/js/loader.js
  2. 6
      libs/remix-ui/solidity-compiler/src/lib/contract-selection.tsx
  3. 2
      package.json

@ -11,6 +11,7 @@ if (domains[window.location.hostname]) {
_paq.push(['enableJSErrorTracking']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
_paq.push(['enableHeartBeatTimer']);
(function () {
var u = "https://matomo.ethereum.org/";
_paq.push(['setTrackerUrl', u + 'matomo.php'])

@ -158,10 +158,10 @@ export const ContractSelection = (props: ContractSelectionProps) => {
swarmLocation: 'Swarm url where all metadata information can be found (contract needs to be published first)',
web3Deploy: 'Copy/paste this code to any JavaScript/Web3 console to deploy this contract'
}
let contractProperties = contractsDetails[selectedContract] || {}
contractProperties.compilerInput = compilerInput
let contractProperties:any = {}
// Make 'compilerInput' first field to display it as first item in 'Compilation Details' modal
contractProperties = JSON.parse(JSON.stringify(contractProperties, ["compilerInput", ...Object.keys(contractProperties)], 4))
if (compilerInput) contractProperties.compilerInput = compilerInput
contractProperties = Object.assign(contractProperties, contractsDetails[selectedContract])
const log = <div className="remixui_detailsJSON">
<TreeView>
{

@ -1,6 +1,6 @@
{
"name": "remix-project",
"version": "0.30.0",
"version": "0.31.0-dev",
"license": "MIT",
"description": "Ethereum Remix Monorepo",
"keywords": [

Loading…
Cancel
Save