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
Copy file name to clipboardExpand all lines: src/Luno/Client.php
+94-41Lines changed: 94 additions & 41 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ public function CancelWithdrawal(Request\CancelWithdrawal $req): Response\Cancel
22
22
/**
23
23
* CreateAccount makes a call to POST /api/1/accounts.
24
24
*
25
-
* Create an additional account for the specified currency.
25
+
* This request creates an Account for the specified currency. Please note that the balances for the Account will be displayed based on the <code>asset</code> value, which is the currency the Account is based on.
@@ -141,8 +141,7 @@ public function GetBalances(Request\GetBalances $req): Response\GetBalances
141
141
/**
142
142
* GetFeeInfo makes a call to GET /api/1/fee_info.
143
143
*
144
-
* Returns your fees and 30 day trading volume (as of midnight) for a given
145
-
* pair.
144
+
* Returns the fees and 30 day trading volume (as of midnight) for a given currency pair. For complete details, please see <a href="en/countries">Fees & Features</a>.
@@ -344,16 +365,13 @@ public function ListTransactions(Request\ListTransactions $req): Response\ListTr
344
365
/**
345
366
* ListUserTrades makes a call to GET /api/1/listtrades.
346
367
*
347
-
* Returns a list of your recent trades for a given pair, sorted by oldest
348
-
* first. If <code>before</code> is specified, then the trades are returned
349
-
* sorted by most-recent first.
368
+
* Returns a list of the recent Trades for a given currency pair for this user, sorted by oldest first.
369
+
* If <code>before</code> is specified, then Trades are returned sorted by most-recent first.
350
370
*
351
-
* <code>type</code> in the response indicates the type of order that you placed
352
-
* in order to participate in the trade. Possible types: <code>BID</code>,
353
-
* <code>ASK</code>.
371
+
* <code>type</code> in the response indicates the type of Order that was placed to participate in the trade.
372
+
* Possible types: <code>BID</code>, <code>ASK</code>.
354
373
*
355
-
* If <code>is_buy</code> in the response is true, then the order which
356
-
* completed the trade (market taker) was a bid order.
374
+
* If <code>is_buy</code> in the response is true, then the Order which completed the trade (market taker) was a Bid Order.
357
375
*
358
376
* Results of this query may lag behind the latest data.
359
377
*
@@ -405,18 +423,15 @@ public function PostLimitOrder(Request\PostLimitOrder $req): Response\PostLimitO
405
423
/**
406
424
* PostMarketOrder makes a call to POST /api/1/marketorder.
407
425
*
408
-
* Create a new market order.
426
+
* Create a new Market Order.
409
427
*
410
-
* A market order executes immediately, and either buys as much Bitcoin or
411
-
* Ethereum that can be bought for a set amount of fiat currency, or sells a
412
-
* set amount of Bitcoin or Ethereum for as much fiat as possible.
428
+
* A Market Order executes immediately, and either buys as much of the asset that can be bought for a set amount of fiat currency, or sells a set amount of the asset for as much as possible.
413
429
*
414
-
* Warning! Orders cannot be reversed once they have executed. Please ensure
415
-
* your program has been thoroughly tested before submitting orders.
430
+
* <b>Warning!</b> Orders cannot be reversed once they have executed.
431
+
* Please ensure your program has been thoroughly tested before submitting Orders.
416
432
*
417
-
* If no base_account_id or counter_account_id are specified, your default base
418
-
* currency or counter currency account will be used. You can find your account
419
-
* IDs by calling the <a href="#operation/getBalances">Balances</a> API.
433
+
* If no <code>base_account_id</code> or <code>counter_account_id</code> are specified, the default base currency or counter currency account will be used.
434
+
* Users can find their account IDs by calling the <a href="#operation/getBalances">Balances</a> request.
Copy file name to clipboardExpand all lines: src/Luno/Request/CreateAccount.php
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -5,10 +5,11 @@
5
5
class CreateAccount extends AbstractRequest
6
6
{
7
7
/**
8
-
* The currency code for the account you want to create
8
+
* The currency code for the Account you want to create. Please see the Currency section for a detailed list of currencies supported by the Luno platform.
9
9
*
10
-
* You must be verified to trade currency in order to be able to create an
11
-
* account. A user has a limit of 4 accounts per currency.
10
+
* Users must be verified to trade currency in order to be able to create an Account. For more information on the verification process, please see <a href="/help/en/articles/1000168396">How do I verify my identity?</a>.
0 commit comments