diff --git a/pbcabi/__init__.py b/pbcabi/__init__.py index 6d8486f..c5cd384 100644 --- a/pbcabi/__init__.py +++ b/pbcabi/__init__.py @@ -1,8 +1,11 @@ """# 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 @@ -32,18 +35,6 @@ print(token_state['name']) print(token_state['balances'][my_address]) > 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__']