diff --git a/apps/learneth/src/redux/models/workshop.ts b/apps/learneth/src/redux/models/workshop.ts index daf41b5ff9..8c975cc48c 100644 --- a/apps/learneth/src/redux/models/workshop.ts +++ b/apps/learneth/src/redux/models/workshop.ts @@ -56,7 +56,6 @@ const Model: ModelType = { const url = `${apiUrl}/clone/${encodeURIComponent(payload.name)}/${payload.branch}?${Math.random()}` console.log('loading ', url) const {data} = yield axios.get(url) - console.log(data) const repoId = `${payload.name}-${payload.branch}` for (let i = 0; i < data.ids.length; i++) { diff --git a/apps/remix-ide-e2e/src/local-plugin/src/app/app.tsx b/apps/remix-ide-e2e/src/local-plugin/src/app/app.tsx index 88c9bc9646..2b1479dda1 100644 --- a/apps/remix-ide-e2e/src/local-plugin/src/app/app.tsx +++ b/apps/remix-ide-e2e/src/local-plugin/src/app/app.tsx @@ -46,7 +46,6 @@ function App() { const customProfiles = ['menuicons', 'tabs', 'solidityUnitTesting', 'hardhat-provider', 'notification'] client.testCommand = async (data: any) => { - console.log(data) methodLog(data) } diff --git a/libs/remix-core-plugin/src/lib/helpers/fetch-blockscout.ts b/libs/remix-core-plugin/src/lib/helpers/fetch-blockscout.ts index 80547af2d1..a2984c64c3 100644 --- a/libs/remix-core-plugin/src/lib/helpers/fetch-blockscout.ts +++ b/libs/remix-core-plugin/src/lib/helpers/fetch-blockscout.ts @@ -5,7 +5,6 @@ export const fetchContractFromBlockscout = async (plugin, endpoint, contractAddr try { data = await fetch('https://' + endpoint + '/api?module=contract&action=getsourcecode&address=' + contractAddress) data = await data.json() - console.log(data) // blockscout api doc https://blockscout.com/poa/core/api-docs if (data.message === 'OK' && data.status === "1") { if (data.result.length) { diff --git a/releaseDetails.json b/releaseDetails.json index 853c4d3742..b2d614478a 100644 --- a/releaseDetails.json +++ b/releaseDetails.json @@ -1,9 +1,9 @@ { "version": "v0.45.0", "title": "RELEASE HIGHLIGHTS", - "highlight1": "Remix VM state can be saved now", + "highlight1": "Remix VM state can now be saved", "highlight2": "Verified contracts can be fetched from Blockscout explorer", - "highlight3": "Saved contracts are pinned contracts now and stored in workspace", + "highlight3": "Saved contracts are now stored in workspaces as 'Pinned Contracts'", "highlight4": "", "more": "Read More", "moreLink": "https://medium.com/remix-ide/remix-release-v0-45-0-dcb16ff6bf03"