Git Product home page Git Product logo

ethworks / buidler Goto Github PK

View Code? Open in Web Editor NEW

This project forked from nomicfoundation/hardhat

2.0 2.0 1.0 24.38 MB

Buidler is a task runner for Ethereum smart contract developers. It facilitates performing frequent tasks, such as running tests, automatically checking code for mistakes or interacting with a smart contract.

Home Page: https://buidler.dev

License: Other

JavaScript 1.69% TypeScript 87.29% Solidity 11.00% Shell 0.02%

buidler's People

Contributors

adrianmcli avatar agusx1211 avatar alcuadrado avatar bencicandrej avatar crazyrabbitltc avatar dependabot[bot] avatar duckception avatar federicobond avatar fvictorio avatar fzeoli avatar gorgos avatar itirabasso avatar itsnickbarry avatar jjant avatar marcelomorgado avatar marinomaria avatar martinlsanchez avatar martriay avatar mattaereal avatar miljantekic avatar nebojsa94 avatar paulrberg avatar pcowgill avatar scnale avatar sz-piotr avatar tmilar avatar tranvictor avatar tuler avatar viarnes avatar wighawag avatar

Stargazers

 avatar

Watchers

 avatar

Forkers

logvinovleon

buidler's Issues

Evm methods and required data

Buidler module

  • buidler_getStackTraceFailuresCount
    • node._failedStackTraces (SYNC) - might need to be disabled
  • buidler_addCompilationResult
    • node._vmTraceDecoder (SYNC) - might need to be disabled

EVM module

  • evm_increaseTime
    • node._blockTimeOffsetSeconds (SYNC)
  • evm_setNextBlockTimestamp
    • node.getLatestBlock() (ASYNC) - will be fetched
    • node._nextBlockTimestamp (SYNC)
  • evm_mine
    • node.getLatestBlock() (ASYNC)
    • node.mineEmptyBlock() (ASYNC) - may require changes
  • evm_revert
    • node.revertToSnapshot() (ASYNC) - may require BIG changes
  • evm_snapshot
    • node.takeSnapshot() (ASYNC) - may require BIG changes

Net module

  • net_listening
    • nothing
  • net_peerCount
    • nothing
  • net_version
    • common.networkId() (SYNC) - may require changes

Web3 module

  • web3_clientVersion
    • nothing
  • web3_sha3
    • nothing

ETH module

  • eth_accounts
    • node._accountPrivateKeys (SYNC)
  • eth_blockNumber
    • node._getLatestBlock() (ASYNC)
  • eth_call
    • node.getLocalAccountAddresses
    • node.getLatestBlockNumber
    • node.getBlockGasLimit (ASYNC)
    • node.getGasPrice (ASYNC)
    • node.runCall (ASYNC)
    • and more TODO
  • eth_chainId
    • _common.chainId (SYNC) - may require changes
  • eth_coinbase
    • node.getCoinbaseAddress() (ASYNC)
  • eth_compileLLL
    • nothing
  • eth_compileSerpent
    • nothing
  • eth_compileSolidity
    • nothing
  • eth_estimateGas
    • TODO
  • eth_gasPrice
    • node.getGasPrice (ASYNC)
  • eth_getBalance
    • node._getLatestBlock() (ASYNC)
    • node.getAccountBalance (ASYNC)
  • eth_getBlockByHash
    • node.node.getBlockByHash (ASYNC)
    • node.getBlockTotalDifficulty (ASYNC)
  • eth_getBlockByNumber
    • node.getBlockByNumber (ASYNC)
    • node.getBlockTotalDifficulty (ASYNC)
  • eth_getBlockTransactionCountByHash
    • node.getBlockByHash (ASYNC)
  • eth_getBlockTransactionCountByNumber
    • node.getBlockByNumber (ASYNC)
  • eth_getCode
    • node._getLatestBlock() (ASYNC)
    • node.getCode (ASYNC)
  • eth_getCompilers
    • nothing
  • eth_getFilterChanges
    • node.getFilterChanges (ASYNC)
  • eth_getFilterLogs
    • node.getFilterLogs (ASYNC)
  • eth_getLogs
    • node.getBlockByHash (ASYNC)
    • node.getLogs (ASYNC)
  • eth_getProof
    • nothing
  • eth_getStorageAt
    • node._getLatestBlock() (ASYNC)
    • node.getStorageAt (ASYNC)
  • eth_getTransactionByBlockHashAndIndex
    • node.getBlockByHash (ASYNC)
  • eth_getTransactionByBlockNumberAndIndex
    • node.getBlockByNumber (ASYNC)
  • eth_getTransactionByHash
    • node.getSuccessfulTransactionByHash
    • node.getBlockByTransactionHash
  • eth_getTransactionCount
    • node.getAccountNonceInPreviousBlock
    • node.getLatestBlockNumber
    • node.getAccountNonce
  • eth_getTransactionReceipt
    • node.getSuccessfulTransactionByHash
    • node.getBlockByTransactionHash
    • node.getTxBlockResults
  • eth_getUncleByBlockHashAndIndex
    • nothing
  • eth_getUncleByBlockNumberAndIndex
    • nothing
  • eth_getUncleCountByBlockHash
    • nothing
  • eth_getUncleCountByBlockNumber
    • nothing
  • eth_getWork
    • nothing
  • eth_hashrate
    • nothing
  • eth_mining
    • nothing
  • eth_newBlockFilter
    • node.newBlockFilter (ASYNC)
  • eth_newFilter
    • node.getBlockByHash
    • node.newFilter
  • eth_newPendingTransactionFilter
    • node.newPendingTransactionFilter (ASYNC)
  • eth_pendingTransactions
    • node.getPendingTransactions
  • eth_protocolVersion
    • nothing
  • eth_sendRawTransaction
    • TODO
  • eth_sendTransaction
    • TODO
  • eth_sign
    • node.signPersonalMessage
  • eth_signTransaction
    • nothing
  • eth_signTypedData
    • node.signTypedData
  • eth_submitHashrate
    • nothing
  • eth_submitWork
    • nothing
  • eth_subscribe
    • node.newBlockFilter
    • node.newPendingTransactionFilter
    • node.getBlockByHash
    • node.newFilter
  • eth_syncing
    • nothing
  • eth_uninstallFilter
    • node.uninstallFilter
  • eth_unsubscribe
    • node.uninstallFilter

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.