good morning!!!!

Skip to content
Snippets Groups Projects
  1. Nov 08, 2018
  2. Oct 18, 2018
    • Simon Jentzsch's avatar
      EIP-1186 eth_getProof (#17737) · 97fb0834
      Simon Jentzsch authored
      * first impl of eth_getProof
      
      * fixed docu
      
      * added comments and refactored based on comments from holiman
      
      * created structs
      
      * handle errors correctly
      
      * change Value to *hexutil.Big in order to have the same output as parity
      
      * use ProofList as return type
      97fb0834
  3. Sep 20, 2018
  4. Sep 14, 2018
  5. Sep 04, 2018
  6. Aug 27, 2018
  7. Aug 14, 2018
    • Zsolt Felföldi's avatar
      les: implement client connection logic (#16899) · b2ddb1fc
      Zsolt Felföldi authored
      This PR implements les.freeClientPool. It also adds a simulated clock
      in common/mclock, which enables time-sensitive tests to run quickly
      and still produce accurate results, and package common/prque which is
      a generalised variant of prque that enables removing elements other
      than the top one from the queue.
      
      les.freeClientPool implements a client database that limits the
      connection time of each client and manages accepting/rejecting
      incoming connections and even kicking out some connected clients. The
      pool calculates recent usage time for each known client (a value that
      increases linearly when the client is connected and decreases
      exponentially when not connected). Clients with lower recent usage are
      preferred, unknown nodes have the highest priority. Already connected
      nodes receive a small bias in their favor in order to avoid accepting
      and instantly kicking out clients.
      
      Note: the pool can use any string for client identification. Using
      signature keys for that purpose would not make sense when being known
      has a negative value for the client. Currently the LES protocol
      manager uses IP addresses (without port address) to identify clients.
      b2ddb1fc
  8. Jul 24, 2018
  9. Jun 14, 2018
  10. Jun 05, 2018
    • Antonio Salazar Cardozo's avatar
      cmd/abigen: support for reading solc output from stdin (#16683) · 4cf2b411
      Antonio Salazar Cardozo authored
      Allow the --abi flag to be given - to indicate that it should read the
      ABI information from standard input. It expects to read the solc output
      with the --combined-json flag providing bin, abi, userdoc, devdoc, and
      metadata, and works very similarly to the internal invocation of solc,
      except it allows external invocation of solc.
      
      This facilitates integration with more complex solc invocations, such
      as invocations that require path remapping or --allow-paths tweaks.
      
      Simple usage example:
      
          solc --combined-json bin,abi,userdoc,devdoc,metadata *.sol | abigen --abi -
      4cf2b411
  11. May 29, 2018
  12. May 07, 2018
  13. Apr 18, 2018
  14. 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
  15. Apr 10, 2018
    • Felix Lange's avatar
      common: delete StringToAddress, StringToHash (#16436) · c7ab3e55
      Felix Lange authored
      * common: delete StringToAddress, StringToHash
      
      These functions are confusing because they don't parse hex, but use the
      bytes of the string. This change removes them, replacing all uses of
      StringToAddress(s) by BytesToAddress([]byte(s)).
      
      * eth/filters: remove incorrect use of common.BytesToAddress
      c7ab3e55
  16. Mar 09, 2018
  17. Feb 23, 2018
  18. Feb 14, 2018
  19. Feb 05, 2018
  20. Jan 11, 2018
    • Ricardo Domingos's avatar
      common/fdlimit: Move fdlimit files to separate package (#15850) · 56152b31
      Ricardo Domingos authored
      * common/fdlimit: Move fdlimit files to separate package
      
      When go-ethereum is used as a library the calling program need to set
      the FD limit.
      
      This commit extract fdlimit files to a separate package so it can be
      used outside of go-ethereum.
      
      * common/fdlimit: Remove FdLimit from functions signature
      
      * common/fdlimit: Rename fdlimit functions
      56152b31
  21. Jan 03, 2018
  22. Dec 04, 2017
  23. Nov 29, 2017
  24. Nov 10, 2017
  25. Sep 07, 2017
  26. Aug 22, 2017
  27. Aug 07, 2017
  28. Jul 16, 2017
  29. Jun 27, 2017
    • Felix Lange's avatar
      common/hexutil: wrap errors in json.UnmarshalTypeError · 4a741df7
      Felix Lange authored
      This adds type and struct field context to error messages.
      Instead of "hex string of odd length" users will now see "json: cannot
      unmarshal hex string of odd length into Go struct field SendTxArgs.from
      of type common.Address".
      4a741df7
  30. Jun 08, 2017
  31. Jun 06, 2017
  32. Jun 05, 2017
  33. May 23, 2017
    • Jeffrey Wilcke's avatar
      common: fixed byte padding functions · e1e87d8b
      Jeffrey Wilcke authored
      Byte padding function should return the given slice if the length is
      smaller or equal rather than *only* smaller than.
      
      This fix improves almost all EVM push operations.
      e1e87d8b
  34. May 08, 2017
  35. May 06, 2017
  36. May 05, 2017
  37. May 04, 2017
Loading