1
- # Examples of using json-rpc in Python for Monero.
1
+ # Example usage of json-rpc in Python for Monero
2
2
3
3
Monero is a secure, private, untraceable cryptocurrency. For more information or questions,
4
4
please go to [ getmonero.org] ( https://getmonero.org ) and
@@ -23,7 +23,7 @@ programs on top of Monero.
23
23
24
24
## simplewallet
25
25
The examples demonstrate how to call the most popular procedures
26
- that simplewallet exposes for other applications to use, such as:
26
+ that ` simplewallet ` exposes for other applications to use, such as:
27
27
28
28
- getbalance
29
29
- query_key
@@ -37,8 +37,8 @@ The basic documentaion of the procedures can be found
37
37
38
38
** Prerequsits**
39
39
40
- Before executing this code make sure that simplewallet is
41
- running and listening for the incoming rpc calls. For example, you can run the simplewallet in rpc mode as follows:
40
+ Before executing this code make sure that ` simplewallet ` is
41
+ running and listening for the incoming rpc calls. For example, you can run the ` simplewallet ` in rpc mode as follows:
42
42
```
43
43
/opt/bitmonero/simplewallet --wallet-file ~/wallet.bin --password <wallet_password> --rpc-bind-port 18082
44
44
```
@@ -288,7 +288,7 @@ More examples are [here](https://github.com/moneroexamples/python-json-rpc/blob/
288
288
289
289
## bitmonreod
290
290
291
- The baisc bitmonerod rpc calls are as follows:
291
+ The baisc ` bitmonerod ` rpc calls are as follows:
292
292
293
293
- getheight
294
294
- query_key
@@ -303,7 +303,7 @@ The baisc bitmonerod rpc calls are as follows:
303
303
304
304
** Prerequsits**
305
305
306
- Before executing this code make sure that bitmonerod is running.
306
+ Before executing this code make sure that ` bitmonerod ` is running.
307
307
Just like before, the code was written, tested and executed on Ubuntu 15.10 with
308
308
Python 3.4.3 and it requires the [ Requests package] ( https://pypi.python.org/pypi/requests ) .
309
309
@@ -485,4 +485,4 @@ Generated output:
485
485
486
486
```
487
487
488
- More examples hopefully soon soon.
488
+ More examples hopefully coming soon.
0 commit comments