Go to file
2023-09-11 09:20:37 +07:00
.github/workflows ci: check source code licenses compatibility (#1089) 2023-08-30 03:16:39 +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 log file unmap/close errors (#1036) 2023-08-12 20:14:40 +00:00
compress Compress: graceful shutdown support (#1090) 2023-08-30 03:20:40 +00:00
crypto init kzg ctx from file (trusted_setup.json) (#1066) 2023-08-03 06:35:10 +00:00
direct Ranges in execution.proto (#1087) 2023-08-26 00:26:29 +00:00
downloader Downloader: don't fail when see unusual file, skip it (backward/forward compatibility) (#1117) 2023-09-10 15:46:27 +07:00
etl etl: collector.close nil ptr fix (#1003) 2023-06-01 09:00:00 +00:00
gointerfaces Ranges in execution.proto (#1087) 2023-08-26 00:26:29 +00:00
kv rename torquem-ch project 2023-08-24 18:10:47 +07: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 doc: third-party readme and license files (#1091) 2023-08-30 08:12:06 +00:00
txpool Revert most txpool errors to Warn (#1095) 2023-09-01 17:03:41 +00:00
types Bump max size of blob transactions (#1063) 2023-08-01 10:32:05 +00:00
.gitignore Reverted 3 last commits (#348) 2022-02-24 14:39:42 +00:00
.golangci.yml metrics: prevent commit metrics duplication (#1082) 2023-08-24 02:24:09 +00:00
go.mod torrent lib: fix requests orering bug (#1121) 2023-09-11 09:20:37 +07:00
go.sum torrent lib: fix requests orering bug (#1121) 2023-09-11 09:20:37 +07:00
LICENSE Initial commit 2021-06-19 10:43:10 +01:00
Makefile up linter version 2023-09-01 10:59:27 +07: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.