Type hints and warnings

Literal type hints

aiosend provides rich typing that allows you not to remember the values of the enumerated parameters.

../_images/literalth_1.png ../_images/literalth_2.png

Wrong net warning

aiosend will warn you if you are using the wrong net.

from aiosend import CryptoPay, TESTNET
cp = CryptoPay("MAINNET token", TESTNET)
aiosend.exceptions.WrongNetworkError: Authorization failed.
Token is served by the MAINNET, you are using TESTNET