mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-03 09:37:38 +00:00
a442293be1
impacted API: eth_getTransactionByHash() eth_getTransactionByNumber() eth_getTransactionByBlockHashAndIndex() eth_getTransactionByBlockNumberAndIndex() eth_getBlockByHash() eth_getBlockByNumber() 1) In case of legacy transitions the chainId field should be inserted only if V is not 27/28. This seems also the Geth/v1.10.23 behaviour via infura 2) In case of dynamicFee/AccessList transaction the access_list should be inserted in the response also if empty This is done correctly in cmd/rpcdaemon/commands/eth_api.go and NOT in internal/ethapi/api.go This seems also the Geth/v1.10.23 behaviour via infura |
||
---|---|---|
.. | ||
adapter | ||
app | ||
builder | ||
cli | ||
cmdtest | ||
debug | ||
engineapi | ||
logging | ||
mock | ||
node | ||
rlphacks | ||
rpchelper | ||
services | ||
shards | ||
snapshotsync | ||
stages | ||
testlog | ||
transactions | ||
trie | ||
README.md |
Erigon-API
Erigon-API is a set of tools for building applications containing Erigon node.
Our own binary erigon
is built using it.
Modules
-
cli
- erigon-cli, methods & helpers to run a CLI app with Erigon node. -
node
- represents an Ethereum node, running devp2p and sync and writing state to the database. -
stagedsync
- staged sync algorithm.
Examples
-
erigon
- our binary is using erigon-api with all defaults -
erigoncustom
- a very simple example of adding a custom stage, a custom bucket and a custom command-line parameter -
erigon-examples - a series of examples for Erigon api