File tree 2 files changed +15
-6
lines changed
2 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -26,11 +26,11 @@ func main() {
26
26
// or, if you are working with etherscan-family API like BscScan
27
27
//
28
28
// client := etherscan.NewCustomized(etherscan.Customization{
29
- // Timeout: 15 * time.Second,
30
- // Key: "You key here",
31
- // BaseURL: "https://api.bscscan.com/api?",
32
- // Verbose: false,
33
- // })
29
+ // Timeout: 15 * time.Second,
30
+ // Key: "You key here",
31
+ // BaseURL: "https://api.bscscan.com/api?",
32
+ // Verbose: false,
33
+ // })
34
34
35
35
// (optional) add hooks, e.g. for rate limit
36
36
client.BeforeRequest = func (module, action string , param map [string ]interface {}) error {
Original file line number Diff line number Diff line change @@ -24,7 +24,16 @@ import (
24
24
func main () {
25
25
// 创建连接指定网络的客户端
26
26
client := etherscan.New (etherscan.Mainnet , " [your API key]" )
27
-
27
+
28
+ // 或者,如果你要调用的是EtherScan家族的BscScan:
29
+ //
30
+ // client := etherscan.NewCustomized(etherscan.Customization{
31
+ // Timeout: 15 * time.Second,
32
+ // Key: "You key here",
33
+ // BaseURL: "https://api.bscscan.com/api?",
34
+ // Verbose: false,
35
+ // })
36
+
28
37
// (可选)按需注册钩子函数,例如用于速率控制
29
38
client.BeforeRequest = func (module, action string , param map [string ]interface {}) error {
30
39
// ...
You can’t perform that action at this time.
0 commit comments