-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirehose-ethereum.rb
52 lines (45 loc) · 1.52 KB
/
firehose-ethereum.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class FirehoseEthereum < Formula
desc ""
homepage "https://github.com/streamingfast/firehose-ethereum"
version "2.9.3"
license "Apache-2.0"
on_macos do
on_intel do
url "https://github.com/streamingfast/firehose-ethereum/releases/download/v2.9.3/firehose-ethereum_darwin_x86_64.tar.gz"
sha256 "3b279b7a77eb26edcc90c51ec27832d6e9ea908296ea82cbf23e67d9c33b17aa"
def install
bin.install "fireeth"
end
end
on_arm do
url "https://github.com/streamingfast/firehose-ethereum/releases/download/v2.9.3/firehose-ethereum_darwin_arm64.tar.gz"
sha256 "019e947f80c382d1220bd22075f44bdd95511da8c6e88d1b68caf74cc973521a"
def install
bin.install "fireeth"
end
end
end
on_linux do
on_intel do
if Hardware::CPU.is_64_bit?
url "https://github.com/streamingfast/firehose-ethereum/releases/download/v2.9.3/firehose-ethereum_linux_x86_64.tar.gz"
sha256 "1fe41e321557f5c776b162970a6b3afd9ad38bc6c1e7e4e80241a78e71fe2eda"
def install
bin.install "fireeth"
end
end
end
on_arm do
if Hardware::CPU.is_64_bit?
url "https://github.com/streamingfast/firehose-ethereum/releases/download/v2.9.3/firehose-ethereum_linux_arm64.tar.gz"
sha256 "377e82d774bb684bfcb01605424781f5c6398b06bc530b0dca997053f103bee8"
def install
bin.install "fireeth"
end
end
end
end
end