Skip to content

Commit 878d197

Browse files
authored
Merge pull request #25 from nanmu42/develop
Doc fix and amendation
2 parents 4fb3ccd + fee45c9 commit 878d197

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ func main() {
2626
// or, if you are working with etherscan-family API like BscScan
2727
//
2828
// 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+
// })
3434

3535
// (optional) add hooks, e.g. for rate limit
3636
client.BeforeRequest = func(module, action string, param map[string]interface{}) error {

README_ZH.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,16 @@ import (
2424
func main() {
2525
// 创建连接指定网络的客户端
2626
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+
2837
// (可选)按需注册钩子函数,例如用于速率控制
2938
client.BeforeRequest = func(module, action string, param map[string]interface{}) error {
3039
// ...

0 commit comments

Comments
 (0)