Metadata-Version: 2.1
Name: madzpy
Version: 0.6
Summary: Madzcoin RPC Client
Home-page: https://github.com/MadzCoin/madz-py/
Download-URL: https://github.com/MadzCoin/madz-py/archive/refs/heads/main.zip
Author: Bastel Pichi
Author-email: pichi@pichisdns.com
License: MIT
Keywords: Madzcoin,Crypto,RPC
Description-Content-Type: text/markdown
License-File: LICENSE

# madz-py
madzpy is a rpc and api wrapper.

First, install it:
```
pip3 install madzpy
```

All commands interfacing with the node need to use an Instance of `madz()`

To create a new instance, run:
```
import madzpy

madz = madzpy.madz()
```
Here are some commands you can use:
```
#                      Private key               From            To            Amount
print(madz.transaction("XXXXXXXXXXXXXXXXXXXXXX", "0x4ba...b313", "0xbd...164", 1))
# returns False 

#                  Address
print(madz.balance("0x4ba...b313"))

#                     Address
print(madz.is_address("0x4ba...b313"))

```

Better docs soonâ„¢

If you face any issues, file a issue on Github.

If you want to support the developer, send, Madz, BNB, MATIC or ETH to the following address:
```0xAFDfedC5311218B636EEbe3837C489c3BeAcFfB4```

This code is released under MIT License.
