-
Notifications
You must be signed in to change notification settings - Fork 2
/
service.go
101 lines (91 loc) · 4.43 KB
/
service.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package main
import (
"time"
"github.com/dgraph-io/ristretto"
echov4 "github.com/labstack/echo/v4"
tmhttp "github.com/tendermint/tendermint/rpc/client/http"
libclient "github.com/tendermint/tendermint/rpc/jsonrpc/client"
)
const LogoStr = `
.........
..::-----------------::..
..::---------------------------.
..:---------:::::::::::::::-----=-==:.
..::-------:::::::::::::::::::::::---====-:
..::------:::::::::::::::::::::::::::::--=-==-:
..::-----::::::::::::::::::::::::::::::::::---===-.
..:------:::::::::::::::::::::::::::::::::::::-====-
.::------:::::::::::::::::::::::::::::::::::::::--===
..::------:::::::::::::::-----:::::::::::::::::::::----
.::-:----::::::::-=++**###%%%%%%#*=:::::::::::::::::--:
.::-::---::::::=+******#%%%%%%#*+=+##+-::::::::::::::::
..:--:::::::::=+++****#%@%%%%*: -%=-=++++++===-::::.
.::--:::::::-=++++**#%@@@@%%#. .*%....+***++++==:..
.:--:::::::-=+++++*%@@@@@@@%%-..:-+#%%:...-***+++=-:.
..:--::::::-==++++*%@@@@@@@@%%%%%%%%%%%*:.:+**+=-:..
..:--:::::-===++++%@@@@@@@@@@%%%%%%%%%%%%#*+-::..
..:---:::::===+++*@@@@@@@@@@@@%%%%%%%#*+-::... ....
.::--:::::-==+++*@@@@@@@@@@@@@%%%*+=--:... ..::------.
..:-=-:::::-=++++@@@@@@@@@@@%#*===----. ..::----=-:-=-
.:--=::::::-++++*@@@@@@@@#+====-----: ..:----=--:::-=-
..:--=::::::-++++%@@@@%*====--------. .:--=+=+-:::::-=:
..:---::::::-+++*%@%+====---------: ..:+#%*.:*::+++=-==
..:--=-:::::-=+*++====----------:. .:=#@@@%%%%#*+*++++==
..:--=-::::::-====-----------::. ..:+**@@@@%%%%###***==:
.::--=--::::-=----------::::. ..:==+*#@@@@%%%%####+=-
..::--=--::----------:::::. .:--===+#%@@@%%%%#+==-.
..::---=--------::::::.. .::-======+****+===-:.
...::----------::::.. ..:----======---:..
...::::::::::.. ...:::::::::::..
........ .........
`
type Service struct {
Config Config
*echov4.Echo
*ristretto.Cache
}
type Config struct {
RpcEndpoint string `yaml:"rpc_endpoint" json:"rpc_endpoint"`
LcdEndpoint string `yaml:"lcd_endpoint" json:"lcd_endpoint"`
ChainHost string `yaml:"chain_rpc_endpoint" json:"chain_rpc_endpoint"`
Chains []string `yaml:"chains" json:"chains"`
APRURL string `yaml:"apr_url" json:"apr_url"`
APRCacheTime int `yaml:"apr_cache_minutes" json:"apr_cache_minutes"`
SupplyCacheTime int `yaml:"supply_cache_minutes" json:"supply_cache_minutes"`
DefiInfo []DefiInfo `yaml:"defi" json:"defi"`
DefiApis DefiApis `yaml:"defi_apis" json:"defi_apis"`
}
type DefiInfo struct {
AssetPair string `yaml:"assetPair" json:"assetPair"`
Provider string `yaml:"provider" json:"provider"`
Action string `yaml:"action" json:"action"`
APY float64 `yaml:"apy" json:"apy"`
TVL int `yaml:"tvl" json:"tvl"`
Link string `yaml:"link" json:"link"`
Id string `yaml:"id" json:"id"`
}
type DefiApis struct {
Ux string `yaml:"ux" json:"ux"`
Osmosis string `yaml:"osmosis" json:"osmosis"`
OsmosisApy string `yaml:"osmosis_apy" json:"osmosis_apy"`
Shade string `yaml:"shade" json:"shade"`
}
func NewCacheService(e *echov4.Echo, cache *ristretto.Cache, cfg Config) *Service {
return &Service{
Config: cfg,
Echo: e,
Cache: cache,
}
}
func NewRPCClient(addr string, timeout time.Duration) (*tmhttp.HTTP, error) {
httpClient, err := libclient.DefaultHTTPClient(addr)
if err != nil {
return nil, err
}
httpClient.Timeout = timeout
rpcClient, err := tmhttp.NewWithClient(addr, "/websocket", httpClient)
if err != nil {
return nil, err
}
return rpcClient, nil
}