Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
f0103dc8
Commit
f0103dc8
authored
Jan 16, 2020
by
aniket-engg
Committed by
Aniket
Jan 16, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
muirGlacier support
parent
5030e453
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
10 additions
and
9 deletions
+10
-9
package-lock.json
remix-debug/package-lock.json
+0
-0
package.json
remix-debug/package.json
+1
-1
package-lock.json
remix-lib/package-lock.json
+0
-0
package.json
remix-lib/package.json
+3
-3
execution-context.js
remix-lib/src/execution/execution-context.js
+3
-2
package-lock.json
remix-simulator/package-lock.json
+0
-0
package.json
remix-simulator/package.json
+2
-2
types.ts
remix-solidity/src/compiler/types.ts
+1
-1
No files found.
remix-debug/package-lock.json
View file @
f0103dc8
This diff is collapsed.
Click to expand it.
remix-debug/package.json
View file @
f0103dc8
...
...
@@ -20,7 +20,7 @@
"dependencies"
:
{
"commander"
:
"^2.19.0"
,
"ethereumjs-util"
:
"^6.2.0"
,
"ethereumjs-vm"
:
"4.1.
1
"
,
"ethereumjs-vm"
:
"4.1.
3
"
,
"remix-lib"
:
"0.4.19"
,
"web3"
:
"^1.2.4"
},
...
...
remix-lib/package-lock.json
View file @
f0103dc8
This diff is collapsed.
Click to expand it.
remix-lib/package.json
View file @
f0103dc8
...
...
@@ -15,10 +15,10 @@
"main"
:
"./index.js"
,
"dependencies"
:
{
"async"
:
"^2.1.2"
,
"ethereumjs-block"
:
"^2.2.
1
"
,
"ethereumjs-tx"
:
"^2.1.
1
"
,
"ethereumjs-block"
:
"^2.2.
2
"
,
"ethereumjs-tx"
:
"^2.1.
2
"
,
"ethereumjs-util"
:
"^6.2.0"
,
"ethereumjs-vm"
:
"4.1.
1
"
,
"ethereumjs-vm"
:
"4.1.
3
"
,
"ethers"
:
"^4.0.40"
,
"events"
:
"^3.0.0"
,
"solc"
:
"^0.6.0"
,
...
...
remix-lib/src/execution/execution-context.js
View file @
f0103dc8
...
...
@@ -20,7 +20,7 @@ if (typeof window !== 'undefined' && typeof window.web3 !== 'undefined') {
}
const
blankWeb3
=
new
Web3
()
const
currentFork
=
'
istanbul
'
const
currentFork
=
'
muirGlacier
'
/*
extend vm state manager and instanciate VM
*/
...
...
@@ -94,7 +94,8 @@ const vms = {
byzantium
:
createVm
(
'byzantium'
),
constantinople
:
createVm
(
'constantinople'
),
petersburg
:
createVm
(
'petersburg'
),
istanbul
:
createVm
(
'istanbul'
)
istanbul
:
createVm
(
'istanbul'
),
muirGlacier
:
createVm
(
'muirGlacier'
)
}
const
mainNetGenesisHash
=
'0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3'
...
...
remix-simulator/package-lock.json
View file @
f0103dc8
This diff is collapsed.
Click to expand it.
remix-simulator/package.json
View file @
f0103dc8
...
...
@@ -20,8 +20,8 @@
"color-support"
:
"^1.1.3"
,
"commander"
:
"^2.19.0"
,
"cors"
:
"^2.8.5"
,
"ethereumjs-block"
:
"^2.2.
1
"
,
"ethereumjs-util"
:
"^6.
1
.0"
,
"ethereumjs-block"
:
"^2.2.
2
"
,
"ethereumjs-util"
:
"^6.
2
.0"
,
"express"
:
"^4.16.3"
,
"express-ws"
:
"^4.0.0"
,
"merge"
:
"^1.2.0"
,
...
...
remix-solidity/src/compiler/types.ts
View file @
f0103dc8
...
...
@@ -150,7 +150,7 @@ export interface CompilerInputOptions {
language
?:
Language
}
export
type
EVMVersion
=
'homestead'
|
'tangerineWhistle'
|
'spuriousDragon'
|
'byzantium'
|
'constantinople'
|
'petersburg'
|
'istanbul'
|
'
berlin
'
|
null
export
type
EVMVersion
=
'homestead'
|
'tangerineWhistle'
|
'spuriousDragon'
|
'byzantium'
|
'constantinople'
|
'petersburg'
|
'istanbul'
|
'
muirGlacier
'
|
null
export
type
Language
=
'Solidity'
|
'Yul'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment