forked from node-real/bsc-erigon-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
embed.go
65 lines (44 loc) · 1.03 KB
/
embed.go
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
53
54
55
56
57
58
59
60
61
62
63
64
65
package snapshothashes
import (
_ "embed"
)
//go:embed mainnet.toml
var Mainnet []byte
//go:embed goerli.toml
var Goerli []byte
//go:embed ropsten.toml
var Ropsten []byte
//go:embed sepolia.toml
var Sepolia []byte
//go:embed mumbai.toml
var Mumbai []byte
//go:embed bor-mainnet.toml
var BorMainnet []byte
//go:embed gnosis.toml
var Gnosis []byte
//go:embed chiado.toml
var Chiado []byte
//go:embed bsc.toml
var Bsc []byte
//go:embed chapel.toml
var Chapel []byte
//go:embed history/mainnet.toml
var MainnetHistory []byte
//go:embed history/sepolia.toml
var SepoliaHistory []byte
//go:embed history/goerli.toml
var GoerliHistory []byte
//go:embed history/ropsten.toml
var RopstenHistory []byte
//go:embed history/mumbai.toml
var MumbaiHistory []byte
//go:embed history/bor-mainnet.toml
var BorMainnetHistory []byte
//go:embed history/gnosis.toml
var GnosisHistory []byte
//go:embed history/chiado.toml
var ChiadoHistory []byte
//go:embed history/bsc.toml
var BscHistory []byte
//go:embed history/chapel.toml
var ChapelHistory []byte