Go to file
2023-09-18 03:25:33 +00:00
.github/workflows Downloader: add tests to protect from re-downloading (#1126) 2023-09-15 06:46:50 +00:00
bptree Fieldalign (#695) 2022-10-21 15:31:23 +07:00
chain EIP-4844: Rename "data gas" to "blob gas" (#1058) 2023-07-28 09:50:57 +00:00
commitment mdbx bug in DeleteCurrentDuplicates() workaround (#1039) 2023-07-06 04:08:17 +00:00
common torrent: add --webseeds cli arg (#1122) 2023-09-12 05:18:39 +00:00
compress compress.Next: return empty byte slice instead of nil when wordLen == 0 (#1085) 2023-09-06 08:03:09 +00:00
crypto init kzg ctx from file (trusted_setup.json) (#1066) 2023-08-03 06:35:10 +00:00
direct Add addPeer RPC (#1033) 2023-09-06 08:31:05 +00:00
downloader Downloader: add tests to protect from re-downloading (#1126) 2023-09-15 06:46:50 +00:00
etl etl: do sort and file flush in another goroutine (#1052) 2023-09-06 07:51:09 +00:00
gointerfaces txpool: batch IdHashKnown calls - to reduce amount of mutex lock/unlock. less string(byte) casts (#1128) 2023-09-18 03:25:33 +00:00
kv Added BorFinality to kv table definitions to support polygon milestones (#1116) 2023-09-10 08:49:51 +00:00
mmap e3: locality index (#823) 2023-01-07 12:30:57 +07:00
patricia fix linter warnings (#698) 2022-10-22 13:19:27 +07:00
pedersen_hash doc: third-party readme and license files (#1091) 2023-08-30 08:12:06 +00:00
recsplit Add BorEvents snapshot type (#1051) 2023-08-18 15:33:09 +00:00
rlp EIP-4844: Handle data gas in txpool (#1029) 2023-06-23 08:59:38 +00:00
sais doc: third-party readme and license files (#1091) 2023-08-30 08:12:06 +00:00
state log file unmap/close errors (#1036) 2023-08-12 20:14:40 +00:00
tools Downloader: add tests to protect from re-downloading (#1126) 2023-09-15 06:46:50 +00:00
txpool txpool: batch IdHashKnown calls - to reduce amount of mutex lock/unlock. less string(byte) casts (#1128) 2023-09-18 03:25:33 +00:00
types Txpool upgrades for EIP-4844 Blob Transactions (#1075) 2023-09-10 10:23:46 +00:00
.gitignore add go.work.sum to .gitignore 2023-09-11 09:36:38 +07:00
.golangci.yml Downloader: add tests to protect from re-downloading (#1126) 2023-09-15 06:46:50 +00:00
go.mod Downloader: add tests to protect from re-downloading (#1126) 2023-09-15 06:46:50 +00:00
go.sum Downloader: add tests to protect from re-downloading (#1126) 2023-09-15 06:46:50 +00:00
LICENSE Initial commit 2021-06-19 10:43:10 +01:00
Makefile deps up (after release) (#1110) 2023-09-06 07:43:44 +00:00
README.md Update README.md (#1079) 2023-08-18 07:29:13 +00:00
rules.go linter: add rules.go from erigon #418 Open 2022-04-17 09:12:09 +07:00
tools.go Removed engine (#1045) 2023-07-12 16:11:35 +00:00

erigon-lib

Dependencies of Erigon project, rewritten from scratch and licensed under Apache 2.0

Dev workflow

In erigon folder create go.work file (its already in .gitignore)

go 1.20

use (
    .

     ./../erigon-lib
)

Create PR in erigon-lib, dont merge PR, refer from erigon to non-merged erigon-lib branch (commit) by: go get github.com/ledgerwatch/erigon-lib/kv@<commit_hash>

Create Erigon PR

When both CI are green - merge 2 PR. Thats it.