-
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.0"
license "Apache-2.0"
on_macos do
on_intel do
url "https://github.com/streamingfast/firehose-ethereum/releases/download/v2.9.0/firehose-ethereum_darwin_x86_64.tar.gz"
sha256 "d433f9957513128c758f54a61982444262a1be92eb4266703e149eace16ec16f"
def install
bin.install "fireeth"
end
end
on_arm do
url "https://github.com/streamingfast/firehose-ethereum/releases/download/v2.9.0/firehose-ethereum_darwin_arm64.tar.gz"
sha256 "f68b34c7a94915859a5de310b2a3aa645e81c6c40293f2ff3ab47b0f8d9a43cd"
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.0/firehose-ethereum_linux_x86_64.tar.gz"
sha256 "a835f01dcad6b6b1d40bec65110ef219f3778400203b591c5d0238ee78b31356"
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.0/firehose-ethereum_linux_arm64.tar.gz"
sha256 "f917774a5e899ee20262bf62f140f336ae9b0a89beeb4d05ed55d53925c0c440"
def install
bin.install "fireeth"
end
end
end
end
end