aboutsummaryrefslogtreecommitdiffstats
path: root/packages/connect
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-08-21 08:23:38 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-08-21 08:23:38 +0800
commitcd2bbd850d30e581273aae5d0524bce785639042 (patch)
treee2cb3b9a84f0938bcf4f01da21b514b21337ac6a /packages/connect
parent83a36bc4b60726bd95736e62281540ccc22b1766 (diff)
downloaddexon-sol-tools-cd2bbd850d30e581273aae5d0524bce785639042.tar
dexon-sol-tools-cd2bbd850d30e581273aae5d0524bce785639042.tar.gz
dexon-sol-tools-cd2bbd850d30e581273aae5d0524bce785639042.tar.bz2
dexon-sol-tools-cd2bbd850d30e581273aae5d0524bce785639042.tar.lz
dexon-sol-tools-cd2bbd850d30e581273aae5d0524bce785639042.tar.xz
dexon-sol-tools-cd2bbd850d30e581273aae5d0524bce785639042.tar.zst
dexon-sol-tools-cd2bbd850d30e581273aae5d0524bce785639042.zip
Update more names in docs
Diffstat (limited to 'packages/connect')
-rw-r--r--packages/connect/src/http_client.ts7
1 files changed, 4 insertions, 3 deletions
diff --git a/packages/connect/src/http_client.ts b/packages/connect/src/http_client.ts
index 1b30bebf3..b90c2c35f 100644
--- a/packages/connect/src/http_client.ts
+++ b/packages/connect/src/http_client.ts
@@ -57,7 +57,7 @@ export class HttpClient implements Client {
/**
* Retrieve assetData pair info from the API
* @param requestOpts Options specifying assetData information to retrieve, page information, and network id.
- * @return The resulting AssetPairsItems that match the request
+ * @return The resulting AssetPairsResponse that match the request
*/
public async getAssetPairsAsync(
requestOpts?: RequestOpts & AssetPairsRequestOpts & PagedRequestOpts,
@@ -77,7 +77,7 @@ export class HttpClient implements Client {
/**
* Retrieve orders from the API
* @param requestOpts Options specifying orders to retrieve and page information, page information, and network id.
- * @return The resulting SignedOrders that match the request
+ * @return The resulting OrdersResponse that match the request
*/
public async getOrdersAsync(
requestOpts?: RequestOpts & OrdersRequestOpts & PagedRequestOpts,
@@ -97,7 +97,7 @@ export class HttpClient implements Client {
/**
* Retrieve a specific order from the API
* @param orderHash An orderHash generated from the desired order
- * @return The SignedOrder that matches the supplied orderHash
+ * @return The APIOrder that matches the supplied orderHash
*/
public async getOrderAsync(orderHash: string, requestOpts?: RequestOpts): Promise<APIOrder> {
if (!_.isUndefined(requestOpts)) {
@@ -158,6 +158,7 @@ export class HttpClient implements Client {
/**
* Retrieve the list of fee recipient addresses used by the relayer.
* @param requestOpts Options specifying page information, and network id.
+ * @return The resulting FeeRecipientsResponse
*/
public async getFeeRecipientsAsync(requestOpts?: RequestOpts & PagedRequestOpts): Promise<FeeRecipientsResponse> {
if (!_.isUndefined(requestOpts)) {