Skip to content

Commit 521a4b7

Browse files
Merge pull request #108 from ethscriptions-protocol/decouple
Decouple validation from import
2 parents acd61e0 + 8e8f10e commit 521a4b7

28 files changed

Lines changed: 1136 additions & 2106 deletions

.sample.env

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,7 @@ ETHEREUM_CLIENT_API_KEY="YOUR KEY"
33
ETHEREUM_NETWORK="eth-mainnet"
44
ETHEREUM_CLIENT_BASE_URL="https://eth-mainnet.g.alchemy.com/v2"
55
ETHEREUM_BEACON_NODE_API_BASE_URL="https://something.quiknode.pro/"
6-
BLOCK_IMPORT_BATCH_SIZE="2"
6+
L1_PREFETCH_THREADS="2"
7+
VALIDATION_ENABLED="false"
8+
JOB_CONCURRENCY="2"
79
TESTNET_START_BLOCK="5192600"

Gemfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ source "https://rubygems.org"
33
ruby "3.4.4"
44

55
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
6-
gem "rails", "~> 7.1.2"
6+
gem "rails", "8.0.2.1"
77

88
# Use postgresql as the database for Active Record
99

@@ -98,3 +98,7 @@ gem 'ostruct'
9898
gem "oj", "~> 3.16"
9999

100100
gem "retriable", "~> 3.1"
101+
102+
# Database and job processing
103+
gem "sqlite3", ">= 2.1"
104+
gem "solid_queue"

0 commit comments

Comments
 (0)