good morning!!!!

Skip to content
Snippets Groups Projects
  1. Jan 21, 2019
    • Kris Shinn's avatar
      GraphQL master FF for review (#18445) · f91312db
      Kris Shinn authored
      
      * Initial work on a graphql API
      
      * Added receipts, and more transaction fields.
      
      * Finish receipts, add logs
      
      * Add transactionCount to block
      
      * Add types  and .
      
      * Update Block type to be compatible with ethql
      
      * Rename nonce to transactionCount in Account, to be compatible with ethql
      
      * Update transaction, receipt and log to match ethql
      
      * Add  query operator, for a range of blocks
      
      * Added ommerCount to Block
      
      * Add transactionAt and ommerAt to Block
      
      * Added sendRawTransaction mutation
      
      * Add Call and EstimateGas to graphQL API
      
      * Refactored to use hexutil.Bytes instead of HexBytes
      
      * Replace BigNum with hexutil.Big
      
      * Refactor call and estimateGas to use ethapi struct type
      
      * Replace ethgraphql.Address with common.Address
      
      * Replace ethgraphql.Hash with common.Hash
      
      * Converted most quantities to Long instead of Int
      
      * Add support for logs
      
      * Fix bug in runFilter
      
      * Restructured Transaction to work primarily with headers, so uncle data is reported properly
      
      * Add gasPrice API
      
      * Add protocolVersion API
      
      * Add syncing API
      
      * Moved schema into its own source file
      
      * Move some single use args types into anonymous structs
      
      * Add doc-comments
      
      * Fixed backend fetching to use context
      
      * Added (very) basic tests
      
      * Add documentation to the graphql schema
      
      * Fix reversion for formatting of big numbers
      
      * Correct spelling error
      
      * s/BigInt/Long/
      
      * Update common/types.go
      
      * Fixes in response to review
      
      * Fix lint error
      
      * Updated calls on private functions
      
      * Fix typo in graphql.go
      
      * Rollback ethapi breaking changes for graphql support
      Co-Authored-By: default avatarArachnid <arachnid@notdot.net>
      f91312db
  2. Jan 02, 2019
  3. Dec 14, 2018
  4. Nov 28, 2018
  5. Nov 20, 2018
    • Franklin's avatar
      . · 21dd59bd
      Franklin authored
      21dd59bd
  6. Nov 14, 2018
  7. Oct 15, 2018
  8. Oct 09, 2018
    • Felix Lange's avatar
      rpc: fix subscription corner case and speed up tests (#17874) · 4e474c74
      Felix Lange authored
      Notifier tracks whether subscription are 'active'. A subscription
      becomes active when the subscription ID has been sent to the client. If
      the client sends notifications in the request handler before the
      subscription becomes active they are dropped. The tests tried to work
      around this problem by always waiting 5s before sending the first
      notification.
      
      Fix it by buffering notifications until the subscription becomes active.
      This speeds up all subscription tests.
      
      Also fix TestSubscriptionMultipleNamespaces to wait for three messages
      per subscription instead of six. The test now finishes just after all
      notifications have been received and doesn't hit the 30s timeout anymore.
      Unverified
      4e474c74
  9. Sep 25, 2018
    • Martin Holst Swende's avatar
      cmd/clef, signer: security fixes (#17554) · d3441ebb
      Martin Holst Swende authored
      * signer: remove local path disclosure from extapi
      
      * signer: show more data in cli ui
      
      * rpc: make http server forward UA and Origin via Context
      
      * signer, clef/core: ui changes + display UA and Origin
      
      * signer: cliui - indicate less trust in remote headers, see https://github.com/ethereum/go-ethereum/issues/17637
      
      * signer: prevent possibility swap KV-entries in aes_gcm storage, fixes #17635
      
      * signer: remove ecrecover from external API
      
      * signer,clef: default reject instead of warn + valideate new passwords. fixes #17632 and #17631
      
      * signer: check calldata length even if no ABI signature is present
      
      * signer: fix failing testcase
      
      * clef: remove account import from external api
      
      * signer: allow space in passwords, improve error messsage
      
      * signer/storage: fix typos
      Unverified
      d3441ebb
    • HackyMiner's avatar
  10. Sep 19, 2018
  11. Sep 03, 2018
  12. Aug 09, 2018
  13. Jul 31, 2018
    • Ryan Schneider's avatar
      rpc: make HTTP RPC timeouts configurable, raise defaults (#17240) · 5d7e1853
      Ryan Schneider authored
      * rpc: Make HTTP server timeout values configurable
      
      * rpc: Remove flags for setting HTTP Timeouts, configuring via .toml is sufficient.
      
      * rpc: Replace separate constants with a single default struct.
      
      * rpc: Update HTTP Server Read and Write Timeouts to 30s.
      
      * rpc: Remove redundant NewDefaultHTTPTimeouts function.
      
      * rpc: document HTTPTimeouts.
      
      * rpc: sanitize timeout values for library use
      5d7e1853
  14. Jul 24, 2018
  15. Jul 22, 2018
  16. Jul 16, 2018
  17. Jul 09, 2018
  18. Jun 14, 2018
    • Elad's avatar
      all: library changes for swarm-network-rewrite (#16898) · 1836366a
      Elad authored
      This commit adds all changes needed for the merge of swarm-network-rewrite.
      The changes:
      
      - build: increase linter timeout
      - contracts/ens: export ensNode
      - log: add Output method and enable fractional seconds in format
      - metrics: relax test timeout
      - p2p: reduced some log levels, updates to simulation packages
      - rpc: increased maxClientSubscriptionBuffer to 20000
      1836366a
  19. Jun 11, 2018
  20. Jun 04, 2018
  21. Jun 02, 2018
  22. May 03, 2018
  23. Apr 19, 2018
  24. Apr 18, 2018
  25. Apr 16, 2018
    • Martin Holst Swende's avatar
      cmd/clef, signer: initial poc of the standalone signer (#16154) · ec3db0f5
      Martin Holst Swende authored
      * signer: introduce external signer command
      
      * cmd/signer, rpc: Implement new signer. Add info about remote user to Context
      
      * signer: refactored request/response, made use of urfave.cli
      
      * cmd/signer: Use common flags
      
      * cmd/signer: methods to validate calldata against abi
      
      * cmd/signer: work on abi parser
      
      * signer: add mutex around UI
      
      * cmd/signer: add json 4byte directory, remove passwords from api
      
      * cmd/signer: minor changes
      
      * cmd/signer: Use ErrRequestDenied, enable lightkdf
      
      * cmd/signer: implement tests
      
      * cmd/signer: made possible for UI to modify tx parameters
      
      * cmd/signer: refactors, removed channels in ui comms, added UI-api via stdin/out
      
      * cmd/signer: Made lowercase json-definitions, added UI-signer test functionality
      
      * cmd/signer: update documentation
      
      * cmd/signer: fix bugs, improve abi detection, abi argument display
      
      * cmd/signer: minor change in json format
      
      * cmd/signer: rework json communication
      
      * cmd/signer: implement mixcase addresses in API, fix json id bug
      
      * cmd/signer: rename fromaccount, update pythonpoc with new json encoding format
      
      * cmd/signer: make use of new abi interface
      
      * signer: documentation
      
      * signer/main: remove redundant  option
      
      * signer: implement audit logging
      
      * signer: create package 'signer', minor changes
      
      * common: add 0x-prefix to mixcaseaddress in json marshalling + validation
      
      * signer, rules, storage: implement rules + ephemeral storage for signer rules
      
      * signer: implement OnApprovedTx, change signing response (API BREAKAGE)
      
      * signer: refactoring + documentation
      
      * signer/rules: implement dispatching to next handler
      
      * signer: docs
      
      * signer/rules: hide json-conversion from users, ensure context is cleaned
      
      * signer: docs
      
      * signer: implement validation rules, change signature of call_info
      
      * signer: fix log flaw with string pointer
      
      * signer: implement custom 4byte databsae that saves submitted signatures
      
      * signer/storage: implement aes-gcm-backed credential storage
      
      * accounts: implement json unmarshalling of url
      
      * signer: fix listresponse, fix gas->uint64
      
      * node: make http/ipc start methods public
      
      * signer: add ipc capability+review concerns
      
      * accounts: correct docstring
      
      * signer: address review concerns
      
      * rpc: go fmt -s
      
      * signer: review concerns+ baptize Clef
      
      * signer,node: move Start-functions to separate file
      
      * signer: formatting
      ec3db0f5
  26. Mar 26, 2018
  27. Mar 13, 2018
  28. Feb 22, 2018
  29. Feb 14, 2018
  30. Feb 12, 2018
    • Martin Holst Swende's avatar
      node, rpc: fix linter issues · 6c6247a6
      Martin Holst Swende authored
      Unverified
      6c6247a6
    • Martin Holst Swende's avatar
      rpc: dns rebind protection (#15962) · 589b603a
      Martin Holst Swende authored
      * cmd,node,rpc: add allowedHosts to prevent dns rebinding attacks
      
      * p2p,node: Fix bug with dumpconfig introduced in r54aeb8e4c0bb9f0e7a6c67258af67df3b266af3d
      
      * rpc: add wildcard support for rpcallowedhosts + go fmt
      
      * cmd/geth, cmd/utils, node, rpc: ignore direct ip(v4/6) addresses in rpc virtual hostnames check
      
      * http, rpc, utils: make vhosts into map, address review concerns
      
      * node: change log messages to use geth standard (not sprintf)
      
      * rpc: fix spelling
      589b603a
  31. Jan 24, 2018
    • Steven Roose's avatar
      rpc: Support specifying HTTP client in RPC dialing (#15836) · 952482d5
      Steven Roose authored
      * rpc: Support specifying HTTP client in RPC dialing
      
      Adds a minimal interface that captures http.Client and adds a new method
      rpc.DialHTTPClient that takes a client using that interface. The existing
      rpc.DialHTTP method is then alternatively implemented by using the new
      rpc.DialHTTPClient method provided with a standard *http.Client.
      
      * rpc: fix minor doc typos
      952482d5
  32. Dec 28, 2017
  33. Dec 12, 2017
Loading