-
Notifications
You must be signed in to change notification settings - Fork 0
/
firehose-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.8.3"
license "Apache-2.0"
on_macos do
on_intel do
url "https://github.com/streamingfast/firehose-ethereum/releases/download/v2.8.3/firehose-ethereum_darwin_x86_64.tar.gz"
sha256 "f3745b5c696e626b6e90cd92fb3cda8e65fd571943d029f9ea53ba0adbb2441e"
def install
bin.install "fireeth"
end
end
on_arm do
url "https://github.com/streamingfast/firehose-ethereum/releases/download/v2.8.3/firehose-ethereum_darwin_arm64.tar.gz"
sha256 "4e47d2eb6063054332961e786093ddf3f801c6646d1561b3dfbffc39a181cf29"
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.8.3/firehose-ethereum_linux_x86_64.tar.gz"
sha256 "a001779b5929a74edc36cb6077c9bd1b7219aa6bf46ff99150264e7d3d04d4ba"
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.8.3/firehose-ethereum_linux_arm64.tar.gz"
sha256 "7522a7946cfbee921f6896927b9863ee05fe2cd5046da87550b2051086d0fb59"
def install
bin.install "fireeth"
end
end
end
end
end