Update RPC api and backend to support the EIP-2930 and EIP-1559 updates to header and transaction types #78
Labels
No Label
bug
critical
documentation
duplicate
enhancement
Epic
good first issue
help wanted
Integration tests
invalid
question
v5
wontfix
Copied from Github
Kind/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: cerc-io/ipld-eth-server#78
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When
BaseFee
is present we need to include it in the header returned by the RPC endpointse.g. at
42f066772b/pkg/eth/backend_utils.go (L38)
And we need to be able to return all three types of transactions from the RPC endpoints: legacy, access list, and dynamic fee
e.g. at
42f066772b/pkg/eth/backend_utils.go (L137)
Note:
Receipt
andTransaction
now need to to useMarshalBinary
andUnmarshalBinary
methods instead ofEncodeRLP
andDecodeRLP
(orrlp.EncodeToBytes
/rlp.DecodeBytes
) for consensus encoding/decoding to/from binary format.Until https://github.com/ethereum/go-ethereum/pull/22806 is merged we need to use https://github.com/vulcanize/go-ethereum/releases/tag/v1.10.4-ir-0.0.1 for
Receipt
MarshalBinary
andUnmarshalBinary
.