Skip to content

Instantly share code, notes, and snippets.

@axic
Created August 4, 2016 18:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save axic/ab20c6b79d4fc8b6bd1db9a683b8ef10 to your computer and use it in GitHub Desktop.
Save axic/ab20c6b79d4fc8b6bd1db9a683b8ef10 to your computer and use it in GitHub Desktop.
EEI v0.1

Block

  • blockHash -> getBlockHash
  • coinbase -> getCoinbase
  • difficulty -> getDifficulty
  • gasLimit -> getBlockGasLimit
  • number -> getBlockNumber
  • timestamp -> getBlockTimestamp

Tx

  • gasPrice -> getTxGasPrice
  • origin -> getTxOrigin

Self

  • address -> getAddress
  • balance -> getBalance
  • sstore -> storageStore
  • sload -> storageLoad
  • codeSize -> getCodeSize
  • destruct -> selfDestruct

Call

  • caller -> getCaller
  • callValue -> getCallValue
  • callDataCopy
  • callDataSize
  • gasLeft -> getGasLeft
  • gasUsed [REMOVE]
  • return

Kernel

  • addGas -> useGas / burnGas / consumeGas
  • call
  • callDelegate
  • codeCopy -> codeCopy
  • create
  • extCodeCopy -> externalCodeCopy
  • extCodeSize -> getExternalCodeSize
  • log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment