@@ -30,7 +30,9 @@ func (c *Client) MultiAccountBalance(addresses ...string) (balances []AccountBal
30
30
}
31
31
32
32
// NormalTxByAddress gets a list of "normal" transactions by address
33
+ //
33
34
// startBlock and endBlock can be nil
35
+ //
34
36
// if desc is true, result will be sorted in blockNum descendant order.
35
37
func (c * Client ) NormalTxByAddress (address string , startBlock * int , endBlock * int , page int , offset int , desc bool ) (txs []NormalTx , err error ) {
36
38
param := M {
@@ -51,7 +53,9 @@ func (c *Client) NormalTxByAddress(address string, startBlock *int, endBlock *in
51
53
}
52
54
53
55
// InternalTxByAddress gets a list of "internal" transactions by address
56
+ //
54
57
// startBlock and endBlock can be nil
58
+ //
55
59
// if desc is true, result will be sorted in descendant order.
56
60
func (c * Client ) InternalTxByAddress (address string , startBlock * int , endBlock * int , page int , offset int , desc bool ) (txs []InternalTx , err error ) {
57
61
param := M {
@@ -73,6 +77,7 @@ func (c *Client) InternalTxByAddress(address string, startBlock *int, endBlock *
73
77
74
78
// ERC20Transfers get a list of "erc20 - token transfer events" by
75
79
// contract address and/or from/to address.
80
+ //
76
81
// leave undesired condition to nil.
77
82
func (c * Client ) ERC20Transfers (contractAddress , address * string , startBlock * int , endBlock * int , page int , offset int ) (txs []ERC20Transfer , err error ) {
78
83
param := M {
0 commit comments