-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtoken.go
155 lines (131 loc) · 4.04 KB
/
token.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
package client
import (
"context"
"fmt"
"net/http"
)
type TokenService service
type Token struct {
Id int64 `json:"id"`
Address string `json:"address"`
Name string `json:"name"`
Symbol string `json:"symbol"`
SiteUrl string `json:"icon_url"`
IconUrl string `json:"site_url"`
Type string `json:"type"`
Decimals int `json:"decimals"`
Chain string `json:"chain"`
Price float64 `json:"price"`
}
type DataResponse[T any] struct {
Data T `json:"data"`
ErrorCode int `json:"error_code"`
}
type TokenUpdate struct {
Name string `json:"name,omitempty"`
Symbol string `json:"symbol,omitempty"`
Type string `json:"type,omitempty"`
Decimals uint64 `json:"decimals,omitempty"`
GenesisBlock uint64 `json:"genesis_block,omitempty"`
AggregatedBlock uint64 `json:"aggregated_block"`
}
func (i Token) String() string {
return Stringify(i)
}
type TokenListOptions struct {
ListOptions
Addresses []string `url:"addresses,omitempty"`
Symbols []string `url:"symbols,omitempty"`
Projects []string `url:"projects,omitempty"`
}
func (s *TokenService) List(ctx context.Context, opts *TokenListOptions) ([]*Token, *Response, error) {
var u = "tokens"
return s.listTokens(ctx, u, opts)
}
func (s *TokenService) Genesis(ctx context.Context, opts *TokenListOptions) (map[string]uint64, *Response, error) {
var u = "genesis/tokens"
opts.Addresses = ConvertArrayOptsToApiParam(opts.Addresses)
opts.Symbols = ConvertArrayOptsToApiParam(opts.Symbols)
u, err := addOptions(u, opts)
if err != nil {
return nil, nil, err
}
req, err := s.client.NewRequest(http.MethodGet, u, nil)
if err != nil {
return nil, nil, err
}
var response *DataResponse[map[string]uint64]
resp, err := s.client.Do(ctx, req, &response)
if err != nil {
return nil, resp, err
}
if response.ErrorCode != 0 {
return nil, resp, fmt.Errorf("error code %d", response.ErrorCode)
}
return response.Data, resp, nil
}
func (s *TokenService) AggregatedBlock(ctx context.Context, opts *TokenListOptions) (map[string]uint64, *Response, error) {
var u = "genesis/aggregated_block"
opts.Addresses = ConvertArrayOptsToApiParam(opts.Addresses)
opts.Symbols = ConvertArrayOptsToApiParam(opts.Symbols)
u, err := addOptions(u, opts)
if err != nil {
return nil, nil, err
}
req, err := s.client.NewRequest(http.MethodGet, u, nil)
if err != nil {
return nil, nil, err
}
var response *DataResponse[map[string]uint64]
resp, err := s.client.Do(ctx, req, &response)
if err != nil {
return nil, resp, err
}
if response.ErrorCode != 0 {
return nil, resp, fmt.Errorf("error code %d", response.ErrorCode)
}
return response.Data, resp, nil
}
func (s *TokenService) Update(ctx context.Context, chain, address string, tokenUpdate TokenUpdate) error {
url := fmt.Sprintf("token/%s?chain=%s", address, chain)
req, err := s.client.NewRequest(http.MethodPatch, url, tokenUpdate)
if err != nil {
return err
}
var response *struct {
Message string `json:"message"`
}
resp, err := s.client.Do(ctx, req, &response)
if err != nil {
return err
}
if resp.StatusCode != http.StatusOK {
if resp.StatusCode == http.StatusInternalServerError {
return fmt.Errorf("error with message %s", response.Message)
}
return fmt.Errorf("error response code %d", resp.StatusCode)
}
return nil
}
func (s *TokenService) listTokens(ctx context.Context, u string, opts *TokenListOptions) ([]*Token, *Response, error) {
opts.Addresses = ConvertArrayOptsToApiParam(opts.Addresses)
opts.Symbols = ConvertArrayOptsToApiParam(opts.Symbols)
opts.Projects = ConvertArrayOptsToApiParam(opts.Projects)
u, err := addOptions(u, opts)
if err != nil {
return nil, nil, err
}
req, err := s.client.NewRequest("GET", u, nil)
if err != nil {
return nil, nil, err
}
var tokensResponse *DataResponse[[]*Token]
resp, err := s.client.Do(ctx, req, &tokensResponse)
if err != nil {
return nil, resp, err
}
if tokensResponse.ErrorCode != 0 {
return nil, resp, fmt.Errorf("error code %d", tokensResponse.ErrorCode)
}
return tokensResponse.Data, resp, nil
}