From ad153e5baa42a071d1129b95e7811efb744fd55f Mon Sep 17 00:00:00 2001 From: Tom Lehman Date: Mon, 25 Mar 2024 11:42:37 -0400 Subject: [PATCH 1/2] Update .sample.env --- .sample.env | 1 + 1 file changed, 1 insertion(+) diff --git a/.sample.env b/.sample.env index 402d9be..b8e93dd 100644 --- a/.sample.env +++ b/.sample.env @@ -2,5 +2,6 @@ ETHEREUM_CLIENT_CLASS="AlchemyClient" ETHEREUM_CLIENT_API_KEY="YOUR KEY" ETHEREUM_NETWORK="eth-mainnet" ETHEREUM_CLIENT_BASE_URL="https://eth-mainnet.g.alchemy.com/v2" +ETHEREUM_BEACON_NODE_API_BASE_URL="https://something.quiknode.pro/" BLOCK_IMPORT_BATCH_SIZE="2" TESTNET_START_BLOCK="5192600" From 98bee789b8b8639c70e086ba8dd96bc740508698 Mon Sep 17 00:00:00 2001 From: Tom Lehman Date: Tue, 26 Mar 2024 17:23:33 -0400 Subject: [PATCH 2/2] Bump ruby version --- .ruby-version | 2 +- Gemfile | 2 +- Gemfile.lock | 10 ++++------ README.md | 6 +++--- 4 files changed, 9 insertions(+), 11 deletions(-) diff --git a/.ruby-version b/.ruby-version index 9e79f6c..03463f3 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -ruby-3.2.2 +ruby-3.3.0 diff --git a/Gemfile b/Gemfile index ddfa598..ae88a73 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,6 @@ source "https://rubygems.org" -ruby "3.2.2" +ruby "3.3.0" # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main" gem "rails", "~> 7.1.2" diff --git a/Gemfile.lock b/Gemfile.lock index 4983eb2..d23bc9f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -184,11 +184,8 @@ GEM net-smtp (0.4.0) net-protocol nio4r (2.7.0) - nokogiri (1.15.5-aarch64-linux) - racc (~> 1.4) - nokogiri (1.15.5-arm64-darwin) - racc (~> 1.4) - nokogiri (1.15.5-x86_64-linux) + nokogiri (1.15.5) + mini_portile2 (~> 2.8.2) racc (~> 1.4) openssl (3.2.0) order_query (0.5.3) @@ -299,6 +296,7 @@ PLATFORMS aarch64-linux arm64-darwin-20 arm64-darwin-22 + arm64-darwin-23 x86_64-linux DEPENDENCIES @@ -332,7 +330,7 @@ DEPENDENCIES tzinfo-data RUBY VERSION - ruby 3.2.2p53 + ruby 3.3.0p0 BUNDLED WITH 2.4.14 diff --git a/README.md b/README.md index 869625e..8b2e523 100644 --- a/README.md +++ b/README.md @@ -28,16 +28,16 @@ You might need to run this if there is an issue with gpg: gpg2 --keyserver keyserver.ubuntu.com --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB ``` -Now install ruby 3.2.2: +Now install ruby 3.3.0: ```bash -rvm install 3.2.2 +rvm install 3.3.0 ``` On a Mac you might run into an issue with openssl. If you do you might need to run something like this: ```bash -rvm install 3.2.2 --with-openssl-dir=$(brew --prefix openssl@1.1) +rvm install 3.3.0 --with-openssl-dir=$(brew --prefix openssl@1.1) ``` Install the gems (libraries) the app needs: