good morning!!!!

Skip to content
Snippets Groups Projects
  1. Aug 02, 2019
    • Gary Rong's avatar
      accounts/abi, signer/fourbyte: fix incorrect signature (#19881) · 947f5f2b
      Gary Rong authored
      The abi package already supports function overload by adding a suffix to the overloaded function name, but it uses the function name with suffix to calculate signature(both for the event and method).
      
      This PR fixes it by adding a new field named RawName, which can be used to calcuate all signatures but use Name to distinguish different overloaded function.
      947f5f2b
  2. Jul 23, 2019
  3. Jul 22, 2019
  4. Jul 17, 2019
  5. Jul 03, 2019
  6. Jul 02, 2019
  7. Jun 19, 2019
  8. Jun 05, 2019
  9. Jun 04, 2019
  10. Jun 03, 2019
  11. May 15, 2019
  12. May 07, 2019
  13. Apr 11, 2019
  14. Apr 10, 2019
  15. Apr 09, 2019
    • Steve Gattuso's avatar
      clef: fix chainId key being present in domain map (#19303) · f538d152
      Steve Gattuso authored
      This PR fixes this, moving domain.ChainId from the map's initializer down to a separate if statement which checks the existance of ChainId's value, similar to the rest of the fields, before adding it. I've also included a new test to demonstrate the issue
      f538d152
  16. Apr 04, 2019
  17. Mar 07, 2019
    • Martin Holst Swende's avatar
      316b63da
    • Martin Holst Swende's avatar
      signer: change the stdio jsonrpc to use legacy namespace conventions (#19047) · 5f94f8c7
      Martin Holst Swende authored
      This PR will will break existing UIs, since it changes all calls like ApproveSignTransaction to be on the form ui_approveSignTransaction.
      
      This is to make it possible for the UI to reuse the json-rpc library from go-ethereum, which uses this convention.
      
      Also, this PR removes some unused structs, after import/export were removed from the external api (so no longer needs internal methods for approval)
      
      One more breaking change is introduced, removing passwords from the ApproveSignTxResponse and the likes. This makes the manual interface more like the rulebased interface, and integrates nicely with the credential storage. Thus, the way it worked before, it would be tempting for the UI to implement 'remember password' functionality. The way it is now, it will be easy instead to tell clef to store passwords and use them.
      
      If a pw is not found in the credential store, the user is prompted to provide the password.
      5f94f8c7
  18. Feb 19, 2019
  19. Feb 18, 2019
  20. Feb 13, 2019
  21. Feb 12, 2019
    • Martin Holst Swende's avatar
      clef: bidirectional communication with UI (#19018) · b5d471a7
      Martin Holst Swende authored
      * clef: initial implementation of bidirectional RPC communication for the UI
      
      * signer: fix tests to pass + formatting
      
      * clef: fix unused import + formatting
      
      * signer: gosimple nitpicks
      b5d471a7
    • Martin Holst Swende's avatar
      clef: external signing fixes + signing data (#19003) · 75d292bc
      Martin Holst Swende authored
      * signer/clef: make use of json-rpc notification
      
      * signer: tidy up output of OnApprovedTx
      
      * accounts/external, signer: implement remote signing of text, make accounts_sign take hexdata
      
      * clef: added basic testscript
      
      * signer, external, api: add clique signing test to debug rpc, fix clique signing in clef
      
      * signer: fix clique interoperability between geth and clef
      
      * clef: rename networkid switch to chainid
      
      * clef: enable chainid flag
      
      * clef, signer: minor changes from review
      
      * clef: more tests for signer
      75d292bc
  22. Feb 06, 2019
    • 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
  23. Feb 05, 2019
    • Martin Holst Swende's avatar
      accounts, eth, clique, signer: support for external signer API (#18079) · 43e8efe8
      Martin Holst Swende authored
      * accounts, eth, clique: implement external backend + move sighash calc to backend
      
      * signer: implement account_Version on external API
      
      * accounts/external: enable ipc, add copyright
      
      * accounts, internal, signer: formatting
      
      * node: go fmt
      
      * flags: disallow --dev in combo with --externalsigner
      
      * accounts: remove clique-specific signing method, replace with more generic
      
      * accounts, consensus: formatting + fix error in tests
      
      * signer/core: remove (test-) import cycle
      
      * clique: remove unused import
      
      * accounts: remove CliqueHash and avoid dependency on package crypto
      
      * consensus/clique: unduplicate header encoding
      43e8efe8
  24. Dec 02, 2018
  25. Nov 07, 2018
  26. Oct 09, 2018
  27. Sep 28, 2018
  28. 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
      d3441ebb
    • Liang ZOU's avatar
      all: fix various comment typos (#17748) · 6663e5da
      Liang ZOU authored
      6663e5da
  29. Sep 19, 2018
  30. Aug 27, 2018
  31. Jul 30, 2018
  32. Jun 19, 2018
  33. Jun 12, 2018
  34. May 04, 2018
    • Eli's avatar
      signer: fix golint errors (#16653) · 16f3c317
      Eli authored
      * signer/*: golint fixes
      
      Specifically naming and comment formatting for documentation
      
      * signer/*: fixed naming error crashing build
      
      * signer/*: corrected error
      
      * signer/core: fix tiny error whitespace
      
      * signer/rules: fix test refactor
      16f3c317
Loading