opcodes added

pull/7/head
aniket-engg 5 years ago
parent c5f17d3e29
commit f5a222161f
  1. 4
      remix-lib/src/code/opcodes.js
  2. 1798
      remix-tests/package-lock.json
  3. 1
      remix-tests/package.json

@ -27,6 +27,9 @@ var codes = {
0x18: ['XOR', 3, 2, 1, false],
0x19: ['NOT', 3, 1, 1, false],
0x1a: ['BYTE', 3, 2, 1, false],
0x1b: ['SHL', 3, 2, 1, false],
0x1c: ['SHR', 3, 2, 1, false],
0x1d: ['SAR', 3, 2, 1, false],
// 0x20 range - crypto
0x20: ['SHA3', 30, 2, 1, false],
@ -150,6 +153,7 @@ var codes = {
0xf2: ['CALLCODE', 700, 7, 1, true, true],
0xf3: ['RETURN', 0, 2, 0, false],
0xf4: ['DELEGATECALL', 700, 6, 1, true, true],
0xf5: ['CREATE2', 32000, 4, 1, true, true],
0xfa: ['STATICCALL', 700, 6, 1, true, true],
0xfd: ['REVERT', 0, 2, 0, false],

File diff suppressed because it is too large Load Diff

@ -45,6 +45,7 @@
"remix-lib": "0.4.13",
"remix-simulator": "0.1.9-alpha.6",
"remix-solidity": "0.3.16",
"signale": "^1.4.0",
"web3": "1.0.0-beta.36",
"winston": "^3.0.0"
},

Loading…
Cancel
Save