good morning!!!!

Skip to content
Snippets Groups Projects
  1. Feb 25, 2021
    • lightclient's avatar
      all: add support for EIP-2718, EIP-2930 transactions (#21502) · bbfb1e40
      lightclient authored
      
      This adds support for EIP-2718 typed transactions as well as EIP-2930
      access list transactions (tx type 1). These EIPs are scheduled for the
      Berlin fork.
      
      There very few changes to existing APIs in core/types, and several new APIs
      to deal with access list transactions. In particular, there are two new
      constructor functions for transactions: types.NewTx and types.SignNewTx.
      Since the canonical encoding of typed transactions is not RLP-compatible,
      Transaction now has new methods for encoding and decoding: MarshalBinary
      and UnmarshalBinary.
      
      The existing EIP-155 signer does not support the new transaction types.
      All code dealing with transaction signatures should be updated to use the
      newer EIP-2930 signer. To make this easier for future updates, we have
      added new constructor functions for types.Signer: types.LatestSigner and
      types.LatestSignerForChainID. 
      
      This change also adds support for the YoloV3 testnet.
      
      Co-authored-by: default avatarMartin Holst Swende <martin@swende.se>
      Co-authored-by: default avatarFelix Lange <fjl@twurst.com>
      Co-authored-by: default avatarRyan Schneider <ryanleeschneider@gmail.com>
      bbfb1e40
  2. Feb 05, 2021
  3. Jan 08, 2021
  4. Sep 15, 2020
  5. Sep 10, 2020
  6. Aug 03, 2020
    • rene's avatar
      node: refactor package node (#21105) · c0c01612
      rene authored
      This PR significantly changes the APIs for instantiating Ethereum nodes in
      a Go program. The new APIs are not backwards-compatible, but we feel that
      this is made up for by the much simpler way of registering services on
      node.Node. You can find more information and rationale in the design
      document: https://gist.github.com/renaynay/5bec2de19fde66f4d04c535fd24f0775.
      
      There is also a new feature in Node's Go API: it is now possible to
      register arbitrary handlers on the user-facing HTTP server. In geth, this
      facility is used to enable GraphQL.
      
      There is a single minor change relevant for geth users in this PR: The
      GraphQL API is no longer available separately from the JSON-RPC HTTP
      server. If you want GraphQL, you need to enable it using the
      ./geth --http --graphql flag combination.
      
      The --graphql.port and --graphql.addr flags are no longer available.
      c0c01612
  7. Jul 21, 2020
  8. Nov 19, 2019
  9. Jun 11, 2019
  10. Jun 03, 2019
  11. May 02, 2019
  12. Nov 08, 2018
  13. Jun 11, 2018
    • Steven Roose's avatar
      ethclient: fix RPC parse error of Parity response (#16924) · 69c52bde
      Steven Roose authored
      The error produced when using a Parity RPC was the following:
      
      ERROR: transaction did not get mined: failed to get tx for txid 0xbdeb094b3278019383c8da148ff1cb5b5dbd61bf8731bc2310ac1b8ed0235226: json: cannot unmarshal non-string into Go struct field txExtraInfo.blockHash of type common.Hash
      69c52bde
  14. Apr 19, 2018
  15. Apr 09, 2018
  16. Jan 03, 2018
  17. Oct 01, 2017
    • Felix Lange's avatar
      ethclient, mobile: add TransactionSender (#15127) · d78ad226
      Felix Lange authored
      * core/types: make Signer derive address instead of public key
      
      There are two reasons to do this now: The upcoming ethclient signer
      doesn't know the public key, just the address. EIP 208 will introduce a
      new signer which derives the 'entry point' address for transactions with
      zero signature. The entry point has no public key.
      
      Other changes to the interface ease the path make to moving signature
      crypto out of core/types later.
      
      * ethclient, mobile: add TransactionSender
      
      The new method can get the right signer without any crypto, and without
      knowledge of the signature scheme that was used when the transaction was
      included.
      d78ad226
  18. Aug 01, 2017
  19. Jul 17, 2017
  20. Jun 21, 2017
  21. Mar 22, 2017
    • Felix Lange's avatar
      all: import "context" instead of "golang.org/x/net/context" · c213fd1f
      Felix Lange authored
      There is no need to depend on the old context package now that the
      minimum Go version is 1.7. The move to "context" eliminates our weird
      vendoring setup. Some vendored code still uses golang.org/x/net/context
      and it is now vendored in the normal way.
      
      This change triggered new vet checks around context.WithTimeout which
      didn't fire with golang.org/x/net/context.
      c213fd1f
  22. Jan 06, 2017
    • Felix Lange's avatar
      core/vm: move Log to core/types · 77310619
      Felix Lange authored
      This significantly reduces the dependency closure of ethclient, which no
      longer depends on core/vm as of this change.
      
      All uses of vm.Logs are replaced by []*types.Log. NewLog is gone too,
      the constructor simply returned a literal.
      77310619
  23. Jan 03, 2017
  24. Dec 22, 2016
  25. Dec 05, 2016
    • Felix Lange's avatar
      ethclient, ethereum: add NotFound, split transactions out of ChainReader · 3bc0fe1e
      Felix Lange authored
      ethclient now returns ethereum.NotFound if the server returns null and
      no error while accessing blockchain data.
      
      The light client cannot provide arbitrary transactions. The change to
      split transaction access into its own interface emphasizes that
      transactions should not be relied on and recommends use of logs.
      3bc0fe1e
  26. Dec 04, 2016
  27. Nov 28, 2016
  28. Nov 13, 2016
  29. Nov 09, 2016
  30. Oct 27, 2016
  31. Sep 21, 2016
  32. Sep 08, 2016
  33. Sep 06, 2016
  34. Aug 09, 2016
Loading