We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clean APIs for consideration:
The text was updated successfully, but these errors were encountered:
Bitcoin + static fromWIF(wif_bytes) -> ECPair + static toWIF(ECPair) -> wif_bytes ECPair + importWIF() -> boolean + exportWIF() -> wif_bytes + getAddr() -> addr_bytes + sendTx(add_bytes, amount) -> raw_tx_bytes
Sorry, something went wrong.
Check out @staticmethod
@staticmethod
https://realpython.com/blog/python/instance-class-and-static-methods-demystified/
https://julien.danjou.info/blog/2013/guide-python-static-class-abstract-methods
https://softwareengineering.stackexchange.com/questions/306092/what-are-class-methods-and-instance-methods-in-python
Check out @property
@property
https://www.blog.pythonlibrary.org/2014/01/20/python-201-properties/
class A: def __init__(self): pass @property def age(self): return 10
vietlq
No branches or pull requests
Clean APIs for consideration:
The text was updated successfully, but these errors were encountered: