forked from erigontech/erigon-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathembed.go
47 lines (32 loc) · 753 Bytes
/
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
package snapshothashes
import (
_ "embed"
)
//go:embed mainnet.toml
var Mainnet []byte
//go:embed goerli.toml
var Goerli []byte
//go:embed bsc.toml
var Bsc []byte
//go:embed ropsten.toml
var Ropsten []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 history/mainnet.toml
var MainnetHistory []byte
//go:embed history/goerli.toml
var GoerliHistory []byte
//go:embed history/bsc.toml
var BscHistory []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