Skip to content

Commit

Permalink
Rename module from idrecun to tenderly
Browse files Browse the repository at this point in the history
  • Loading branch information
idrecun committed Dec 12, 2023
1 parent 8353f19 commit 2f2bc35
Show file tree
Hide file tree
Showing 1,350 changed files with 6,949 additions and 6,949 deletions.
2 changes: 1 addition & 1 deletion .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ steps:
- command: './nightly.sh'
label: 'build & run geth'
env:
BUILDKITE_GOLANG_IMPORT_PATH: "github.com/idrecun/erigon"
BUILDKITE_GOLANG_IMPORT_PATH: "github.com/tenderly/erigon"
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Please make sure your contributions adhere to our coding guidelines:
Before you submit a feature request, please check and make sure that it isn't
possible through some other means. The JavaScript-enabled console is a powerful
feature in the right hands. Please check our
[Wiki page](https://github.com/idrecun/erigon/wiki) for more info
[Wiki page](https://github.com/tenderly/erigon/wiki) for more info
and help.

## Configuration, dependencies, and tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integration-caplin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
tests:
strategy:
matrix:
# disable macos-11 until https://github.com/idrecun/erigon/issues/8789
# disable macos-11 until https://github.com/tenderly/erigon/issues/8789
os: [ ubuntu-22.04 ] # list of os: https://github.com/actions/virtual-environments
runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ linters:
- unused
- performance
disable:
- gosec # enable it after 1-2 weeks. it failing CI withoutt enough info to fix: https://github.com/idrecun/erigon/actions/runs/5928644129/job/16074701625
- gosec # enable it after 1-2 weeks. it failing CI withoutt enough info to fix: https://github.com/tenderly/erigon/actions/runs/5928644129/job/16074701625
- exhaustive
- musttag
- contextcheck
Expand Down
2 changes: 1 addition & 1 deletion DEV_CHAIN.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Steps to setup and run Erigon dev chain. This tutorial is made for macOS.
Open terminal 1 and type the following command

```bash
git clone --recurse-submodules -j8 https://github.com/idrecun/erigon.git
git clone --recurse-submodules -j8 https://github.com/tenderly/erigon.git
cd erigon
make erigon
```
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.schema-version="1.0" \
org.label-schema.url="https://torquem.ch" \
org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.vcs-url="https://github.com/idrecun/erigon.git" \
org.label-schema.vcs-url="https://github.com/tenderly/erigon.git" \
org.label-schema.vendor="Torquem" \
org.label-schema.version=$VERSION

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.schema-version="1.0" \
org.label-schema.url="https://torquem.ch" \
org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.vcs-url="https://github.com/idrecun/erigon.git" \
org.label-schema.vcs-url="https://github.com/tenderly/erigon.git" \
org.label-schema.vendor="Torquem" \
org.label-schema.version=$VERSION

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ ifneq ($(shell "$(CURDIR)/turbo/silkworm/silkworm_compat_check.sh"),)
BUILD_TAGS := $(BUILD_TAGS),nosilkworm
endif

PACKAGE = github.com/idrecun/erigon
PACKAGE = github.com/tenderly/erigon

GO_FLAGS += -trimpath -tags $(BUILD_TAGS) -buildvcs=false
GO_FLAGS += -ldflags "-X ${PACKAGE}/params.GitCommit=${GIT_COMMIT} -X ${PACKAGE}/params.GitBranch=${GIT_BRANCH} -X ${PACKAGE}/params.GitTag=${GIT_TAG}"
Expand Down Expand Up @@ -234,7 +234,7 @@ git-submodules:
@git submodule sync --quiet --recursive || true
@git submodule update --quiet --init --recursive --force || true

PACKAGE_NAME := github.com/idrecun/erigon
PACKAGE_NAME := github.com/tenderly/erigon
GOLANG_CROSS_VERSION ?= v1.20.7

.PHONY: release-dry-run
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Erigon is an implementation of Ethereum (execution layer with embeddable consens
frontier. [Archive Node](https://ethereum.org/en/developers/docs/nodes-and-clients/archive-nodes/#what-is-an-archive-node)
by default.

![Build status](https://github.com/idrecun/erigon/actions/workflows/ci.yml/badge.svg)
![Build status](https://github.com/tenderly/erigon/actions/workflows/ci.yml/badge.svg)

![Coverage](https://gist.githubusercontent.com/revitteth/ee38e9beb22353eef6b88f2ad6ed7aa9/raw/badge.svg)

Expand Down Expand Up @@ -78,18 +78,18 @@ Usage
For building the latest release (this will be suitable for most users just wanting to run a node):

```sh
git clone --branch release/<x.xx> --single-branch https://github.com/idrecun/erigon.git
git clone --branch release/<x.xx> --single-branch https://github.com/tenderly/erigon.git
cd erigon
make erigon
./build/bin/erigon
```

You can check [the list of releases](https://github.com/idrecun/erigon/releases) for release notes.
You can check [the list of releases](https://github.com/tenderly/erigon/releases) for release notes.

For building the bleeding edge development branch:

```sh
git clone --recurse-submodules https://github.com/idrecun/erigon.git
git clone --recurse-submodules https://github.com/tenderly/erigon.git
cd erigon
git checkout devel
make erigon
Expand Down Expand Up @@ -173,7 +173,7 @@ If you would like to give Erigon a try, but do not have spare 2TB on your drive,
of the public testnets, Görli. It syncs much quicker, and does not take so much disk space:

```sh
git clone --recurse-submodules -j8 https://github.com/idrecun/erigon.git
git clone --recurse-submodules -j8 https://github.com/tenderly/erigon.git
cd erigon
make erigon
./build/bin/erigon --datadir=<your_datadir> --chain=goerli
Expand Down Expand Up @@ -339,7 +339,7 @@ is being updated on recurring basis.</code>
**Preprocessing**. For some operations, Erigon uses temporary files to preprocess data before inserting it into the main
DB. That reduces write amplification and DB inserts are orders of magnitude quicker.

<code> 🔬 See our detailed ETL explanation [here](https://github.com/idrecun/erigon/erigon-lib/blob/main/etl/README.md).</code>
<code> 🔬 See our detailed ETL explanation [here](https://github.com/tenderly/erigon/erigon-lib/blob/main/etl/README.md).</code>

**Plain state**.

Expand Down Expand Up @@ -486,7 +486,7 @@ sudo -u ${ERIGON_USER} DOCKER_UID=$(id -u ${ERIGON_USER}) DOCKER_GID=$(id -g ${E

Makefile creates the initial directories for erigon, prometheus and grafana. The PID namespace is shared between erigon
and rpcdaemon which is required to open Erigon's DB from another process (RPCDaemon local-mode).
See: https://github.com/idrecun/erigon/pull/2392/files
See: https://github.com/tenderly/erigon/pull/2392/files

If your docker installation requires the docker daemon to run as root (which is by default), you will need to prefix
the command above with `sudo`. However, it is sometimes recommended running docker (and therefore its containers) as a
Expand Down Expand Up @@ -636,7 +636,7 @@ https://github.com/mathMakesArt/Erigon-on-RPi-4

### How to change db pagesize

[post](https://github.com/idrecun/erigon/blob/devel/cmd/integration/Readme.md#copy-data-to-another-db)
[post](https://github.com/tenderly/erigon/blob/devel/cmd/integration/Readme.md#copy-data-to-another-db)


Getting in touch
Expand Down Expand Up @@ -691,7 +691,7 @@ Next tools show correct memory usage of Erigon:

### Blocks Execution is slow on cloud-network-drives

Please read https://github.com/idrecun/erigon/issues/1516#issuecomment-811958891
Please read https://github.com/tenderly/erigon/issues/1516#issuecomment-811958891
In short: network-disks are bad for blocks execution - because blocks execution reading data from db non-parallel
non-batched way.

Expand Down
2 changes: 1 addition & 1 deletion TESTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ ERROR[03-24|13:49:53.343] Ethereum peer removal failed peer=bfa4a38e
```

The second error happens during the unwinding the `TxPool` stage. It has been reported in this
issue: https://github.com/idrecun/erigon/issues/848
issue: https://github.com/tenderly/erigon/issues/848

```
ERROR[08-01|14:30:38.297] Demoting invalidated transaction hash="6ee8a8…92bf22"
Expand Down
4 changes: 2 additions & 2 deletions accounts/abi/abi.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ import (
"fmt"
"io"

libcommon "github.com/idrecun/erigon/erigon-lib/common"
libcommon "github.com/tenderly/erigon/erigon-lib/common"

"github.com/idrecun/erigon/crypto"
"github.com/tenderly/erigon/crypto"
)

// The ABI holds information about a contract's context and available
Expand Down
8 changes: 4 additions & 4 deletions accounts/abi/abi_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ import (
"strings"
"testing"

libcommon "github.com/idrecun/erigon/erigon-lib/common"
libcommon "github.com/tenderly/erigon/erigon-lib/common"

"github.com/idrecun/erigon/common"
"github.com/idrecun/erigon/common/math"
"github.com/idrecun/erigon/crypto"
"github.com/tenderly/erigon/common"
"github.com/tenderly/erigon/common/math"
"github.com/tenderly/erigon/crypto"
)

const jsondata = `
Expand Down
6 changes: 3 additions & 3 deletions accounts/abi/bind/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ import (
"errors"
"math/big"

libcommon "github.com/idrecun/erigon/erigon-lib/common"
libcommon "github.com/tenderly/erigon/erigon-lib/common"

"github.com/idrecun/erigon/core/types"
"github.com/idrecun/erigon/crypto"
"github.com/tenderly/erigon/core/types"
"github.com/tenderly/erigon/crypto"
)

// ErrNoChainID is returned whenever the user failed to specify a chain id.
Expand Down
6 changes: 3 additions & 3 deletions accounts/abi/bind/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ import (
"errors"
"math/big"

libcommon "github.com/idrecun/erigon/erigon-lib/common"
libcommon "github.com/tenderly/erigon/erigon-lib/common"

ethereum "github.com/idrecun/erigon"
"github.com/idrecun/erigon/core/types"
ethereum "github.com/tenderly/erigon"
"github.com/tenderly/erigon/core/types"
)

var (
Expand Down
48 changes: 24 additions & 24 deletions accounts/abi/bind/backends/simulated.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,30 +28,30 @@ import (
"github.com/holiman/uint256"
"github.com/ledgerwatch/log/v3"

"github.com/idrecun/erigon/erigon-lib/chain"
libcommon "github.com/idrecun/erigon/erigon-lib/common"
"github.com/idrecun/erigon/erigon-lib/common/hexutility"
"github.com/idrecun/erigon/erigon-lib/kv"
state2 "github.com/idrecun/erigon/erigon-lib/state"
types2 "github.com/idrecun/erigon/erigon-lib/types"

ethereum "github.com/idrecun/erigon"
"github.com/idrecun/erigon/accounts/abi"
"github.com/idrecun/erigon/accounts/abi/bind"
"github.com/idrecun/erigon/common/math"
"github.com/idrecun/erigon/common/u256"
"github.com/idrecun/erigon/consensus"
"github.com/idrecun/erigon/consensus/ethash"
"github.com/idrecun/erigon/consensus/misc"
"github.com/idrecun/erigon/core"
"github.com/idrecun/erigon/core/rawdb"
"github.com/idrecun/erigon/core/state"
"github.com/idrecun/erigon/core/types"
"github.com/idrecun/erigon/core/vm"
"github.com/idrecun/erigon/event"
"github.com/idrecun/erigon/params"
"github.com/idrecun/erigon/turbo/services"
"github.com/idrecun/erigon/turbo/stages/mock"
"github.com/tenderly/erigon/erigon-lib/chain"
libcommon "github.com/tenderly/erigon/erigon-lib/common"
"github.com/tenderly/erigon/erigon-lib/common/hexutility"
"github.com/tenderly/erigon/erigon-lib/kv"
state2 "github.com/tenderly/erigon/erigon-lib/state"
types2 "github.com/tenderly/erigon/erigon-lib/types"

ethereum "github.com/tenderly/erigon"
"github.com/tenderly/erigon/accounts/abi"
"github.com/tenderly/erigon/accounts/abi/bind"
"github.com/tenderly/erigon/common/math"
"github.com/tenderly/erigon/common/u256"
"github.com/tenderly/erigon/consensus"
"github.com/tenderly/erigon/consensus/ethash"
"github.com/tenderly/erigon/consensus/misc"
"github.com/tenderly/erigon/core"
"github.com/tenderly/erigon/core/rawdb"
"github.com/tenderly/erigon/core/state"
"github.com/tenderly/erigon/core/types"
"github.com/tenderly/erigon/core/vm"
"github.com/tenderly/erigon/event"
"github.com/tenderly/erigon/params"
"github.com/tenderly/erigon/turbo/services"
"github.com/tenderly/erigon/turbo/stages/mock"
)

// This nil assignment ensures at compile time that SimulatedBackend implements bind.ContractBackend.
Expand Down
22 changes: 11 additions & 11 deletions accounts/abi/bind/backends/simulated_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@ import (
"time"

"github.com/holiman/uint256"
ethereum "github.com/idrecun/erigon"
"github.com/idrecun/erigon/accounts/abi"
"github.com/idrecun/erigon/accounts/abi/bind"
"github.com/idrecun/erigon/common"
"github.com/idrecun/erigon/common/u256"
"github.com/idrecun/erigon/core/rawdb"
"github.com/idrecun/erigon/core/types"
"github.com/idrecun/erigon/crypto"
libcommon "github.com/idrecun/erigon/erigon-lib/common"
"github.com/idrecun/erigon/erigon-lib/kv"
"github.com/idrecun/erigon/params"
ethereum "github.com/tenderly/erigon"
"github.com/tenderly/erigon/accounts/abi"
"github.com/tenderly/erigon/accounts/abi/bind"
"github.com/tenderly/erigon/common"
"github.com/tenderly/erigon/common/u256"
"github.com/tenderly/erigon/core/rawdb"
"github.com/tenderly/erigon/core/types"
"github.com/tenderly/erigon/crypto"
libcommon "github.com/tenderly/erigon/erigon-lib/common"
"github.com/tenderly/erigon/erigon-lib/kv"
"github.com/tenderly/erigon/params"
)

func TestSimulatedBackend(t *testing.T) {
Expand Down
12 changes: 6 additions & 6 deletions accounts/abi/bind/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ import (
"math/big"

"github.com/holiman/uint256"
libcommon "github.com/idrecun/erigon/erigon-lib/common"
libcommon "github.com/tenderly/erigon/erigon-lib/common"

ethereum "github.com/idrecun/erigon"
"github.com/idrecun/erigon/accounts/abi"
"github.com/idrecun/erigon/core/types"
"github.com/idrecun/erigon/crypto"
"github.com/idrecun/erigon/event"
ethereum "github.com/tenderly/erigon"
"github.com/tenderly/erigon/accounts/abi"
"github.com/tenderly/erigon/core/types"
"github.com/tenderly/erigon/crypto"
"github.com/tenderly/erigon/event"
)

// SignerFn is a signer function callback when a contract requires a method to
Expand Down
16 changes: 8 additions & 8 deletions accounts/abi/bind/base_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@ package bind_test

import (
"context"
"github.com/idrecun/erigon/erigon-lib/common/hexutil"
"github.com/tenderly/erigon/erigon-lib/common/hexutil"
"math/big"
"reflect"
"strings"
"testing"

libcommon "github.com/idrecun/erigon/erigon-lib/common"
libcommon "github.com/tenderly/erigon/erigon-lib/common"

ethereum "github.com/idrecun/erigon"
"github.com/idrecun/erigon/accounts/abi"
"github.com/idrecun/erigon/accounts/abi/bind"
"github.com/idrecun/erigon/core/types"
"github.com/idrecun/erigon/crypto"
"github.com/idrecun/erigon/rlp"
ethereum "github.com/tenderly/erigon"
"github.com/tenderly/erigon/accounts/abi"
"github.com/tenderly/erigon/accounts/abi/bind"
"github.com/tenderly/erigon/core/types"
"github.com/tenderly/erigon/crypto"
"github.com/tenderly/erigon/rlp"
)

type mockCaller struct {
Expand Down
4 changes: 2 additions & 2 deletions accounts/abi/bind/bind.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// Package bind generates Ethereum contract Go bindings.
//
// Detailed usage document and tutorial available on the go-ethereum Wiki page:
// https://github.com/idrecun/erigon/wiki/Native-DApps:-Go-bindings-to-Ethereum-contracts
// https://github.com/tenderly/erigon/wiki/Native-DApps:-Go-bindings-to-Ethereum-contracts
package bind

import (
Expand All @@ -32,7 +32,7 @@ import (

"github.com/ledgerwatch/log/v3"

"github.com/idrecun/erigon/accounts/abi"
"github.com/tenderly/erigon/accounts/abi"
)

// Lang is a target programming language selector to generate bindings for.
Expand Down
Loading

0 comments on commit 2f2bc35

Please sign in to comment.