good morning!!!!

Skip to content
Snippets Groups Projects
  1. Feb 12, 2019
  2. Feb 08, 2019
  3. Feb 07, 2019
  4. Feb 06, 2019
    • Péter Szilágyi's avatar
      Merge pull request #19005 from karalabe/puppeth-fix-petersburg · c57166ca
      Péter Szilágyi authored
      cmd/puppeth: handle pre-set Petersburg number, save changed fork rules
      c57166ca
    • Péter Szilágyi's avatar
    • holisticode's avatar
    • Martin Holst Swende's avatar
      docs: add audit reports (#18996) · 75c9570c
      Martin Holst Swende authored
      * docs: add audit reports
      
      * docs: better filenames
      75c9570c
    • Paul Berg's avatar
      signer, clef: implement EIP191/712 (#17789) · 572baae1
      Paul Berg authored
      * Named functions and defined a basic EIP191 content type list
      
      * Written basic content type functions
      
      * Added ecRecover method in the clef api
      
      * Updated the extapi changelog and addded indications in the README
      
      * Changed the version of the external API
      
      * Added tests for 0x45
      
      * Implementing UnmarshalJSON() for TypedData
      
      * Working on TypedData
      
      * Solved the auditlog issue
      
      * Changed method to signTypedData
      
      * Changed mimes and implemented the 'encodeType' function for EIP-712
      
      * Polished docstrings, ran goimports and swapped fmt.Errorf with errors.New where possible
      
      * Drafted recursive encodeData
      
      * Ran goimports and gofmt
      
      * Drafted first version of EIP-712, including tests
      
      * Temporarily switched to using common.Address in tests
      
      * Drafted text/validator and and rewritten []byte as hexutil.Bytes
      
      * Solved stringified address encoding issue
      
      * Changed the property type required by signData from bytes to interface{}
      
      * Fixed bugs in 'data/typed' signs
      
      * Brought legal warning back after temporarily disabling it for development
      
      * Added example RPC calls for account_signData and account_signTypedData
      
      * Named functions and defined a basic EIP191 content type list
      
      * Written basic content type functions
      
      * Added ecRecover method in the clef api
      
      * Updated the extapi changelog and addded indications in the README
      
      * Added tests for 0x45
      
      * Implementing UnmarshalJSON() for TypedData
      
      * Working on TypedData
      
      * Solved the auditlog issue
      
      * Changed method to signTypedData
      
      * Changed mimes and implemented the 'encodeType' function for EIP-712
      
      * Polished docstrings, ran goimports and swapped fmt.Errorf with errors.New where possible
      
      * Drafted recursive encodeData
      
      * Ran goimports and gofmt
      
      * Drafted first version of EIP-712, including tests
      
      * Temporarily switched to using common.Address in tests
      
      * Drafted text/validator and and rewritten []byte as hexutil.Bytes
      
      * Solved stringified address encoding issue
      
      * Changed the property type required by signData from bytes to interface{}
      
      * Fixed bugs in 'data/typed' signs
      
      * Brought legal warning back after temporarily disabling it for development
      
      * Added example RPC calls for account_signData and account_signTypedData
      
      * Polished and fixed PR
      
      * Polished and fixed PR
      
      * Solved malformed data panics and also wrote tests
      
      * Solved malformed data panics and also wrote tests
      
      * Added alphabetical sorting to type dependencies
      
      * Added alphabetical sorting to type dependencies
      
      * Added pretty print to data/typed UI
      
      * Added pretty print to data/typed UI
      
      * signer: more tests for typed data
      
      * signer: more tests for typed data
      
      * Fixed TestMalformedData4 errors and renamed IsValid to Validate
      
      * Fixed TestMalformedData4 errors and renamed IsValid to Validate
      
      * Fixed more new failing tests and deanonymised some functions
      
      * Fixed more new failing tests and deanonymised some functions
      
      * Added types to EIP712 output in cliui
      
      * Added types to EIP712 output in cliui
      
      * Fixed regexp issues
      
      * Fixed regexp issues
      
      * Added pseudo-failing test
      
      * Added pseudo-failing test
      
      * Fixed false positive test
      
      * Fixed false positive test
      
      * Added PrettyPrint method
      
      * Added PrettyPrint method
      
      * signer: refactor formatting and UI
      
      * signer: make ui use new message format for signing
      
      * Fixed breaking changes
      
      * Fixed rules_test failing test
      
      * Added extra regexp for reference types
      
      * signer: more hard types
      
      * Fixed failing test, formatted files
      
      * signer: use golang/x keccak
      
      * Fixed goimports error
      
      * clef, signer: address some review concerns
      
      * Implemented latest recommendations
      
      * Fixed comments and uintint256 issue
      
      * accounts, signer: fix mimetypes, add interface to sign data with passphrase
      
      * signer, accounts: remove duplicated code, pass hash preimages to signing
      
      * signer: prevent panic in type assertions, make cliui print rawdata as quotable-safe
      
      * signer: linter fixes, remove deprecated crypto dependency
      
      * accounts: fix goimport
      572baae1
  5. Feb 05, 2019
  6. Feb 04, 2019
    • Rajdeep Singh's avatar
      520024df
    • Martin Holst Swende's avatar
    • Péter Szilágyi's avatar
      Merge pull request #18121 from karalabe/goerli · 822dc1bf
      Péter Szilágyi authored
      cmd, core, params: add support for Goerli
      822dc1bf
    • Péter Szilágyi's avatar
      b0ed083e
    • Felix Lange's avatar
      rpc: implement full bi-directional communication (#18471) · 245f3146
      Felix Lange authored
      New APIs added:
      
          client.RegisterName(namespace, service) // makes service available to server
          client.Notify(ctx, method, args...)     // sends a notification
          ClientFromContext(ctx)                  // to get a client in handler method
      
      This is essentially a rewrite of the server-side code. JSON-RPC
      processing code is now the same on both server and client side. Many
      minor issues were fixed in the process and there is a new test suite for
      JSON-RPC spec compliance (and non-compliance in some cases).
      
      List of behavior changes:
      
      - Method handlers are now called with a per-request context instead of a
        per-connection context. The context is canceled right after the method
        returns.
      - Subscription error channels are always closed when the connection
        ends. There is no need to also wait on the Notifier's Closed channel
        to detect whether the subscription has ended.
      - Client now omits "params" instead of sending "params": null when there
        are no arguments to a call. The previous behavior was not compliant
        with the spec. The server still accepts "params": null.
      - Floating point numbers are allowed as "id". The spec doesn't allow
        them, but we handle request "id" as json.RawMessage and guarantee that
        the same number will be sent back.
      - Logging is improved significantly. There is now a message at DEBUG
        level for each RPC call served.
      245f3146
    • Martin Holst Swende's avatar
      ec3432bc
Loading