good morning!!!!

Skip to content
Snippets Groups Projects
  1. Jun 10, 2021
  2. Jun 07, 2021
  3. Jun 04, 2021
  4. Jun 02, 2021
  5. May 27, 2021
  6. May 26, 2021
  7. May 20, 2021
  8. May 13, 2021
  9. May 11, 2021
  10. May 07, 2021
  11. May 06, 2021
  12. May 04, 2021
  13. May 02, 2021
  14. Apr 29, 2021
  15. Apr 22, 2021
    • ledgerwatch's avatar
      Aleut support (Eip1559) (#1704) · 12cde417
      ledgerwatch authored
      
      * Where I am at
      
      * Refactoring of transaction types
      
      * More refactoring
      
      * Use Homested signer in rpc daemon
      
      * Unified signer
      
      * Continue unified signer
      
      * A bit more
      
      * Fixes and down the rabbit hole...
      
      * More tx pool fixes
      
      * More refactoring fixes
      
      * More fixes'
      
      * more fixes
      
      * More fixes
      
      * More compile fixes
      
      * More RLP hand-writing
      
      * Finish RLP encoding/decoding of transactions
      
      * Fixes to header encoding, start on protocol packets
      
      * Transaction decoding
      
      * Use DecodeTransaction function
      
      * Decoding BlockBodyPacket
      
      * Encode and decode for pool txs
      
      * Start fixing tests
      
      * Introduce SigningHash
      
      * Fixes to SignHash
      
      * RLP encoding fixes
      
      * Fixes for encoding/decoding
      
      * More test fixes
      
      * Fix more tests
      
      * More test fixes
      
      * More test fixes
      
      * Fix core tests
      
      * More fixes for signer
      
      * Fix for tx
      
      * Fixes to string encoding/size
      
      * Fix eip2930 test
      
      * Fix rest of ./tests
      
      * More fixes
      
      * Fix compilation
      
      * More test fixes
      
      * More test fixes
      
      * Test fixes
      
      * More fixes
      
      * Reuse EncodingSize in EncodeRLP for accessList
      
      * Rearrange things in dynamic fee tx
      
      * Add MarshalBinary
      
      * More fixes
      
      * Make V,R,S non-pointers
      
      * More NPE fixes
      
      * More fixes
      
      * Receipt fixes
      
      * Fix core/types
      
      * Fix ./eth
      
      * More compile fixes for tests
      
      * More test fixes
      
      * More test fixes
      
      * Try to see lint errors better
      
      * Try to see lint errors better
      
      * Fix lint
      
      * Debugging eip1559 test
      
      * Fix TestEIP1559Transition test
      
      * Fix NewBlockPacket encoding/decoding
      
      * Fix calculation of TxHash
      
      * Fix perf problem with senders
      
      * Update aleut config values
      
      * Try adding static peers
      
      * Add staticpeers to defaul flags
      
      * Change aleut networkID
      
      * Fix test
      
      Co-authored-by: default avatarAlex Sharp <alexsharp@Alexs-MacBook-Pro.local>
      Co-authored-by: default avatarAlexey Sharp <alexeysharp@Alexeys-iMac.local>
      12cde417
    • Igor Mandrigin's avatar
      begin 2021.05.01 release cycle · 770fa600
      Igor Mandrigin authored
      770fa600
  16. Apr 19, 2021
  17. Apr 15, 2021
  18. Apr 09, 2021
  19. Apr 08, 2021
  20. Apr 01, 2021
  21. Mar 26, 2021
  22. Mar 25, 2021
  23. Mar 23, 2021
  24. Mar 18, 2021
  25. Mar 12, 2021
    • Péter Szilágyi's avatar
      Revert "core/forkid, params: unset Berlin fork number (#22413)" · 7f776be2
      Péter Szilágyi authored
      This reverts commit ba999105.
      7f776be2
    • Péter Szilágyi's avatar
    • gary rong's avatar
      params: update chts (#22418) · 8e959c0d
      gary rong authored
      8e959c0d
    • Péter Szilágyi's avatar
      all: define Berlin hard fork spec · d23002e7
      Péter Szilágyi authored
      # Conflicts:
      #	cmd/geth/config.go
      #	cmd/geth/main.go
      #	core/genesis.go
      #	core/state_transition.go
      #	core/vm/evm.go
      #	core/vm/interpreter.go
      #	eth/backend.go
      #	eth/ethconfig/config.go
      #	les/client.go
      #	light/txpool.go
      #	tests/state_test_util.go
      d23002e7
    • lightclient's avatar
      all: add support for EIP-2718, EIP-2930 transactions (#21502) · 50d97530
      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>
      # Conflicts:
      #	accounts/abi/bind/backends/simulated.go
      #	cmd/evm/internal/t8ntool/execution.go
      #	cmd/evm/internal/t8ntool/transition.go
      #	cmd/geth/main.go
      #	cmd/geth/usage.go
      #	core/bench_test.go
      #	core/state/statedb.go
      #	core/state_prefetcher.go
      #	core/state_processor.go
      #	core/state_transition.go
      #	core/tx_pool.go
      #	core/types/block.go
      #	core/types/derive_sha.go
      #	core/types/gen_tx_json.go
      #	core/types/receipt.go
      #	core/types/receipt_test.go
      #	core/types/transaction.go
      #	core/types/transaction_signing.go
      #	core/types/transaction_test.go
      #	ethclient/ethclient.go
      #	ethclient/signer.go
      #	graphql/graphql.go
      #	internal/ethapi/api.go
      #	internal/guide/guide_test.go
      #	les/benchmark.go
      #	les/odr_test.go
      #	light/odr_test.go
      #	light/txpool.go
      #	miner/worker.go
      #	miner/worker_test.go
      #	signer/core/api.go
      #	tests/state_test_util.go
      #	trie/stacktrie_test.go
      #	turbo/stages/blockchain_test.go
      50d97530
  26. Mar 09, 2021
    • Sina Mahmoodi's avatar
      cmd,core,eth,params,tests: define yolov3 + enable EIP-2565 (#22213) · c3760390
      Sina Mahmoodi authored
      Removes the yolov2 definition, adds yolov3, including EIP-2565. This PR also disables some of the erroneously generated blockchain and statetests, and adds the new genesis hash + alloc for yolov3.
      This PR disables the CLI switches for yolo, since it's not complete until we merge support for 2930.
      # Conflicts:
      #	cmd/evm/internal/t8ntool/execution.go
      #	cmd/geth/chaincmd.go
      #	cmd/geth/consolecmd.go
      #	cmd/geth/main.go
      #	cmd/geth/usage.go
      #	cmd/utils/flags.go
      #	core/state_processor.go
      #	core/vm/evm.go
      #	core/vm/interpreter.go
      #	tests/block_test.go
      c3760390
    • Felföldi Zsolt's avatar
      les: switch to new discv5 (#21940) · 0d8a69b8
      Felföldi Zsolt authored
      
      This PR enables running the new discv5 protocol in both LES client
      and server mode. In client mode it mixes discv5 and dnsdisc iterators
      (if both are enabled) and filters incoming ENRs for "les" tag and fork ID.
      The old p2p/discv5 package and all references to it are removed.
      
      Co-authored-by: default avatarFelix Lange <fjl@twurst.com>
      # Conflicts:
      #	cmd/bootnode/main.go
      #	cmd/faucet/faucet.go
      #	cmd/utils/flags.go
      #	les/client.go
      #	les/commons.go
      #	les/enr_entry.go
      #	les/server.go
      #	les/serverpool.go
      #	les/serverpool_test.go
      #	mobile/discover.go
      #	mobile/params.go
      #	p2p/discv5/database.go
      #	p2p/discv5/metrics.go
      #	p2p/discv5/net.go
      #	p2p/discv5/net_test.go
      #	p2p/discv5/node.go
      #	p2p/discv5/node_test.go
      #	p2p/discv5/sim_test.go
      #	p2p/discv5/table.go
      #	p2p/discv5/table_test.go
      #	p2p/discv5/ticket.go
      #	p2p/discv5/topic.go
      #	p2p/discv5/topic_test.go
      #	p2p/discv5/udp.go
      #	p2p/server.go
      0d8a69b8
Loading