Removed legalese for now

This commit is contained in:
Jon Michael Aanes 2025-04-09 21:39:03 +02:00
parent fc15e07470
commit 63dc9ac352

View File

@ -1,8 +1,11 @@
"""# Partisia Blockchain ABI client. """# Partisia Blockchain ABI client.
Utility library for parsing and processing the Partisia Blockchain ABI Format. Unofficial utility library for parsing and processing the Partisia Blockchain ABI Format.
The format is specified here: [Partisia Blockchain's ABI format](https://partisiablockchain.gitlab.io/documentation/smart-contracts/smart-contract-binary-formats.html).. The format is specified here: [Partisia Blockchain's ABI format](https://partisiablockchain.gitlab.io/documentation/smart-contracts/smart-contract-binary-formats.html).
This library is not officially associated with Partisia Blockchain nor Partisia
Group ApS.
## Example usage ## Example usage
@ -32,18 +35,6 @@ print(token_state['name'])
print(token_state['balances'][my_address]) print(token_state['balances'][my_address])
> 213112 > 213112
``` ```
## Legalese
This project is licensed under MIT Licence, see `LICENSE` for full text.
This project is not associated with, nor supported by any of:
- Partisia Applications A/S
- Partisia Infrastructure A/S
- Partisia Blockchain Foundation
Use at own risk.
""" """
__all__ = ['model', 'binaryreader', '__version__'] __all__ = ['model', 'binaryreader', '__version__']