forked from umbracle/ethgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathetherscan.go
207 lines (181 loc) · 4.63 KB
/
etherscan.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
package etherscan
import (
"encoding/json"
"fmt"
"strconv"
"strings"
"github.com/umbracle/ethgo"
"github.com/umbracle/ethgo/jsonrpc/codec"
"github.com/valyala/fasthttp"
)
// Etherscan is a provider using the Etherscan api
type Etherscan struct {
client fasthttp.Client
url string
apiKey string
}
// NewEtherscanFromNetwork creates a new client from the network id
func NewEtherscanFromNetwork(n ethgo.Network, apiKey string) (*Etherscan, error) {
var url string
switch n {
case ethgo.Mainnet:
url = "https://api.etherscan.io"
case ethgo.Ropsten:
url = "https://ropsten.etherscan.io"
case ethgo.Rinkeby:
url = "https://rinkeby.etherscan.io"
case ethgo.Goerli:
url = "https://goerli.etherscan.io"
default:
return nil, fmt.Errorf("unknwon network id %d", n)
}
return NewEtherscan(url, apiKey), nil
}
// NewEtherscan creates a new Etherscan service from a url
func NewEtherscan(url, apiKey string) *Etherscan {
return &Etherscan{url: url}
}
type proxyResponse struct {
Status string
Message string
Result json.RawMessage
}
// Query sends a query to Etherscan
func (e *Etherscan) Query(module, action string, out interface{}, params map[string]string) error {
url := fmt.Sprintf("%s/api?module=%s&action=%s", e.url, module, action)
if len(params) != 0 {
res := []string{}
for k, v := range params {
res = append(res, k+"="+v)
}
url += "&" + strings.Join(res, "&")
}
if e.apiKey != "" {
url = url + "&apikey=" + e.apiKey
}
req := fasthttp.AcquireRequest()
res := fasthttp.AcquireResponse()
defer fasthttp.ReleaseRequest(req)
defer fasthttp.ReleaseResponse(res)
req.SetRequestURI(url)
req.Header.SetMethod("GET")
if err := e.client.Do(req, res); err != nil {
return err
}
// Decode json-rpc response
var result json.RawMessage
if module == "proxy" {
var response codec.Response
if err := json.Unmarshal(res.Body(), &response); err != nil {
return err
}
if response.Error != nil {
return response.Error
}
result = response.Result
} else {
var response proxyResponse
if err := json.Unmarshal(res.Body(), &response); err != nil {
return err
}
result = response.Result
}
if err := json.Unmarshal(result, out); err != nil {
return err
}
return nil
}
// BlockNumber returns the number of most recent block.
func (e *Etherscan) BlockNumber() (uint64, error) {
var out string
if err := e.Query("proxy", "eth_blockNumber", &out, nil); err != nil {
return 0, err
}
return parseUint64orHex(out)
}
// GetBlockByNumber returns information about a block by block number.
func (e *Etherscan) GetBlockByNumber(i ethgo.BlockNumber, full bool) (*ethgo.Block, error) {
var b *ethgo.Block
params := map[string]string{
"tag": i.String(),
"boolean": strconv.FormatBool(full),
}
if err := e.Query("proxy", "eth_getBlockByNumber", &b, params); err != nil {
return nil, err
}
return b, nil
}
type ContractCode struct {
SourceCode string
ContractName string
Runs string
CompilerVersion string
ConstructorArguments string
}
func (e *Etherscan) GetContractCode(addr ethgo.Address) (*ContractCode, error) {
var out []*ContractCode
err := e.Query("contract", "getsourcecode", &out, map[string]string{
"address": addr.String(),
})
if err != nil {
return nil, err
}
if len(out) != 1 {
return nil, fmt.Errorf("incorrect values")
}
return out[0], nil
}
func (e *Etherscan) GasPrice() (uint64, error) {
var out struct {
LastBlock string `json:"LastBlock"`
}
if err := e.Query("gastracker", "gasoracle", &out, map[string]string{}); err != nil {
return 0, err
}
num, err := strconv.Atoi(out.LastBlock)
if err != nil {
return 0, err
}
return uint64(num), nil
}
func (e *Etherscan) GetLogs(filter *ethgo.LogFilter) ([]*ethgo.Log, error) {
if len(filter.Address) == 0 {
return nil, fmt.Errorf("an address to filter is required")
}
strBlockNumber := func(b ethgo.BlockNumber) string {
switch b {
case ethgo.Latest:
return "latest"
case ethgo.Earliest:
return "earliest"
case ethgo.Pending:
return "pending"
}
if b < 0 {
panic("internal. blocknumber is negative")
}
return fmt.Sprintf("%d", uint64(b))
}
params := map[string]string{
"address": filter.Address[0].String(),
}
if filter.From != nil {
params["fromBlock"] = strBlockNumber(*filter.From)
}
if filter.To != nil {
params["toBlock"] = strBlockNumber(*filter.To)
}
var out []*ethgo.Log
if err := e.Query("logs", "getLogs", &out, params); err != nil {
return nil, err
}
return out, nil
}
func parseUint64orHex(str string) (uint64, error) {
base := 10
if strings.HasPrefix(str, "0x") {
str = str[2:]
base = 16
}
return strconv.ParseUint(str, base, 64)
}