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: README.md
+6-3
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ Collect static files:
48
48
python3 manage.py collectstatic
49
49
```
50
50
51
-
Add CryptAPI's URLs to your project's urls.py file:
51
+
Add BlockBee's URLs to your project's urls.py file:
52
52
53
53
```python
54
54
urlpatterns = [
@@ -208,7 +208,7 @@ In your template HTML
208
208
209
209
```djangotemplate
210
210
{% extends 'base.html'%}
211
-
{% load cryptapi_helper%}
211
+
{% load blockbee_helper%}
212
212
{% block content %}
213
213
{% generate_payment_template %}
214
214
{% endblock %}
@@ -231,7 +231,7 @@ This library has a couple of helpers to help you get started. They are present i
231
231
232
232
### BlockBee Helper
233
233
234
-
This is the helper responsible for the connections ot the API itself. All these functions are in the ``cryptapi.py``file.
234
+
This is the helper responsible for the connections ot the API itself. All these functions are in the ``blockbee.py``file.
235
235
236
236
``get_info(coin)`` returns the information of all cryptocurrencies or just if``coin=''``or a specific cryptocurrency if``coin='ltc'``for example. [docs](https://docs.blockbee.io/#operation/info)
237
237
@@ -280,4 +280,7 @@ Contact us @ https://blockbee.io/contacts/
0 commit comments