-
Notifications
You must be signed in to change notification settings - Fork 14
/
prefix.go
82 lines (79 loc) · 2.44 KB
/
prefix.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package findaccount
// Additional known nodes, not all nodes from cosmos repo are live....
var additional = map[string][]string{
"secretnetwork": {"tcp://scrt-rpc.blockpane.com:26657"},
"osmosis": {"https://osmosis-rpc.polkachu.com:443"},
"chihuahua": {"https://chihuahua-rpc.mercury-nodes.net:443"},
"emoney": {"https://emoney.validator.network:443"},
"kava": {"https://rpc.data.kava.io:443"},
"stargaze": {"https://rpc.stargaze-apis.com:443"},
"juno": {"https://juno-rpc.polkachu.com:443"},
}
// Prefixes maps the chain name to the bech32 address prefix.
// TODO: validate these are all correct!!!
var Prefixes = map[string]string{
"agoric": "agoric",
"akash": "akash",
"assetmantle": "mantle",
"axelar": "axelar",
"bandchain": "band",
"bitcanna": "bcn",
"bitsong": "bitsong",
"bostrom": "bostrom",
"carbon": "carbon",
"cerberus": "cerberus",
"cheqd": "cheqd",
"chihuahua": "chihuahua",
"comdex": "comdex",
"cosmoshub": "cosmos",
"crescent": "cre",
"cronos": "cro",
"cryptoorgchain": "cro",
"decentr": "decentr",
"desmos": "desmos",
"dig": "dig",
"emoney": "emoney",
"evmos": "evmos",
"fetchhub": "fetchhub",
"firmachain": "firma",
"galaxy": "galaxy",
"genesisl1": "genesis",
"gravitybridge": "gravity",
"impacthub": "impact",
"injective": "inj",
"irisnet": "i",
"juno": "juno",
"kava": "kava",
"kichain": "ki",
"konstellation": "darc",
"likecoin": "like",
"meme": "meme",
"microtick": "micro",
"nomic": "nomic",
"octa": "octa",
"odin": "odin",
"oraichain": "orai",
"osmosis": "osmo",
"panacea": "panacea",
"persistence": "persistence",
"provenance": "pb",
"regen": "regen",
"rizon": "rizon",
"secretnetwork": "secret",
"sentinel": "sent",
"shentu": "certic",
"sifchain": "sif",
"sommelier": "somm",
"stargaze": "stars",
"starname": "star",
"terra": "terra",
"umee": "umee",
"vidulum": "vdl",
// not working!!!
//"arkh": "arkh", //this is a testnet?
//"echelon": "echelon",
//"logos": "logos",
//"lumnetwork": "lum",
//"mythos": "mythos",
//"thorchain": "thor",
}