Commit f0103dc8 authored by aniket-engg's avatar aniket-engg Committed by Aniket

muirGlacier support

parent 5030e453
This diff is collapsed.
......@@ -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"
},
......
This diff is collapsed.
......@@ -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",
......
......@@ -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'
......
This diff is collapsed.
......@@ -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",
......
......@@ -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'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment