Skip to content

Commit 8dc02be

Browse files
committed
v1.6.2
* Minor fixes
1 parent 0e987b0 commit 8dc02be

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ $payment_address = $ca->get_address();
4444
``$my_address`` is your own crypto address, where your funds will be sent to
4545
``$callback_url`` is the URL that will be called upon payment
4646
``$parameters`` is any parameter you wish to send to identify the payment, such as `['order_id' => 1234]`
47-
``$cryptapi_params`` parameters that will be passed to CryptAPI _(check which extra parameters are available here: https://cryptapi.io/docs/#/Bitcoin/btccreate)_
47+
``$cryptapi_params`` parameters that will be passed to CryptAPI _(check which extra parameters are available here: https://docs.cryptapi.io/#operation/create)_
4848
``$payment_address`` is the newly generated address, that you will show your users
4949
``$api_key`` is the API Key provided by [BlockBee](https://blockbee.io/), since this library is also compatible with BlockBee API.
5050

@@ -147,7 +147,7 @@ For object creation, same parameters as before. You must first call `get_addres
147147

148148
``$size`` Size of the QR Code image in pixels. Optional, pass `false` to use the default size of 512.
149149

150-
Response is an object with `qr_code` (base64 encoded image data) and `payment_uri` (the value encoded in the QR), see https://cryptapi.io/docs/#operation/btcqrcode for more information.
150+
Response is an object with `qr_code` (base64 encoded image data) and `payment_uri` (the value encoded in the QR), see https://docs.cryptapi.io/#operation/qrcode for more information.
151151

152152
#### Response sample:
153153

@@ -181,7 +181,7 @@ $fees = CryptAPI\CryptAPI::get_estimate($coin, $addresses, $priority);
181181

182182
``$priority`` Confirmation priority, needs to be one of `['fast', 'default', 'economic']`. Optional, defaults to `default`.
183183

184-
Response is an object with `estimated_cost` and `estimated_cost_usd`, see https://cryptapi.io/docs/#operation/btcestimate for more information.
184+
Response is an object with `estimated_cost` and `estimated_cost_usd`, see https://docs.cryptapi.io/#operation/estimate for more information.
185185

186186
#### Response sample:
187187

@@ -216,7 +216,7 @@ $conversion = CryptAPI\CryptAPI::get_convert($coin, $value, $from);
216216

217217
``$from`` Currency to convert from, FIAT or crypto.
218218

219-
Response is an object with `value_coin` and `exchange_rate`, see https://docs.cryptapi.io/#operation/btcconvert for more information.
219+
Response is an object with `value_coin` and `exchange_rate`, see https://docs.cryptapi.io/#operation/convert for more information.
220220

221221
#### Response sample:
222222

0 commit comments

Comments
 (0)