You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Contains methods pertaining to the `/address` endpoint of Amberdata's API.
@@ -19,21 +26,33 @@ class Address {
19
26
this.web3data=web3data
20
27
}
21
28
29
+
/**
30
+
* Alias of getAll().
31
+
*
32
+
* @param [filterOptions] - The filters associated with the request.
33
+
* @example web3data.address.getAllAddresses({
34
+
* size: 100,
35
+
* })
36
+
*/
37
+
getAllAddresses(filterOptions={}){
38
+
returnthis.getAll(filterOptions)
39
+
}
40
+
22
41
/**
23
42
* Returns every address that has been seen on the network.
24
43
*
25
44
* @param filterOptions - The filters associated with the request.
26
45
* @param [filterOptions.hash] - Filter by a specific address.
27
46
* @param [filterOptions.size] - The size of the response. <b>Default:</b> `100`.
28
-
* @returns Containing an object with an array of objects containing. See [API docs](https://docs.amberdata.io/reference#get-all-addresses) for details on return.
47
+
* @returns Containing an object with an array of objects containing. See [API docs](https://docs.amberdata.io/reference#get-all-addresses) for details on response.
* Retrieves the historical adoption for the specified address.
82
+
*
83
+
* @param hash - The address.
84
+
* @param [filterOptions] - The filters associated with the request. See [API docs](https://docs.amberdata.io/reference#get-address-adoption) for details.
85
+
* @returns The historical adoption data for the specified address.
* Retrieves the transaction data for the specified hash.
63
+
*
64
+
* @param hash - The transaction hash.
65
+
* @param [filterOptions] - The filter options associated with the request. See [docs](https://docs.amberdata.io/reference#get-transaction) for more details.
66
+
* @param [filterOptions.validationMethod=none] - The validation method to be added to the response: `none`, `basic`, `full`.
67
+
* @param [filterOptions.includePrice=true] - Indicates whether or not to include price data with the results.
68
+
* @returns The data for the specified transaction hash.
* Retrieves the historical (time series) volume of transactions.
149
+
*
150
+
* @param [filterOptions] - The filter options associated with the request. See [docs](https://docs.amberdata.io/reference#get-historical-transaction-volume) for more details.
151
+
* @returns The historical (time series) volume of transactions.
0 commit comments