diff --git a/.github/workflows/build-master.yml b/.github/workflows/build-master.yml index cde7b4b0..222a46fa 100644 --- a/.github/workflows/build-master.yml +++ b/.github/workflows/build-master.yml @@ -28,7 +28,7 @@ jobs: ref: ${{ github.sha }} release: "snapshot" docker: true - docker_repository: "noku-team/assertoor" + docker_repository: "erigontech/assertoor" docker_tag_prefix: "master" additional_tags: "['master','master-latest']" secrets: @@ -145,16 +145,16 @@ jobs: ## Latest automatically built executables. (Unstable development snapshot) Built from master branch (commit: ${{ github.sha }}) - Please read the [wiki](https://github.com/noku-team/assertoor/wiki) for setup / configuration instructions. + Please read the [wiki](https://github.com/erigontech/assertoor/wiki) for setup / configuration instructions. ### Release Artifacts | Release File | Description | | ------------- | ------------- | - | [assertoor_snapshot_windows_amd64.zip](https://github.com/noku-team/assertoor/releases/download/snapshot/assertoor_snapshot_windows_amd64.zip) | assertoor executables for windows/amd64 | - | [assertoor_snapshot_linux_amd64.tar.gz](https://github.com/noku-team/assertoor/releases/download/snapshot/assertoor_snapshot_linux_amd64.tar.gz) | assertoor executables for linux/amd64 | - | [assertoor_snapshot_linux_arm64.tar.gz](https://github.com/noku-team/assertoor/releases/download/snapshot/assertoor_snapshot_linux_arm64.tar.gz) | assertoor executables for linux/arm64 | - | [assertoor_snapshot_darwin_amd64.tar.gz](https://github.com/noku-team/assertoor/releases/download/snapshot/assertoor_snapshot_darwin_amd64.tar.gz) | assertoor executable for macos/amd64 | - | [assertoor_snapshot_darwin_arm64.tar.gz](https://github.com/noku-team/assertoor/releases/download/snapshot/assertoor_snapshot_darwin_arm64.tar.gz) | assertoor executable for macos/arm64 | + | [assertoor_snapshot_windows_amd64.zip](https://github.com/erigontech/assertoor/releases/download/snapshot/assertoor_snapshot_windows_amd64.zip) | assertoor executables for windows/amd64 | + | [assertoor_snapshot_linux_amd64.tar.gz](https://github.com/erigontech/assertoor/releases/download/snapshot/assertoor_snapshot_linux_amd64.tar.gz) | assertoor executables for linux/amd64 | + | [assertoor_snapshot_linux_arm64.tar.gz](https://github.com/erigontech/assertoor/releases/download/snapshot/assertoor_snapshot_linux_arm64.tar.gz) | assertoor executables for linux/arm64 | + | [assertoor_snapshot_darwin_amd64.tar.gz](https://github.com/erigontech/assertoor/releases/download/snapshot/assertoor_snapshot_darwin_amd64.tar.gz) | assertoor executable for macos/amd64 | + | [assertoor_snapshot_darwin_arm64.tar.gz](https://github.com/erigontech/assertoor/releases/download/snapshot/assertoor_snapshot_darwin_arm64.tar.gz) | assertoor executable for macos/arm64 | env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/build-noku.yml b/.github/workflows/build-noku.yml index 2ea7e70b..a0454951 100644 --- a/.github/workflows/build-noku.yml +++ b/.github/workflows/build-noku.yml @@ -18,7 +18,7 @@ on: env: REGISTRY: ghcr.io - IMAGE_NAME: noku-team/assertoor + IMAGE_NAME: erigontech/assertoor jobs: build-and-push: diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 57f0a78a..ee81388e 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -19,7 +19,7 @@ jobs: ref: ${{ github.sha }} release: "v${{ inputs.version }}" docker: true - docker_repository: "noku-team/assertoor" + docker_repository: "erigontech/assertoor" docker_tag_prefix: "v${{ inputs.version }}" additional_tags: "['v${{ inputs.version }}','latest']" secrets: diff --git a/.vscode/README.md b/.vscode/README.md index 6556da4c..36c8e4f3 100644 --- a/.vscode/README.md +++ b/.vscode/README.md @@ -175,8 +175,8 @@ web: # Custom external tests externalTests: - - file: https://raw.githubusercontent.com/noku-team/assertoor/master/playbooks/stable/block-proposal-check.yaml - - file: https://raw.githubusercontent.com/noku-team/assertoor/master/playbooks/dev/tx-pool-check-short.yaml + - file: https://raw.githubusercontent.com/erigontech/assertoor/master/playbooks/stable/block-proposal-check.yaml + - file: https://raw.githubusercontent.com/erigontech/assertoor/master/playbooks/dev/tx-pool-check-short.yaml # Custom logging configuration logging: diff --git a/Makefile b/Makefile index 50d320aa..a72500ce 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # assertoor VERSION := $(shell git rev-parse --short HEAD) -GOLDFLAGS += -X 'github.com/noku-team/assertoor/pkg/coordinator/buildinfo.BuildVersion="$(VERSION)"' -GOLDFLAGS += -X 'github.com/noku-team/assertoor/pkg/coordinator/buildinfo.BuildRelease="$(RELEASE)"' +GOLDFLAGS += -X 'github.com/erigontech/assertoor/pkg/coordinator/buildinfo.BuildVersion="$(VERSION)"' +GOLDFLAGS += -X 'github.com/erigontech/assertoor/pkg/coordinator/buildinfo.BuildRelease="$(RELEASE)"' CURRENT_UID := $(shell id -u) CURRENT_GID := $(shell id -g) diff --git a/README.md b/README.md index f9010d36..0af274d7 100644 --- a/README.md +++ b/README.md @@ -31,18 +31,18 @@ Assertoor is a robust and versatile tool designed for comprehensive testing of t - **Web API**:\ An API interface provides real-time test and task status, logs, and results for easy programmatic access. \ This feature enables simple integration with other systems and facilitates automated monitoring and analysis workflows.\ - eg. for running [scheduled tests with github workflows](https://github.com/noku-team/assertoor-test) + eg. for running [scheduled tests with github workflows](https://github.com/erigontech/assertoor-test) ## Getting Started 1. **Clone the repository & build the tool**: ``` - git clone https://github.com/noku-team/assertoor.git + git clone https://github.com/erigontech/assertoor.git cd assertoor make build ``` 2. **Configure Your Tests**:\ - Prepare tests in a YAML file. See example configurations [here](https://github.com/noku-team/assertoor/tree/master/example/config). \ + Prepare tests in a YAML file. See example configurations [here](https://github.com/erigontech/assertoor/tree/master/example/config). \ Provide RPC URLs for at least one Client Pair (consensus & execution). 3. **Run Assertoor**:\ Launch the tool to execute defined tests. @@ -54,8 +54,8 @@ Assertoor is a robust and versatile tool designed for comprehensive testing of t ## Documentation and Examples -Refer to our [documentation](https://github.com/noku-team/assertoor/wiki) for installation, configuration, and usage guidelines. \ -Example tests are available [here](https://github.com/noku-team/assertoor/tree/master/playbooks). +Refer to our [documentation](https://github.com/erigontech/assertoor/wiki) for installation, configuration, and usage guidelines. \ +Example tests are available [here](https://github.com/erigontech/assertoor/tree/master/playbooks). ## Contributing diff --git a/cmd/root.go b/cmd/root.go index 5cf30ac8..28b0994c 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -3,8 +3,8 @@ package cmd import ( "context" - "github.com/noku-team/assertoor/pkg/coordinator" - "github.com/noku-team/assertoor/pkg/coordinator/buildinfo" + "github.com/erigontech/assertoor/pkg/coordinator" + "github.com/erigontech/assertoor/pkg/coordinator/buildinfo" "github.com/sirupsen/logrus" "github.com/spf13/cobra" ) diff --git a/cmd/tasks.go b/cmd/tasks.go index eb21e1b8..bda29280 100644 --- a/cmd/tasks.go +++ b/cmd/tasks.go @@ -7,7 +7,7 @@ import ( "fmt" "log" - "github.com/noku-team/assertoor/pkg/coordinator/tasks" + "github.com/erigontech/assertoor/pkg/coordinator/tasks" "github.com/spf13/cobra" "gopkg.in/yaml.v3" ) diff --git a/docs/01-setup.md b/docs/01-setup.md index b9d59a3f..f15c9129 100644 --- a/docs/01-setup.md +++ b/docs/01-setup.md @@ -5,7 +5,7 @@ Assertoor provides distribution-specific executables for Windows, Linux, and macOS. 1. **Download the Latest Release**:\ - Navigate to the [Releases](https://github.com/noku-team/assertoor/releases) page and download the latest version suitable for your operating system. + Navigate to the [Releases](https://github.com/erigontech/assertoor/releases) page and download the latest version suitable for your operating system. 2. **Run the Executable**:\ After downloading, run the executable with a test configuration file. The command will be similar to the following: @@ -21,7 +21,7 @@ If you prefer to build Assertoor from source, ensure you have [Go](https://go.de 1. **Clone the Repository**:\ Use the following commands to clone the Assertoor repository and navigate to its directory: ``` - git clone https://github.com/noku-team/assertoor.git + git clone https://github.com/erigontech/assertoor.git cd assertoor ``` 2. **Build the Tool**:\ diff --git a/go.mod b/go.mod index 966c7b54..f5db8c81 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/noku-team/assertoor +module github.com/erigontech/assertoor go 1.23.0 diff --git a/main.go b/main.go index 79655ad4..fb2686f2 100644 --- a/main.go +++ b/main.go @@ -8,7 +8,7 @@ import ( "syscall" "time" - "github.com/noku-team/assertoor/cmd" + "github.com/erigontech/assertoor/cmd" ) func main() { diff --git a/pkg/coordinator/clients/clients.go b/pkg/coordinator/clients/clients.go index 406715fd..68c05e51 100644 --- a/pkg/coordinator/clients/clients.go +++ b/pkg/coordinator/clients/clients.go @@ -8,9 +8,9 @@ import ( "runtime/debug" "time" + "github.com/erigontech/assertoor/pkg/coordinator/clients/consensus" + "github.com/erigontech/assertoor/pkg/coordinator/clients/execution" "github.com/ethereum/go-ethereum/common" - "github.com/noku-team/assertoor/pkg/coordinator/clients/consensus" - "github.com/noku-team/assertoor/pkg/coordinator/clients/execution" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/clients/consensus/client.go b/pkg/coordinator/clients/consensus/client.go index de9feb51..e5850381 100644 --- a/pkg/coordinator/clients/consensus/client.go +++ b/pkg/coordinator/clients/consensus/client.go @@ -6,7 +6,7 @@ import ( "time" "github.com/attestantio/go-eth2-client/spec/phase0" - "github.com/noku-team/assertoor/pkg/coordinator/clients/consensus/rpc" + "github.com/erigontech/assertoor/pkg/coordinator/clients/consensus/rpc" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/clients/consensus/clientlogic.go b/pkg/coordinator/clients/consensus/clientlogic.go index e0bb50e5..d84b7a27 100644 --- a/pkg/coordinator/clients/consensus/clientlogic.go +++ b/pkg/coordinator/clients/consensus/clientlogic.go @@ -10,7 +10,7 @@ import ( v1 "github.com/attestantio/go-eth2-client/api/v1" "github.com/attestantio/go-eth2-client/spec" "github.com/attestantio/go-eth2-client/spec/phase0" - "github.com/noku-team/assertoor/pkg/coordinator/clients/consensus/rpc" + "github.com/erigontech/assertoor/pkg/coordinator/clients/consensus/rpc" ) func (client *Client) runClientLoop() { diff --git a/pkg/coordinator/clients/consensus/rpc/beaconstream.go b/pkg/coordinator/clients/consensus/rpc/beaconstream.go index 0639d382..2e7c1416 100644 --- a/pkg/coordinator/clients/consensus/rpc/beaconstream.go +++ b/pkg/coordinator/clients/consensus/rpc/beaconstream.go @@ -12,7 +12,7 @@ import ( v1 "github.com/attestantio/go-eth2-client/api/v1" "github.com/donovanhide/eventsource" - "github.com/noku-team/assertoor/pkg/coordinator/clients/consensus/rpc/eventstream" + "github.com/erigontech/assertoor/pkg/coordinator/clients/consensus/rpc/eventstream" ) const ( diff --git a/pkg/coordinator/clients/execution/blockcache.go b/pkg/coordinator/clients/execution/blockcache.go index 17d18429..da9adf20 100644 --- a/pkg/coordinator/clients/execution/blockcache.go +++ b/pkg/coordinator/clients/execution/blockcache.go @@ -11,8 +11,8 @@ import ( "sync" "time" + "github.com/erigontech/assertoor/pkg/coordinator/clients/execution/rpc" "github.com/ethereum/go-ethereum/common" - "github.com/noku-team/assertoor/pkg/coordinator/clients/execution/rpc" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/clients/execution/client.go b/pkg/coordinator/clients/execution/client.go index 20eac81e..612ec14d 100644 --- a/pkg/coordinator/clients/execution/client.go +++ b/pkg/coordinator/clients/execution/client.go @@ -5,8 +5,8 @@ import ( "sync" "time" + "github.com/erigontech/assertoor/pkg/coordinator/clients/execution/rpc" "github.com/ethereum/go-ethereum/common" - "github.com/noku-team/assertoor/pkg/coordinator/clients/execution/rpc" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/config.go b/pkg/coordinator/config.go index 631224f1..4435f266 100644 --- a/pkg/coordinator/config.go +++ b/pkg/coordinator/config.go @@ -3,12 +3,12 @@ package coordinator import ( "os" - "github.com/noku-team/assertoor/pkg/coordinator/clients" - "github.com/noku-team/assertoor/pkg/coordinator/db" - "github.com/noku-team/assertoor/pkg/coordinator/helper" - "github.com/noku-team/assertoor/pkg/coordinator/names" - "github.com/noku-team/assertoor/pkg/coordinator/types" - web_types "github.com/noku-team/assertoor/pkg/coordinator/web/types" + "github.com/erigontech/assertoor/pkg/coordinator/clients" + "github.com/erigontech/assertoor/pkg/coordinator/db" + "github.com/erigontech/assertoor/pkg/coordinator/helper" + "github.com/erigontech/assertoor/pkg/coordinator/names" + "github.com/erigontech/assertoor/pkg/coordinator/types" + web_types "github.com/erigontech/assertoor/pkg/coordinator/web/types" "gopkg.in/yaml.v3" ) diff --git a/pkg/coordinator/coordinator.go b/pkg/coordinator/coordinator.go index 4b8e742f..b8b40d18 100644 --- a/pkg/coordinator/coordinator.go +++ b/pkg/coordinator/coordinator.go @@ -11,18 +11,18 @@ import ( "strings" "time" + "github.com/erigontech/assertoor/pkg/coordinator/buildinfo" + "github.com/erigontech/assertoor/pkg/coordinator/clients" + "github.com/erigontech/assertoor/pkg/coordinator/clients/consensus" + "github.com/erigontech/assertoor/pkg/coordinator/db" + "github.com/erigontech/assertoor/pkg/coordinator/logger" + "github.com/erigontech/assertoor/pkg/coordinator/names" + "github.com/erigontech/assertoor/pkg/coordinator/test" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/vars" + "github.com/erigontech/assertoor/pkg/coordinator/wallet" + "github.com/erigontech/assertoor/pkg/coordinator/web" "github.com/jmoiron/sqlx" - "github.com/noku-team/assertoor/pkg/coordinator/buildinfo" - "github.com/noku-team/assertoor/pkg/coordinator/clients" - "github.com/noku-team/assertoor/pkg/coordinator/clients/consensus" - "github.com/noku-team/assertoor/pkg/coordinator/db" - "github.com/noku-team/assertoor/pkg/coordinator/logger" - "github.com/noku-team/assertoor/pkg/coordinator/names" - "github.com/noku-team/assertoor/pkg/coordinator/test" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/vars" - "github.com/noku-team/assertoor/pkg/coordinator/wallet" - "github.com/noku-team/assertoor/pkg/coordinator/web" "github.com/prometheus/client_golang/prometheus/promhttp" "github.com/sirupsen/logrus" "github.com/tyler-smith/go-bip39" diff --git a/pkg/coordinator/logger/dbreader.go b/pkg/coordinator/logger/dbreader.go index 2012b322..fe9ec1c3 100644 --- a/pkg/coordinator/logger/dbreader.go +++ b/pkg/coordinator/logger/dbreader.go @@ -1,6 +1,6 @@ package logger -import "github.com/noku-team/assertoor/pkg/coordinator/db" +import "github.com/erigontech/assertoor/pkg/coordinator/db" type logDBReader struct { database *db.Database diff --git a/pkg/coordinator/logger/dbwriter.go b/pkg/coordinator/logger/dbwriter.go index cf53b039..07f7d403 100644 --- a/pkg/coordinator/logger/dbwriter.go +++ b/pkg/coordinator/logger/dbwriter.go @@ -4,8 +4,8 @@ import ( "sync" "time" + "github.com/erigontech/assertoor/pkg/coordinator/db" "github.com/jmoiron/sqlx" - "github.com/noku-team/assertoor/pkg/coordinator/db" "github.com/sirupsen/logrus" "gopkg.in/yaml.v3" ) diff --git a/pkg/coordinator/logger/logreader.go b/pkg/coordinator/logger/logreader.go index e3333498..80ac0ef2 100644 --- a/pkg/coordinator/logger/logreader.go +++ b/pkg/coordinator/logger/logreader.go @@ -1,6 +1,6 @@ package logger -import "github.com/noku-team/assertoor/pkg/coordinator/db" +import "github.com/erigontech/assertoor/pkg/coordinator/db" type LogReader interface { GetLogEntries(from, limit uint64) []*db.TaskLog diff --git a/pkg/coordinator/logger/logscope.go b/pkg/coordinator/logger/logscope.go index a2191404..27f0ed8e 100644 --- a/pkg/coordinator/logger/logscope.go +++ b/pkg/coordinator/logger/logscope.go @@ -4,7 +4,7 @@ import ( "io" "time" - "github.com/noku-team/assertoor/pkg/coordinator/db" + "github.com/erigontech/assertoor/pkg/coordinator/db" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/logger/membuf.go b/pkg/coordinator/logger/membuf.go index d530280b..daa314cd 100644 --- a/pkg/coordinator/logger/membuf.go +++ b/pkg/coordinator/logger/membuf.go @@ -3,7 +3,7 @@ package logger import ( "sync" - "github.com/noku-team/assertoor/pkg/coordinator/db" + "github.com/erigontech/assertoor/pkg/coordinator/db" "github.com/sirupsen/logrus" "gopkg.in/yaml.v3" ) diff --git a/pkg/coordinator/scheduler/options.go b/pkg/coordinator/scheduler/options.go index 627ec9d2..63ef90ec 100644 --- a/pkg/coordinator/scheduler/options.go +++ b/pkg/coordinator/scheduler/options.go @@ -3,8 +3,8 @@ package scheduler import ( "fmt" - "github.com/noku-team/assertoor/pkg/coordinator/helper" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/helper" + "github.com/erigontech/assertoor/pkg/coordinator/types" "gopkg.in/yaml.v3" ) diff --git a/pkg/coordinator/scheduler/scheduler.go b/pkg/coordinator/scheduler/scheduler.go index 62111f3b..dc3e4ae3 100644 --- a/pkg/coordinator/scheduler/scheduler.go +++ b/pkg/coordinator/scheduler/scheduler.go @@ -6,7 +6,7 @@ import ( "sync" "time" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/scheduler/services.go b/pkg/coordinator/scheduler/services.go index b9e75cb2..ebd74aca 100644 --- a/pkg/coordinator/scheduler/services.go +++ b/pkg/coordinator/scheduler/services.go @@ -1,11 +1,11 @@ package scheduler import ( - "github.com/noku-team/assertoor/pkg/coordinator/clients" - "github.com/noku-team/assertoor/pkg/coordinator/db" - "github.com/noku-team/assertoor/pkg/coordinator/names" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/wallet" + "github.com/erigontech/assertoor/pkg/coordinator/clients" + "github.com/erigontech/assertoor/pkg/coordinator/db" + "github.com/erigontech/assertoor/pkg/coordinator/names" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/wallet" ) type servicesProvider struct { diff --git a/pkg/coordinator/scheduler/task_execution.go b/pkg/coordinator/scheduler/task_execution.go index f8e74349..10914d7b 100644 --- a/pkg/coordinator/scheduler/task_execution.go +++ b/pkg/coordinator/scheduler/task_execution.go @@ -6,7 +6,7 @@ import ( "runtime/debug" "time" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/types" ) // ExecuteTask executes a task diff --git a/pkg/coordinator/scheduler/task_state.go b/pkg/coordinator/scheduler/task_state.go index 1cdcc0cd..d15602ac 100644 --- a/pkg/coordinator/scheduler/task_state.go +++ b/pkg/coordinator/scheduler/task_state.go @@ -5,12 +5,12 @@ import ( "sync" "time" + "github.com/erigontech/assertoor/pkg/coordinator/db" + "github.com/erigontech/assertoor/pkg/coordinator/logger" + "github.com/erigontech/assertoor/pkg/coordinator/tasks" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/vars" "github.com/jmoiron/sqlx" - "github.com/noku-team/assertoor/pkg/coordinator/db" - "github.com/noku-team/assertoor/pkg/coordinator/logger" - "github.com/noku-team/assertoor/pkg/coordinator/tasks" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/vars" "gopkg.in/yaml.v3" ) diff --git a/pkg/coordinator/tasks/check_clients_are_healthy/config.go b/pkg/coordinator/tasks/check_clients_are_healthy/config.go index 04e63946..7d4d1bf6 100644 --- a/pkg/coordinator/tasks/check_clients_are_healthy/config.go +++ b/pkg/coordinator/tasks/check_clients_are_healthy/config.go @@ -3,7 +3,7 @@ package checkclientsarehealthy import ( "time" - "github.com/noku-team/assertoor/pkg/coordinator/helper" + "github.com/erigontech/assertoor/pkg/coordinator/helper" ) type Config struct { diff --git a/pkg/coordinator/tasks/check_clients_are_healthy/task.go b/pkg/coordinator/tasks/check_clients_are_healthy/task.go index 0b9f7b49..1fb1165b 100644 --- a/pkg/coordinator/tasks/check_clients_are_healthy/task.go +++ b/pkg/coordinator/tasks/check_clients_are_healthy/task.go @@ -5,11 +5,11 @@ import ( "fmt" "time" - "github.com/noku-team/assertoor/pkg/coordinator/clients" - "github.com/noku-team/assertoor/pkg/coordinator/clients/consensus" - "github.com/noku-team/assertoor/pkg/coordinator/clients/execution" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/vars" + "github.com/erigontech/assertoor/pkg/coordinator/clients" + "github.com/erigontech/assertoor/pkg/coordinator/clients/consensus" + "github.com/erigontech/assertoor/pkg/coordinator/clients/execution" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/vars" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/check_consensus_attestation_stats/task.go b/pkg/coordinator/tasks/check_consensus_attestation_stats/task.go index d1a0de03..8f41061d 100644 --- a/pkg/coordinator/tasks/check_consensus_attestation_stats/task.go +++ b/pkg/coordinator/tasks/check_consensus_attestation_stats/task.go @@ -8,8 +8,8 @@ import ( "github.com/attestantio/go-eth2-client/spec" "github.com/attestantio/go-eth2-client/spec/phase0" - "github.com/noku-team/assertoor/pkg/coordinator/clients/consensus" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/clients/consensus" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/prysmaticlabs/go-bitfield" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/check_consensus_block_proposals/task.go b/pkg/coordinator/tasks/check_consensus_block_proposals/task.go index 4c5b290b..a3fa935f 100644 --- a/pkg/coordinator/tasks/check_consensus_block_proposals/task.go +++ b/pkg/coordinator/tasks/check_consensus_block_proposals/task.go @@ -11,11 +11,11 @@ import ( "github.com/attestantio/go-eth2-client/spec" "github.com/attestantio/go-eth2-client/spec/phase0" + "github.com/erigontech/assertoor/pkg/coordinator/clients/consensus" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/vars" "github.com/ethereum/go-ethereum/common" "github.com/juliangruber/go-intersect" - "github.com/noku-team/assertoor/pkg/coordinator/clients/consensus" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/vars" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/check_consensus_finality/task.go b/pkg/coordinator/tasks/check_consensus_finality/task.go index 60ceacce..7afeb404 100644 --- a/pkg/coordinator/tasks/check_consensus_finality/task.go +++ b/pkg/coordinator/tasks/check_consensus_finality/task.go @@ -5,7 +5,7 @@ import ( "fmt" "time" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/check_consensus_forks/task.go b/pkg/coordinator/tasks/check_consensus_forks/task.go index e3292387..1651ae9d 100644 --- a/pkg/coordinator/tasks/check_consensus_forks/task.go +++ b/pkg/coordinator/tasks/check_consensus_forks/task.go @@ -5,8 +5,8 @@ import ( "fmt" "time" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/vars" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/vars" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/check_consensus_proposer_duty/task.go b/pkg/coordinator/tasks/check_consensus_proposer_duty/task.go index 70f1c1f2..9d812897 100644 --- a/pkg/coordinator/tasks/check_consensus_proposer_duty/task.go +++ b/pkg/coordinator/tasks/check_consensus_proposer_duty/task.go @@ -7,8 +7,8 @@ import ( "time" v1 "github.com/attestantio/go-eth2-client/api/v1" - "github.com/noku-team/assertoor/pkg/coordinator/clients/consensus" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/clients/consensus" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/check_consensus_reorgs/task.go b/pkg/coordinator/tasks/check_consensus_reorgs/task.go index a88e8eae..e32e00ff 100644 --- a/pkg/coordinator/tasks/check_consensus_reorgs/task.go +++ b/pkg/coordinator/tasks/check_consensus_reorgs/task.go @@ -6,8 +6,8 @@ import ( "fmt" "time" - "github.com/noku-team/assertoor/pkg/coordinator/clients/consensus" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/clients/consensus" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/check_consensus_slot_range/task.go b/pkg/coordinator/tasks/check_consensus_slot_range/task.go index d70de34c..48a63a99 100644 --- a/pkg/coordinator/tasks/check_consensus_slot_range/task.go +++ b/pkg/coordinator/tasks/check_consensus_slot_range/task.go @@ -5,7 +5,7 @@ import ( "fmt" "time" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/check_consensus_sync_status/config.go b/pkg/coordinator/tasks/check_consensus_sync_status/config.go index 24a14541..b92208f9 100644 --- a/pkg/coordinator/tasks/check_consensus_sync_status/config.go +++ b/pkg/coordinator/tasks/check_consensus_sync_status/config.go @@ -4,7 +4,7 @@ import ( "errors" "time" - "github.com/noku-team/assertoor/pkg/coordinator/helper" + "github.com/erigontech/assertoor/pkg/coordinator/helper" ) type Config struct { diff --git a/pkg/coordinator/tasks/check_consensus_sync_status/task.go b/pkg/coordinator/tasks/check_consensus_sync_status/task.go index fd53e3c1..5153a47f 100644 --- a/pkg/coordinator/tasks/check_consensus_sync_status/task.go +++ b/pkg/coordinator/tasks/check_consensus_sync_status/task.go @@ -5,10 +5,10 @@ import ( "fmt" "time" - "github.com/noku-team/assertoor/pkg/coordinator/clients" - "github.com/noku-team/assertoor/pkg/coordinator/clients/consensus/rpc" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/vars" + "github.com/erigontech/assertoor/pkg/coordinator/clients" + "github.com/erigontech/assertoor/pkg/coordinator/clients/consensus/rpc" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/vars" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/check_consensus_validator_status/task.go b/pkg/coordinator/tasks/check_consensus_validator_status/task.go index 19b809f9..3a71c3d6 100644 --- a/pkg/coordinator/tasks/check_consensus_validator_status/task.go +++ b/pkg/coordinator/tasks/check_consensus_validator_status/task.go @@ -9,9 +9,9 @@ import ( "time" "github.com/attestantio/go-eth2-client/spec/phase0" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/vars" "github.com/ethereum/go-ethereum/common" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/vars" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/check_eth_call/task.go b/pkg/coordinator/tasks/check_eth_call/task.go index fdbae484..dbec4e3e 100644 --- a/pkg/coordinator/tasks/check_eth_call/task.go +++ b/pkg/coordinator/tasks/check_eth_call/task.go @@ -7,11 +7,11 @@ import ( "math/big" "time" + "github.com/erigontech/assertoor/pkg/coordinator/clients/execution" "github.com/ethereum/go-ethereum" "github.com/ethereum/go-ethereum/common" - "github.com/noku-team/assertoor/pkg/coordinator/clients/execution" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/check_execution_sync_status/config.go b/pkg/coordinator/tasks/check_execution_sync_status/config.go index e59dd5d0..7ad29e51 100644 --- a/pkg/coordinator/tasks/check_execution_sync_status/config.go +++ b/pkg/coordinator/tasks/check_execution_sync_status/config.go @@ -4,7 +4,7 @@ import ( "errors" "time" - "github.com/noku-team/assertoor/pkg/coordinator/helper" + "github.com/erigontech/assertoor/pkg/coordinator/helper" ) type Config struct { diff --git a/pkg/coordinator/tasks/check_execution_sync_status/task.go b/pkg/coordinator/tasks/check_execution_sync_status/task.go index bba0e095..57e8542d 100644 --- a/pkg/coordinator/tasks/check_execution_sync_status/task.go +++ b/pkg/coordinator/tasks/check_execution_sync_status/task.go @@ -5,10 +5,10 @@ import ( "fmt" "time" - "github.com/noku-team/assertoor/pkg/coordinator/clients" - "github.com/noku-team/assertoor/pkg/coordinator/clients/execution/rpc" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/vars" + "github.com/erigontech/assertoor/pkg/coordinator/clients" + "github.com/erigontech/assertoor/pkg/coordinator/clients/execution/rpc" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/vars" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/generate_blob_transactions/task.go b/pkg/coordinator/tasks/generate_blob_transactions/task.go index f12fdecb..7ef9d5b6 100644 --- a/pkg/coordinator/tasks/generate_blob_transactions/task.go +++ b/pkg/coordinator/tasks/generate_blob_transactions/task.go @@ -7,15 +7,15 @@ import ( "math/big" "time" + "github.com/erigontech/assertoor/pkg/coordinator/clients/execution" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/wallet" + "github.com/erigontech/assertoor/pkg/coordinator/wallet/blobtx" "github.com/ethereum/go-ethereum/accounts/abi/bind" "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" "github.com/holiman/uint256" - "github.com/noku-team/assertoor/pkg/coordinator/clients/execution" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/wallet" - "github.com/noku-team/assertoor/pkg/coordinator/wallet/blobtx" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/generate_bls_changes/task.go b/pkg/coordinator/tasks/generate_bls_changes/task.go index fe38fc7e..4f811036 100644 --- a/pkg/coordinator/tasks/generate_bls_changes/task.go +++ b/pkg/coordinator/tasks/generate_bls_changes/task.go @@ -11,10 +11,10 @@ import ( v1 "github.com/attestantio/go-eth2-client/api/v1" "github.com/attestantio/go-eth2-client/spec/capella" + "github.com/erigontech/assertoor/pkg/coordinator/clients/consensus" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/vars" hbls "github.com/herumi/bls-eth-go-binary/bls" - "github.com/noku-team/assertoor/pkg/coordinator/clients/consensus" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/vars" "github.com/protolambda/zrnt/eth2/beacon/common" "github.com/protolambda/ztyp/tree" "github.com/sirupsen/logrus" diff --git a/pkg/coordinator/tasks/generate_child_wallet/task.go b/pkg/coordinator/tasks/generate_child_wallet/task.go index 2c7ee439..34cf0372 100644 --- a/pkg/coordinator/tasks/generate_child_wallet/task.go +++ b/pkg/coordinator/tasks/generate_child_wallet/task.go @@ -6,10 +6,10 @@ import ( "math/rand" "time" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/vars" + "github.com/erigontech/assertoor/pkg/coordinator/wallet" "github.com/ethereum/go-ethereum/crypto" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/vars" - "github.com/noku-team/assertoor/pkg/coordinator/wallet" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/generate_consolidations/task.go b/pkg/coordinator/tasks/generate_consolidations/task.go index f437c6fc..6b364d9d 100644 --- a/pkg/coordinator/tasks/generate_consolidations/task.go +++ b/pkg/coordinator/tasks/generate_consolidations/task.go @@ -13,14 +13,14 @@ import ( v1 "github.com/attestantio/go-eth2-client/api/v1" "github.com/attestantio/go-eth2-client/spec/phase0" + "github.com/erigontech/assertoor/pkg/coordinator/clients/consensus" + "github.com/erigontech/assertoor/pkg/coordinator/clients/execution" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/wallet" "github.com/ethereum/go-ethereum/accounts/abi/bind" ethcommon "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" - "github.com/noku-team/assertoor/pkg/coordinator/clients/consensus" - "github.com/noku-team/assertoor/pkg/coordinator/clients/execution" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/wallet" "github.com/sirupsen/logrus" "github.com/tyler-smith/go-bip39" util "github.com/wealdtech/go-eth2-util" diff --git a/pkg/coordinator/tasks/generate_deposits/task.go b/pkg/coordinator/tasks/generate_deposits/task.go index 091bae04..82658adc 100644 --- a/pkg/coordinator/tasks/generate_deposits/task.go +++ b/pkg/coordinator/tasks/generate_deposits/task.go @@ -13,15 +13,15 @@ import ( "time" v1 "github.com/attestantio/go-eth2-client/api/v1" + "github.com/erigontech/assertoor/pkg/coordinator/clients/consensus" + "github.com/erigontech/assertoor/pkg/coordinator/clients/execution" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/wallet" "github.com/ethereum/go-ethereum/accounts/abi/bind" ethcommon "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" hbls "github.com/herumi/bls-eth-go-binary/bls" - "github.com/noku-team/assertoor/pkg/coordinator/clients/consensus" - "github.com/noku-team/assertoor/pkg/coordinator/clients/execution" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/wallet" "github.com/protolambda/zrnt/eth2/beacon/common" "github.com/protolambda/zrnt/eth2/util/hashing" "github.com/protolambda/ztyp/tree" @@ -30,7 +30,7 @@ import ( e2types "github.com/wealdtech/go-eth2-types/v2" util "github.com/wealdtech/go-eth2-util" - depositcontract "github.com/noku-team/assertoor/pkg/coordinator/tasks/generate_deposits/deposit_contract" + depositcontract "github.com/erigontech/assertoor/pkg/coordinator/tasks/generate_deposits/deposit_contract" ) var ( diff --git a/pkg/coordinator/tasks/generate_eoa_transactions/task.go b/pkg/coordinator/tasks/generate_eoa_transactions/task.go index a380d32b..50d737ae 100644 --- a/pkg/coordinator/tasks/generate_eoa_transactions/task.go +++ b/pkg/coordinator/tasks/generate_eoa_transactions/task.go @@ -9,13 +9,13 @@ import ( "sync" "time" + "github.com/erigontech/assertoor/pkg/coordinator/clients/execution" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/wallet" "github.com/ethereum/go-ethereum/accounts/abi/bind" "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" - "github.com/noku-team/assertoor/pkg/coordinator/clients/execution" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/wallet" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/generate_exits/task.go b/pkg/coordinator/tasks/generate_exits/task.go index e40a7c63..e15461b7 100644 --- a/pkg/coordinator/tasks/generate_exits/task.go +++ b/pkg/coordinator/tasks/generate_exits/task.go @@ -10,9 +10,9 @@ import ( v1 "github.com/attestantio/go-eth2-client/api/v1" "github.com/attestantio/go-eth2-client/spec/phase0" + "github.com/erigontech/assertoor/pkg/coordinator/clients/consensus" + "github.com/erigontech/assertoor/pkg/coordinator/types" hbls "github.com/herumi/bls-eth-go-binary/bls" - "github.com/noku-team/assertoor/pkg/coordinator/clients/consensus" - "github.com/noku-team/assertoor/pkg/coordinator/types" "github.com/protolambda/zrnt/eth2/beacon/common" "github.com/protolambda/ztyp/tree" "github.com/sirupsen/logrus" diff --git a/pkg/coordinator/tasks/generate_slashings/task.go b/pkg/coordinator/tasks/generate_slashings/task.go index 4436c1f4..62a08b3a 100644 --- a/pkg/coordinator/tasks/generate_slashings/task.go +++ b/pkg/coordinator/tasks/generate_slashings/task.go @@ -10,10 +10,10 @@ import ( v1 "github.com/attestantio/go-eth2-client/api/v1" "github.com/attestantio/go-eth2-client/spec/phase0" + "github.com/erigontech/assertoor/pkg/coordinator/clients/consensus" + "github.com/erigontech/assertoor/pkg/coordinator/types" ethcommon "github.com/ethereum/go-ethereum/common" hbls "github.com/herumi/bls-eth-go-binary/bls" - "github.com/noku-team/assertoor/pkg/coordinator/clients/consensus" - "github.com/noku-team/assertoor/pkg/coordinator/types" "github.com/protolambda/zrnt/eth2/beacon/common" "github.com/protolambda/ztyp/tree" "github.com/sirupsen/logrus" diff --git a/pkg/coordinator/tasks/generate_transaction/config.go b/pkg/coordinator/tasks/generate_transaction/config.go index db00d365..e3704584 100644 --- a/pkg/coordinator/tasks/generate_transaction/config.go +++ b/pkg/coordinator/tasks/generate_transaction/config.go @@ -4,7 +4,7 @@ import ( "errors" "math/big" - "github.com/noku-team/assertoor/pkg/coordinator/helper" + "github.com/erigontech/assertoor/pkg/coordinator/helper" ) type Config struct { diff --git a/pkg/coordinator/tasks/generate_transaction/task.go b/pkg/coordinator/tasks/generate_transaction/task.go index c707cbb6..a8beac3d 100644 --- a/pkg/coordinator/tasks/generate_transaction/task.go +++ b/pkg/coordinator/tasks/generate_transaction/task.go @@ -9,17 +9,17 @@ import ( "strings" "time" + "github.com/erigontech/assertoor/pkg/coordinator/clients/execution" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/vars" + "github.com/erigontech/assertoor/pkg/coordinator/wallet" + "github.com/erigontech/assertoor/pkg/coordinator/wallet/blobtx" "github.com/ethereum/go-ethereum/accounts/abi/bind" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" "github.com/holiman/uint256" - "github.com/noku-team/assertoor/pkg/coordinator/clients/execution" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/vars" - "github.com/noku-team/assertoor/pkg/coordinator/wallet" - "github.com/noku-team/assertoor/pkg/coordinator/wallet/blobtx" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/generate_withdrawal_requests/task.go b/pkg/coordinator/tasks/generate_withdrawal_requests/task.go index 4181d692..0619acdb 100644 --- a/pkg/coordinator/tasks/generate_withdrawal_requests/task.go +++ b/pkg/coordinator/tasks/generate_withdrawal_requests/task.go @@ -14,14 +14,14 @@ import ( v1 "github.com/attestantio/go-eth2-client/api/v1" "github.com/attestantio/go-eth2-client/spec/phase0" + "github.com/erigontech/assertoor/pkg/coordinator/clients/consensus" + "github.com/erigontech/assertoor/pkg/coordinator/clients/execution" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/wallet" "github.com/ethereum/go-ethereum/accounts/abi/bind" ethcommon "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" - "github.com/noku-team/assertoor/pkg/coordinator/clients/consensus" - "github.com/noku-team/assertoor/pkg/coordinator/clients/execution" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/wallet" "github.com/sirupsen/logrus" "github.com/tyler-smith/go-bip39" util "github.com/wealdtech/go-eth2-util" diff --git a/pkg/coordinator/tasks/get_consensus_specs/task.go b/pkg/coordinator/tasks/get_consensus_specs/task.go index e49823ef..17154d4c 100644 --- a/pkg/coordinator/tasks/get_consensus_specs/task.go +++ b/pkg/coordinator/tasks/get_consensus_specs/task.go @@ -5,7 +5,7 @@ import ( "fmt" "time" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/get_execution_block/task.go b/pkg/coordinator/tasks/get_execution_block/task.go index ba37400d..98832770 100644 --- a/pkg/coordinator/tasks/get_execution_block/task.go +++ b/pkg/coordinator/tasks/get_execution_block/task.go @@ -8,8 +8,8 @@ import ( "github.com/sirupsen/logrus" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/vars" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/vars" ) var ( diff --git a/pkg/coordinator/tasks/get_pubkeys_from_mnemonic/task.go b/pkg/coordinator/tasks/get_pubkeys_from_mnemonic/task.go index 3b117ff3..4a92d2ed 100644 --- a/pkg/coordinator/tasks/get_pubkeys_from_mnemonic/task.go +++ b/pkg/coordinator/tasks/get_pubkeys_from_mnemonic/task.go @@ -7,7 +7,7 @@ import ( "strings" "time" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/sirupsen/logrus" "github.com/tyler-smith/go-bip39" util "github.com/wealdtech/go-eth2-util" diff --git a/pkg/coordinator/tasks/get_random_mnemonic/task.go b/pkg/coordinator/tasks/get_random_mnemonic/task.go index a3f94bfd..203fe8b0 100644 --- a/pkg/coordinator/tasks/get_random_mnemonic/task.go +++ b/pkg/coordinator/tasks/get_random_mnemonic/task.go @@ -5,7 +5,7 @@ import ( "fmt" "time" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/sirupsen/logrus" "github.com/tyler-smith/go-bip39" ) diff --git a/pkg/coordinator/tasks/get_wallet_details/task.go b/pkg/coordinator/tasks/get_wallet_details/task.go index 7f698876..9b990f27 100644 --- a/pkg/coordinator/tasks/get_wallet_details/task.go +++ b/pkg/coordinator/tasks/get_wallet_details/task.go @@ -5,10 +5,10 @@ import ( "fmt" "time" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/wallet" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/wallet" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/run_command/task.go b/pkg/coordinator/tasks/run_command/task.go index 965c4c6e..dd2644a7 100644 --- a/pkg/coordinator/tasks/run_command/task.go +++ b/pkg/coordinator/tasks/run_command/task.go @@ -6,7 +6,7 @@ import ( "os/exec" "time" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/run_external_tasks/task.go b/pkg/coordinator/tasks/run_external_tasks/task.go index f2696cb5..13273cb6 100644 --- a/pkg/coordinator/tasks/run_external_tasks/task.go +++ b/pkg/coordinator/tasks/run_external_tasks/task.go @@ -9,8 +9,8 @@ import ( "strings" "time" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/vars" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/vars" "github.com/sirupsen/logrus" "gopkg.in/yaml.v2" ) diff --git a/pkg/coordinator/tasks/run_shell/task.go b/pkg/coordinator/tasks/run_shell/task.go index f6a66fa3..dc08bef9 100644 --- a/pkg/coordinator/tasks/run_shell/task.go +++ b/pkg/coordinator/tasks/run_shell/task.go @@ -13,9 +13,9 @@ import ( "syscall" "time" + "github.com/erigontech/assertoor/pkg/coordinator/db" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/jmoiron/sqlx" - "github.com/noku-team/assertoor/pkg/coordinator/db" - "github.com/noku-team/assertoor/pkg/coordinator/types" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/run_task_background/config.go b/pkg/coordinator/tasks/run_task_background/config.go index cea41673..51e66c6a 100644 --- a/pkg/coordinator/tasks/run_task_background/config.go +++ b/pkg/coordinator/tasks/run_task_background/config.go @@ -3,7 +3,7 @@ package runtaskbackground import ( "errors" - "github.com/noku-team/assertoor/pkg/coordinator/helper" + "github.com/erigontech/assertoor/pkg/coordinator/helper" ) type Config struct { diff --git a/pkg/coordinator/tasks/run_task_background/task.go b/pkg/coordinator/tasks/run_task_background/task.go index 4adacef2..a5183c14 100644 --- a/pkg/coordinator/tasks/run_task_background/task.go +++ b/pkg/coordinator/tasks/run_task_background/task.go @@ -6,8 +6,8 @@ import ( "sync" "time" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/vars" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/vars" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/run_task_matrix/config.go b/pkg/coordinator/tasks/run_task_matrix/config.go index 404a48dc..9ab19057 100644 --- a/pkg/coordinator/tasks/run_task_matrix/config.go +++ b/pkg/coordinator/tasks/run_task_matrix/config.go @@ -3,7 +3,7 @@ package runtaskmatrix import ( "errors" - "github.com/noku-team/assertoor/pkg/coordinator/helper" + "github.com/erigontech/assertoor/pkg/coordinator/helper" ) type Config struct { diff --git a/pkg/coordinator/tasks/run_task_matrix/task.go b/pkg/coordinator/tasks/run_task_matrix/task.go index 91623aca..f315672c 100644 --- a/pkg/coordinator/tasks/run_task_matrix/task.go +++ b/pkg/coordinator/tasks/run_task_matrix/task.go @@ -6,8 +6,8 @@ import ( "sync" "time" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/vars" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/vars" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/run_task_options/config.go b/pkg/coordinator/tasks/run_task_options/config.go index 93c2346c..ca2efff9 100644 --- a/pkg/coordinator/tasks/run_task_options/config.go +++ b/pkg/coordinator/tasks/run_task_options/config.go @@ -3,7 +3,7 @@ package runtaskoptions import ( "errors" - "github.com/noku-team/assertoor/pkg/coordinator/helper" + "github.com/erigontech/assertoor/pkg/coordinator/helper" ) type Config struct { diff --git a/pkg/coordinator/tasks/run_task_options/task.go b/pkg/coordinator/tasks/run_task_options/task.go index d1f5f498..3b0555c4 100644 --- a/pkg/coordinator/tasks/run_task_options/task.go +++ b/pkg/coordinator/tasks/run_task_options/task.go @@ -5,8 +5,8 @@ import ( "fmt" "time" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/vars" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/vars" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/run_tasks/config.go b/pkg/coordinator/tasks/run_tasks/config.go index 3093b228..9152cdb2 100644 --- a/pkg/coordinator/tasks/run_tasks/config.go +++ b/pkg/coordinator/tasks/run_tasks/config.go @@ -3,7 +3,7 @@ package runtasks import ( "errors" - "github.com/noku-team/assertoor/pkg/coordinator/helper" + "github.com/erigontech/assertoor/pkg/coordinator/helper" ) type Config struct { diff --git a/pkg/coordinator/tasks/run_tasks/task.go b/pkg/coordinator/tasks/run_tasks/task.go index 756cdb12..784c7380 100644 --- a/pkg/coordinator/tasks/run_tasks/task.go +++ b/pkg/coordinator/tasks/run_tasks/task.go @@ -5,7 +5,7 @@ import ( "fmt" "time" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/run_tasks_concurrent/config.go b/pkg/coordinator/tasks/run_tasks_concurrent/config.go index cb53e73e..f2e88045 100644 --- a/pkg/coordinator/tasks/run_tasks_concurrent/config.go +++ b/pkg/coordinator/tasks/run_tasks_concurrent/config.go @@ -3,7 +3,7 @@ package runtasksconcurrent import ( "errors" - "github.com/noku-team/assertoor/pkg/coordinator/helper" + "github.com/erigontech/assertoor/pkg/coordinator/helper" ) type Config struct { diff --git a/pkg/coordinator/tasks/run_tasks_concurrent/task.go b/pkg/coordinator/tasks/run_tasks_concurrent/task.go index 2a6f6f40..391fd8dc 100644 --- a/pkg/coordinator/tasks/run_tasks_concurrent/task.go +++ b/pkg/coordinator/tasks/run_tasks_concurrent/task.go @@ -6,8 +6,8 @@ import ( "sync" "time" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/vars" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/vars" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/sleep/config.go b/pkg/coordinator/tasks/sleep/config.go index 8614e230..c38e9728 100644 --- a/pkg/coordinator/tasks/sleep/config.go +++ b/pkg/coordinator/tasks/sleep/config.go @@ -3,7 +3,7 @@ package sleep import ( "errors" - "github.com/noku-team/assertoor/pkg/coordinator/helper" + "github.com/erigontech/assertoor/pkg/coordinator/helper" ) type Config struct { diff --git a/pkg/coordinator/tasks/sleep/task.go b/pkg/coordinator/tasks/sleep/task.go index 999d640f..2f575730 100644 --- a/pkg/coordinator/tasks/sleep/task.go +++ b/pkg/coordinator/tasks/sleep/task.go @@ -5,7 +5,7 @@ import ( "fmt" "time" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/tasks.go b/pkg/coordinator/tasks/tasks.go index d0badd3d..4f9d03e2 100644 --- a/pkg/coordinator/tasks/tasks.go +++ b/pkg/coordinator/tasks/tasks.go @@ -1,47 +1,47 @@ package tasks import ( - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/types" - checkclientsarehealthy "github.com/noku-team/assertoor/pkg/coordinator/tasks/check_clients_are_healthy" - checkconsensusattestationstats "github.com/noku-team/assertoor/pkg/coordinator/tasks/check_consensus_attestation_stats" - checkconsensusblockproposals "github.com/noku-team/assertoor/pkg/coordinator/tasks/check_consensus_block_proposals" - checkconsensusfinality "github.com/noku-team/assertoor/pkg/coordinator/tasks/check_consensus_finality" - checkconsensusforks "github.com/noku-team/assertoor/pkg/coordinator/tasks/check_consensus_forks" - checkconsensusproposerduty "github.com/noku-team/assertoor/pkg/coordinator/tasks/check_consensus_proposer_duty" - checkconsensusreorgs "github.com/noku-team/assertoor/pkg/coordinator/tasks/check_consensus_reorgs" - checkconsensusslotrange "github.com/noku-team/assertoor/pkg/coordinator/tasks/check_consensus_slot_range" - checkconsensussyncstatus "github.com/noku-team/assertoor/pkg/coordinator/tasks/check_consensus_sync_status" - checkconsensusvalidatorstatus "github.com/noku-team/assertoor/pkg/coordinator/tasks/check_consensus_validator_status" - checkethcall "github.com/noku-team/assertoor/pkg/coordinator/tasks/check_eth_call" - checkexecutionsyncstatus "github.com/noku-team/assertoor/pkg/coordinator/tasks/check_execution_sync_status" - generateblobtransactions "github.com/noku-team/assertoor/pkg/coordinator/tasks/generate_blob_transactions" - generateblschanges "github.com/noku-team/assertoor/pkg/coordinator/tasks/generate_bls_changes" - generatechildwallet "github.com/noku-team/assertoor/pkg/coordinator/tasks/generate_child_wallet" - generateconsolidations "github.com/noku-team/assertoor/pkg/coordinator/tasks/generate_consolidations" - generatedeposits "github.com/noku-team/assertoor/pkg/coordinator/tasks/generate_deposits" - generateeoatransactions "github.com/noku-team/assertoor/pkg/coordinator/tasks/generate_eoa_transactions" - generateexits "github.com/noku-team/assertoor/pkg/coordinator/tasks/generate_exits" - generateslashings "github.com/noku-team/assertoor/pkg/coordinator/tasks/generate_slashings" - generatetransaction "github.com/noku-team/assertoor/pkg/coordinator/tasks/generate_transaction" - generatewithdrawalrequests "github.com/noku-team/assertoor/pkg/coordinator/tasks/generate_withdrawal_requests" - getconsensusspecs "github.com/noku-team/assertoor/pkg/coordinator/tasks/get_consensus_specs" - checkexecutionblock "github.com/noku-team/assertoor/pkg/coordinator/tasks/get_execution_block" - getpubkeysfrommnemonic "github.com/noku-team/assertoor/pkg/coordinator/tasks/get_pubkeys_from_mnemonic" - getrandommnemonic "github.com/noku-team/assertoor/pkg/coordinator/tasks/get_random_mnemonic" - getwalletdetails "github.com/noku-team/assertoor/pkg/coordinator/tasks/get_wallet_details" - runcommand "github.com/noku-team/assertoor/pkg/coordinator/tasks/run_command" - runexternaltasks "github.com/noku-team/assertoor/pkg/coordinator/tasks/run_external_tasks" - runshell "github.com/noku-team/assertoor/pkg/coordinator/tasks/run_shell" - runtaskbackground "github.com/noku-team/assertoor/pkg/coordinator/tasks/run_task_background" - runtaskmatrix "github.com/noku-team/assertoor/pkg/coordinator/tasks/run_task_matrix" - runtaskoptions "github.com/noku-team/assertoor/pkg/coordinator/tasks/run_task_options" - runtasks "github.com/noku-team/assertoor/pkg/coordinator/tasks/run_tasks" - runtasksconcurrent "github.com/noku-team/assertoor/pkg/coordinator/tasks/run_tasks_concurrent" - sleep "github.com/noku-team/assertoor/pkg/coordinator/tasks/sleep" - txpoolclean "github.com/noku-team/assertoor/pkg/coordinator/tasks/tx_pool_clean" - txpoollatencyanalysis "github.com/noku-team/assertoor/pkg/coordinator/tasks/tx_pool_latency_analysis" - txpoolthroughputanalysis "github.com/noku-team/assertoor/pkg/coordinator/tasks/tx_pool_throughput_analysis" + checkclientsarehealthy "github.com/erigontech/assertoor/pkg/coordinator/tasks/check_clients_are_healthy" + checkconsensusattestationstats "github.com/erigontech/assertoor/pkg/coordinator/tasks/check_consensus_attestation_stats" + checkconsensusblockproposals "github.com/erigontech/assertoor/pkg/coordinator/tasks/check_consensus_block_proposals" + checkconsensusfinality "github.com/erigontech/assertoor/pkg/coordinator/tasks/check_consensus_finality" + checkconsensusforks "github.com/erigontech/assertoor/pkg/coordinator/tasks/check_consensus_forks" + checkconsensusproposerduty "github.com/erigontech/assertoor/pkg/coordinator/tasks/check_consensus_proposer_duty" + checkconsensusreorgs "github.com/erigontech/assertoor/pkg/coordinator/tasks/check_consensus_reorgs" + checkconsensusslotrange "github.com/erigontech/assertoor/pkg/coordinator/tasks/check_consensus_slot_range" + checkconsensussyncstatus "github.com/erigontech/assertoor/pkg/coordinator/tasks/check_consensus_sync_status" + checkconsensusvalidatorstatus "github.com/erigontech/assertoor/pkg/coordinator/tasks/check_consensus_validator_status" + checkethcall "github.com/erigontech/assertoor/pkg/coordinator/tasks/check_eth_call" + checkexecutionsyncstatus "github.com/erigontech/assertoor/pkg/coordinator/tasks/check_execution_sync_status" + generateblobtransactions "github.com/erigontech/assertoor/pkg/coordinator/tasks/generate_blob_transactions" + generateblschanges "github.com/erigontech/assertoor/pkg/coordinator/tasks/generate_bls_changes" + generatechildwallet "github.com/erigontech/assertoor/pkg/coordinator/tasks/generate_child_wallet" + generateconsolidations "github.com/erigontech/assertoor/pkg/coordinator/tasks/generate_consolidations" + generatedeposits "github.com/erigontech/assertoor/pkg/coordinator/tasks/generate_deposits" + generateeoatransactions "github.com/erigontech/assertoor/pkg/coordinator/tasks/generate_eoa_transactions" + generateexits "github.com/erigontech/assertoor/pkg/coordinator/tasks/generate_exits" + generateslashings "github.com/erigontech/assertoor/pkg/coordinator/tasks/generate_slashings" + generatetransaction "github.com/erigontech/assertoor/pkg/coordinator/tasks/generate_transaction" + generatewithdrawalrequests "github.com/erigontech/assertoor/pkg/coordinator/tasks/generate_withdrawal_requests" + getconsensusspecs "github.com/erigontech/assertoor/pkg/coordinator/tasks/get_consensus_specs" + checkexecutionblock "github.com/erigontech/assertoor/pkg/coordinator/tasks/get_execution_block" + getpubkeysfrommnemonic "github.com/erigontech/assertoor/pkg/coordinator/tasks/get_pubkeys_from_mnemonic" + getrandommnemonic "github.com/erigontech/assertoor/pkg/coordinator/tasks/get_random_mnemonic" + getwalletdetails "github.com/erigontech/assertoor/pkg/coordinator/tasks/get_wallet_details" + runcommand "github.com/erigontech/assertoor/pkg/coordinator/tasks/run_command" + runexternaltasks "github.com/erigontech/assertoor/pkg/coordinator/tasks/run_external_tasks" + runshell "github.com/erigontech/assertoor/pkg/coordinator/tasks/run_shell" + runtaskbackground "github.com/erigontech/assertoor/pkg/coordinator/tasks/run_task_background" + runtaskmatrix "github.com/erigontech/assertoor/pkg/coordinator/tasks/run_task_matrix" + runtaskoptions "github.com/erigontech/assertoor/pkg/coordinator/tasks/run_task_options" + runtasks "github.com/erigontech/assertoor/pkg/coordinator/tasks/run_tasks" + runtasksconcurrent "github.com/erigontech/assertoor/pkg/coordinator/tasks/run_tasks_concurrent" + sleep "github.com/erigontech/assertoor/pkg/coordinator/tasks/sleep" + txpoolclean "github.com/erigontech/assertoor/pkg/coordinator/tasks/tx_pool_clean" + txpoollatencyanalysis "github.com/erigontech/assertoor/pkg/coordinator/tasks/tx_pool_latency_analysis" + txpoolthroughputanalysis "github.com/erigontech/assertoor/pkg/coordinator/tasks/tx_pool_throughput_analysis" ) var AvailableTaskDescriptors = []*types.TaskDescriptor{ diff --git a/pkg/coordinator/tasks/tx_pool_clean/task.go b/pkg/coordinator/tasks/tx_pool_clean/task.go index d533a680..388c8e74 100644 --- a/pkg/coordinator/tasks/tx_pool_clean/task.go +++ b/pkg/coordinator/tasks/tx_pool_clean/task.go @@ -8,8 +8,8 @@ import ( "strings" "time" - "github.com/noku-team/assertoor/pkg/coordinator/clients/execution" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/clients/execution" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/tx_pool_latency_analysis/task.go b/pkg/coordinator/tasks/tx_pool_latency_analysis/task.go index 1cb72434..72852ee1 100644 --- a/pkg/coordinator/tasks/tx_pool_latency_analysis/task.go +++ b/pkg/coordinator/tasks/tx_pool_latency_analysis/task.go @@ -10,11 +10,11 @@ import ( "os" "time" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/utils/hdr" + txloadtool "github.com/erigontech/assertoor/pkg/coordinator/utils/tx_load_tool" + "github.com/erigontech/assertoor/pkg/coordinator/wallet" "github.com/ethereum/go-ethereum/crypto" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/utils/hdr" - txloadtool "github.com/noku-team/assertoor/pkg/coordinator/utils/tx_load_tool" - "github.com/noku-team/assertoor/pkg/coordinator/wallet" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/tasks/tx_pool_throughput_analysis/task.go b/pkg/coordinator/tasks/tx_pool_throughput_analysis/task.go index 82651342..b1d7d3e9 100644 --- a/pkg/coordinator/tasks/tx_pool_throughput_analysis/task.go +++ b/pkg/coordinator/tasks/tx_pool_throughput_analysis/task.go @@ -8,10 +8,10 @@ import ( "math/big" "time" + "github.com/erigontech/assertoor/pkg/coordinator/types" + txloadtool "github.com/erigontech/assertoor/pkg/coordinator/utils/tx_load_tool" + "github.com/erigontech/assertoor/pkg/coordinator/wallet" "github.com/ethereum/go-ethereum/crypto" - "github.com/noku-team/assertoor/pkg/coordinator/types" - txloadtool "github.com/noku-team/assertoor/pkg/coordinator/utils/tx_load_tool" - "github.com/noku-team/assertoor/pkg/coordinator/wallet" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/test/dbtest.go b/pkg/coordinator/test/dbtest.go index b195f18c..4215e7a6 100644 --- a/pkg/coordinator/test/dbtest.go +++ b/pkg/coordinator/test/dbtest.go @@ -6,11 +6,11 @@ import ( "sync" "time" - "github.com/noku-team/assertoor/pkg/coordinator/db" - "github.com/noku-team/assertoor/pkg/coordinator/logger" - "github.com/noku-team/assertoor/pkg/coordinator/tasks" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/vars" + "github.com/erigontech/assertoor/pkg/coordinator/db" + "github.com/erigontech/assertoor/pkg/coordinator/logger" + "github.com/erigontech/assertoor/pkg/coordinator/tasks" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/vars" "gopkg.in/yaml.v3" ) diff --git a/pkg/coordinator/test/descriptor.go b/pkg/coordinator/test/descriptor.go index 3834bcd9..ba706f6e 100644 --- a/pkg/coordinator/test/descriptor.go +++ b/pkg/coordinator/test/descriptor.go @@ -9,7 +9,7 @@ import ( "strings" "time" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/sirupsen/logrus" "gopkg.in/yaml.v3" ) diff --git a/pkg/coordinator/test/test.go b/pkg/coordinator/test/test.go index 67a3caba..2ae39722 100644 --- a/pkg/coordinator/test/test.go +++ b/pkg/coordinator/test/test.go @@ -5,11 +5,11 @@ import ( "fmt" "time" + "github.com/erigontech/assertoor/pkg/coordinator/db" + "github.com/erigontech/assertoor/pkg/coordinator/scheduler" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/vars" "github.com/jmoiron/sqlx" - "github.com/noku-team/assertoor/pkg/coordinator/db" - "github.com/noku-team/assertoor/pkg/coordinator/scheduler" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/vars" "github.com/sirupsen/logrus" "gopkg.in/yaml.v3" ) diff --git a/pkg/coordinator/testregistry.go b/pkg/coordinator/testregistry.go index d409f5a9..ee7a78cd 100644 --- a/pkg/coordinator/testregistry.go +++ b/pkg/coordinator/testregistry.go @@ -8,12 +8,12 @@ import ( "sync" "time" + "github.com/erigontech/assertoor/pkg/coordinator/db" + "github.com/erigontech/assertoor/pkg/coordinator/helper" + "github.com/erigontech/assertoor/pkg/coordinator/test" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/vars" "github.com/jmoiron/sqlx" - "github.com/noku-team/assertoor/pkg/coordinator/db" - "github.com/noku-team/assertoor/pkg/coordinator/helper" - "github.com/noku-team/assertoor/pkg/coordinator/test" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/vars" "gopkg.in/yaml.v3" ) diff --git a/pkg/coordinator/testrunner.go b/pkg/coordinator/testrunner.go index e1575899..766e8b70 100644 --- a/pkg/coordinator/testrunner.go +++ b/pkg/coordinator/testrunner.go @@ -7,9 +7,9 @@ import ( "sync" "time" + "github.com/erigontech/assertoor/pkg/coordinator/test" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/gorhill/cronexpr" - "github.com/noku-team/assertoor/pkg/coordinator/test" - "github.com/noku-team/assertoor/pkg/coordinator/types" ) type TestRunner struct { diff --git a/pkg/coordinator/types/coordinator.go b/pkg/coordinator/types/coordinator.go index 7c979134..56e22e76 100644 --- a/pkg/coordinator/types/coordinator.go +++ b/pkg/coordinator/types/coordinator.go @@ -3,11 +3,11 @@ package types import ( "context" - "github.com/noku-team/assertoor/pkg/coordinator/clients" - "github.com/noku-team/assertoor/pkg/coordinator/db" - "github.com/noku-team/assertoor/pkg/coordinator/logger" - "github.com/noku-team/assertoor/pkg/coordinator/names" - "github.com/noku-team/assertoor/pkg/coordinator/wallet" + "github.com/erigontech/assertoor/pkg/coordinator/clients" + "github.com/erigontech/assertoor/pkg/coordinator/db" + "github.com/erigontech/assertoor/pkg/coordinator/logger" + "github.com/erigontech/assertoor/pkg/coordinator/names" + "github.com/erigontech/assertoor/pkg/coordinator/wallet" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/types/scheduler.go b/pkg/coordinator/types/scheduler.go index 52ea9d1f..d3be2b03 100644 --- a/pkg/coordinator/types/scheduler.go +++ b/pkg/coordinator/types/scheduler.go @@ -3,11 +3,11 @@ package types import ( "context" - "github.com/noku-team/assertoor/pkg/coordinator/clients" - "github.com/noku-team/assertoor/pkg/coordinator/db" - "github.com/noku-team/assertoor/pkg/coordinator/helper" - "github.com/noku-team/assertoor/pkg/coordinator/names" - "github.com/noku-team/assertoor/pkg/coordinator/wallet" + "github.com/erigontech/assertoor/pkg/coordinator/clients" + "github.com/erigontech/assertoor/pkg/coordinator/db" + "github.com/erigontech/assertoor/pkg/coordinator/helper" + "github.com/erigontech/assertoor/pkg/coordinator/names" + "github.com/erigontech/assertoor/pkg/coordinator/wallet" ) type TaskSchedulerRunner interface { diff --git a/pkg/coordinator/types/task.go b/pkg/coordinator/types/task.go index bae965b6..e4c5a191 100644 --- a/pkg/coordinator/types/task.go +++ b/pkg/coordinator/types/task.go @@ -4,8 +4,8 @@ import ( "context" "time" - "github.com/noku-team/assertoor/pkg/coordinator/helper" - "github.com/noku-team/assertoor/pkg/coordinator/logger" + "github.com/erigontech/assertoor/pkg/coordinator/helper" + "github.com/erigontech/assertoor/pkg/coordinator/logger" ) type TaskDescriptor struct { diff --git a/pkg/coordinator/types/test.go b/pkg/coordinator/types/test.go index b869ff22..9023d5fc 100644 --- a/pkg/coordinator/types/test.go +++ b/pkg/coordinator/types/test.go @@ -4,7 +4,7 @@ import ( "context" "time" - "github.com/noku-team/assertoor/pkg/coordinator/helper" + "github.com/erigontech/assertoor/pkg/coordinator/helper" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/utils/sentry/conn.go b/pkg/coordinator/utils/sentry/conn.go index d381dd70..f38981e4 100644 --- a/pkg/coordinator/utils/sentry/conn.go +++ b/pkg/coordinator/utils/sentry/conn.go @@ -15,6 +15,7 @@ import ( "time" "github.com/davecgh/go-spew/spew" + "github.com/erigontech/assertoor/pkg/coordinator/clients/execution" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/forkid" "github.com/ethereum/go-ethereum/crypto" @@ -23,7 +24,6 @@ import ( "github.com/ethereum/go-ethereum/p2p/enode" "github.com/ethereum/go-ethereum/p2p/rlpx" "github.com/ethereum/go-ethereum/rlp" - "github.com/noku-team/assertoor/pkg/coordinator/clients/execution" ) var ( diff --git a/pkg/coordinator/utils/tx_load_tool/tx_load_tool.go b/pkg/coordinator/utils/tx_load_tool/tx_load_tool.go index 26fa4706..d54da583 100644 --- a/pkg/coordinator/utils/tx_load_tool/tx_load_tool.go +++ b/pkg/coordinator/utils/tx_load_tool/tx_load_tool.go @@ -9,14 +9,14 @@ import ( "github.com/ethereum/go-ethereum/params" + "github.com/erigontech/assertoor/pkg/coordinator/clients/execution" + "github.com/erigontech/assertoor/pkg/coordinator/helper" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/utils/sentry" + "github.com/erigontech/assertoor/pkg/coordinator/wallet" "github.com/ethereum/go-ethereum/accounts/abi/bind" "github.com/ethereum/go-ethereum/core/forkid" ethtypes "github.com/ethereum/go-ethereum/core/types" - "github.com/noku-team/assertoor/pkg/coordinator/clients/execution" - "github.com/noku-team/assertoor/pkg/coordinator/helper" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/utils/sentry" - "github.com/noku-team/assertoor/pkg/coordinator/wallet" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/vars/scope_filter.go b/pkg/coordinator/vars/scope_filter.go index a15ccfbf..98a09e8e 100644 --- a/pkg/coordinator/vars/scope_filter.go +++ b/pkg/coordinator/vars/scope_filter.go @@ -1,7 +1,7 @@ package vars import ( - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/types" ) type ScopeFilter struct { diff --git a/pkg/coordinator/vars/variables.go b/pkg/coordinator/vars/variables.go index 19bc534c..d3f824ed 100644 --- a/pkg/coordinator/vars/variables.go +++ b/pkg/coordinator/vars/variables.go @@ -7,8 +7,8 @@ import ( "sync" "time" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/itchyny/gojq" - "github.com/noku-team/assertoor/pkg/coordinator/types" "gopkg.in/yaml.v3" ) diff --git a/pkg/coordinator/wallet/manager.go b/pkg/coordinator/wallet/manager.go index c0d9ecb4..a3ad5ab4 100644 --- a/pkg/coordinator/wallet/manager.go +++ b/pkg/coordinator/wallet/manager.go @@ -8,10 +8,10 @@ import ( "sync" "time" + "github.com/erigontech/assertoor/pkg/coordinator/clients/execution" "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" - "github.com/noku-team/assertoor/pkg/coordinator/clients/execution" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/wallet/wallet.go b/pkg/coordinator/wallet/wallet.go index 7caae628..d5919801 100644 --- a/pkg/coordinator/wallet/wallet.go +++ b/pkg/coordinator/wallet/wallet.go @@ -10,11 +10,11 @@ import ( "sync" "time" + "github.com/erigontech/assertoor/pkg/coordinator/clients/execution" "github.com/ethereum/go-ethereum/accounts/abi/bind" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" - "github.com/noku-team/assertoor/pkg/coordinator/clients/execution" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/web/api/get_task_details_api.go b/pkg/coordinator/web/api/get_task_details_api.go index d089919e..ac2ab6ce 100644 --- a/pkg/coordinator/web/api/get_task_details_api.go +++ b/pkg/coordinator/web/api/get_task_details_api.go @@ -6,8 +6,8 @@ import ( "strconv" "time" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/gorilla/mux" - "github.com/noku-team/assertoor/pkg/coordinator/types" "gopkg.in/yaml.v3" ) diff --git a/pkg/coordinator/web/api/get_task_result_api.go b/pkg/coordinator/web/api/get_task_result_api.go index 9ae8706c..9ea8ed23 100644 --- a/pkg/coordinator/web/api/get_task_result_api.go +++ b/pkg/coordinator/web/api/get_task_result_api.go @@ -9,9 +9,9 @@ import ( "strings" "time" + "github.com/erigontech/assertoor/pkg/coordinator/db" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/gorilla/mux" - "github.com/noku-team/assertoor/pkg/coordinator/db" - "github.com/noku-team/assertoor/pkg/coordinator/types" ) // GetTaskResult godoc diff --git a/pkg/coordinator/web/api/get_test_api.go b/pkg/coordinator/web/api/get_test_api.go index 40297339..b9bcd905 100644 --- a/pkg/coordinator/web/api/get_test_api.go +++ b/pkg/coordinator/web/api/get_test_api.go @@ -3,8 +3,8 @@ package api import ( "net/http" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/gorilla/mux" - "github.com/noku-team/assertoor/pkg/coordinator/types" ) type GetTestResponse struct { diff --git a/pkg/coordinator/web/api/get_test_run_api.go b/pkg/coordinator/web/api/get_test_run_api.go index 83c1bf8f..72606492 100644 --- a/pkg/coordinator/web/api/get_test_run_api.go +++ b/pkg/coordinator/web/api/get_test_run_api.go @@ -6,9 +6,9 @@ import ( "strconv" "time" + "github.com/erigontech/assertoor/pkg/coordinator/db" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/gorilla/mux" - "github.com/noku-team/assertoor/pkg/coordinator/db" - "github.com/noku-team/assertoor/pkg/coordinator/types" ) type GetTestRunResponse struct { diff --git a/pkg/coordinator/web/api/get_test_run_details_api.go b/pkg/coordinator/web/api/get_test_run_details_api.go index ed835d6c..142bfdf2 100644 --- a/pkg/coordinator/web/api/get_test_run_details_api.go +++ b/pkg/coordinator/web/api/get_test_run_details_api.go @@ -6,8 +6,8 @@ import ( "strconv" "time" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/gorilla/mux" - "github.com/noku-team/assertoor/pkg/coordinator/types" "gopkg.in/yaml.v3" ) diff --git a/pkg/coordinator/web/api/get_test_runs_api.go b/pkg/coordinator/web/api/get_test_runs_api.go index 660de66d..1a2cd54e 100644 --- a/pkg/coordinator/web/api/get_test_runs_api.go +++ b/pkg/coordinator/web/api/get_test_runs_api.go @@ -3,7 +3,7 @@ package api import ( "net/http" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/types" ) type GetTestRunsResponse struct { diff --git a/pkg/coordinator/web/api/handler.go b/pkg/coordinator/web/api/handler.go index 7db5c32a..89c0129e 100644 --- a/pkg/coordinator/web/api/handler.go +++ b/pkg/coordinator/web/api/handler.go @@ -4,7 +4,7 @@ import ( "encoding/json" "net/http" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/web/api/post_test_run_api.go b/pkg/coordinator/web/api/post_test_run_api.go index 1acc66bd..258b0bfa 100644 --- a/pkg/coordinator/web/api/post_test_run_api.go +++ b/pkg/coordinator/web/api/post_test_run_api.go @@ -5,7 +5,7 @@ import ( "fmt" "net/http" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/types" "gopkg.in/yaml.v3" ) diff --git a/pkg/coordinator/web/api/post_tests_register_api.go b/pkg/coordinator/web/api/post_tests_register_api.go index 7964f412..bdd70ca7 100644 --- a/pkg/coordinator/web/api/post_tests_register_api.go +++ b/pkg/coordinator/web/api/post_tests_register_api.go @@ -5,8 +5,8 @@ import ( "fmt" "net/http" - "github.com/noku-team/assertoor/pkg/coordinator/helper" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/helper" + "github.com/erigontech/assertoor/pkg/coordinator/types" "gopkg.in/yaml.v3" ) diff --git a/pkg/coordinator/web/api/post_tests_register_external_api.go b/pkg/coordinator/web/api/post_tests_register_external_api.go index e3d81e73..5a5de563 100644 --- a/pkg/coordinator/web/api/post_tests_register_external_api.go +++ b/pkg/coordinator/web/api/post_tests_register_external_api.go @@ -6,8 +6,8 @@ import ( "net/http" "time" - "github.com/noku-team/assertoor/pkg/coordinator/helper" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/helper" + "github.com/erigontech/assertoor/pkg/coordinator/types" "gopkg.in/yaml.v3" ) diff --git a/pkg/coordinator/web/handlers/clients.go b/pkg/coordinator/web/handlers/clients.go index 9e455b6b..92a57e44 100644 --- a/pkg/coordinator/web/handlers/clients.go +++ b/pkg/coordinator/web/handlers/clients.go @@ -4,9 +4,9 @@ import ( "net/http" "time" - "github.com/noku-team/assertoor/pkg/coordinator/clients" - "github.com/noku-team/assertoor/pkg/coordinator/clients/consensus" - "github.com/noku-team/assertoor/pkg/coordinator/clients/execution" + "github.com/erigontech/assertoor/pkg/coordinator/clients" + "github.com/erigontech/assertoor/pkg/coordinator/clients/consensus" + "github.com/erigontech/assertoor/pkg/coordinator/clients/execution" ) type ClientsPage struct { diff --git a/pkg/coordinator/web/handlers/handler.go b/pkg/coordinator/web/handlers/handler.go index 7e0ee079..82d00b5d 100644 --- a/pkg/coordinator/web/handlers/handler.go +++ b/pkg/coordinator/web/handlers/handler.go @@ -11,11 +11,11 @@ import ( "syscall" "time" - "github.com/noku-team/assertoor/pkg/coordinator/buildinfo" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/web/static" - "github.com/noku-team/assertoor/pkg/coordinator/web/templates" - "github.com/noku-team/assertoor/pkg/coordinator/web/utils" + "github.com/erigontech/assertoor/pkg/coordinator/buildinfo" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/web/static" + "github.com/erigontech/assertoor/pkg/coordinator/web/templates" + "github.com/erigontech/assertoor/pkg/coordinator/web/utils" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/web/handlers/index.go b/pkg/coordinator/web/handlers/index.go index e77c1119..7f7f8b6d 100644 --- a/pkg/coordinator/web/handlers/index.go +++ b/pkg/coordinator/web/handlers/index.go @@ -7,7 +7,7 @@ import ( "strconv" "time" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/web/handlers/registry.go b/pkg/coordinator/web/handlers/registry.go index 04ec78cf..dd0d0e71 100644 --- a/pkg/coordinator/web/handlers/registry.go +++ b/pkg/coordinator/web/handlers/registry.go @@ -7,8 +7,8 @@ import ( "strconv" "time" - "github.com/noku-team/assertoor/pkg/coordinator/db" - "github.com/noku-team/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/db" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/web/handlers/sidebar.go b/pkg/coordinator/web/handlers/sidebar.go index 576c164e..c348426b 100644 --- a/pkg/coordinator/web/handlers/sidebar.go +++ b/pkg/coordinator/web/handlers/sidebar.go @@ -1,6 +1,6 @@ package handlers -import "github.com/noku-team/assertoor/pkg/coordinator/buildinfo" +import "github.com/erigontech/assertoor/pkg/coordinator/buildinfo" type SidebarData struct { ClientCount uint64 `json:"client_count"` diff --git a/pkg/coordinator/web/handlers/test.go b/pkg/coordinator/web/handlers/test.go index 10c6b993..a234262d 100644 --- a/pkg/coordinator/web/handlers/test.go +++ b/pkg/coordinator/web/handlers/test.go @@ -7,8 +7,8 @@ import ( "net/http" "strconv" + "github.com/erigontech/assertoor/pkg/coordinator/types" "github.com/gorilla/mux" - "github.com/noku-team/assertoor/pkg/coordinator/types" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/web/handlers/test_run.go b/pkg/coordinator/web/handlers/test_run.go index f2ebc393..9ba47dd9 100644 --- a/pkg/coordinator/web/handlers/test_run.go +++ b/pkg/coordinator/web/handlers/test_run.go @@ -7,10 +7,10 @@ import ( "strconv" "time" + "github.com/erigontech/assertoor/pkg/coordinator/db" + "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/web/api" "github.com/gorilla/mux" - "github.com/noku-team/assertoor/pkg/coordinator/db" - "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/web/api" "github.com/sirupsen/logrus" ) diff --git a/pkg/coordinator/web/server.go b/pkg/coordinator/web/server.go index 88dbd66f..0b230417 100644 --- a/pkg/coordinator/web/server.go +++ b/pkg/coordinator/web/server.go @@ -7,17 +7,17 @@ import ( "net/http" "strings" + coordinator_types "github.com/erigontech/assertoor/pkg/coordinator/types" + "github.com/erigontech/assertoor/pkg/coordinator/web/api" + "github.com/erigontech/assertoor/pkg/coordinator/web/handlers" + "github.com/erigontech/assertoor/pkg/coordinator/web/types" "github.com/gorilla/mux" - coordinator_types "github.com/noku-team/assertoor/pkg/coordinator/types" - "github.com/noku-team/assertoor/pkg/coordinator/web/api" - "github.com/noku-team/assertoor/pkg/coordinator/web/handlers" - "github.com/noku-team/assertoor/pkg/coordinator/web/types" "github.com/sirupsen/logrus" httpSwagger "github.com/swaggo/http-swagger" "github.com/urfave/negroni" // import swagger docs - _ "github.com/noku-team/assertoor/pkg/coordinator/web/api/docs" + _ "github.com/erigontech/assertoor/pkg/coordinator/web/api/docs" // import pprof //nolint:gosec // ignore diff --git a/pkg/coordinator/web/templates/_layout/500.html b/pkg/coordinator/web/templates/_layout/500.html index ee331d79..2f3b8266 100644 --- a/pkg/coordinator/web/templates/_layout/500.html +++ b/pkg/coordinator/web/templates/_layout/500.html @@ -4,7 +4,7 @@
Sorry, there was an unexpected error when processing the page you requested.

- Please report this error on github. + Please report this error on github.

diff --git a/pkg/coordinator/web/templates/_layout/footer.html b/pkg/coordinator/web/templates/_layout/footer.html index c957a538..bc5887cf 100644 --- a/pkg/coordinator/web/templates/_layout/footer.html +++ b/pkg/coordinator/web/templates/_layout/footer.html @@ -2,7 +2,7 @@ diff --git a/playbooks/dev/execution-spec-tests-execute.yaml b/playbooks/dev/execution-spec-tests-execute.yaml index 24277e44..a57b5e89 100644 --- a/playbooks/dev/execution-spec-tests-execute.yaml +++ b/playbooks/dev/execution-spec-tests-execute.yaml @@ -71,7 +71,7 @@ tasks: pip install uv uv sync --all-extras uv run solc-select use "${SOLC_VERSION}" --always-install - + - name: generate_child_wallet id: testwallet if: runTests @@ -176,7 +176,7 @@ tasks: cp report.json ${ASSERTOOR_RESULT_DIR}/report.json cp report.html ${ASSERTOOR_RESULT_DIR}/report.html mkdir -p ${ASSERTOOR_RESULT_DIR}/assets - curl -o ${ASSERTOOR_RESULT_DIR}/assets/style.css https://raw.githubusercontent.com/noku-team/assertoor/refs/heads/master/res/execution-spec-tests-styles.css + curl -o ${ASSERTOOR_RESULT_DIR}/assets/style.css https://raw.githubusercontent.com/erigontech/assertoor/refs/heads/master/res/execution-spec-tests-styles.css REPORT_JSON=$(cat report.json | jq -c '[.tests[] | {"nodeid": .nodeid, "outcome": .outcome, "setupDuration": .setup.duration, "callDuration": .call.duration, "teardownDuration": .teardown.duration}]') TOTAL_TESTS=$(echo "$REPORT_JSON" | jq '. | length') @@ -204,4 +204,4 @@ tasks: if [ "${passedTests}" != "${totalTests}" ]; then echo "Some tests failed, see report.html in the task above for details" exit 1 - fi \ No newline at end of file + fi