What's Changed * Fix for the bug: AsyncTonapiClientBase initialization parameters were not used in all methods by Stanislav-Povolotsky in https://github.com/tonkeeper/pytonapi/pull/41 * Add sort_order param to blockchain method: get_account_transactions by VasyaIT in https://github.com/tonkeeper/pytonapi/pull/42
New Contributors * Stanislav-Povolotsky made their first contribution in https://github.com/tonkeeper/pytonapi/pull/41 * VasyaIT made their first contribution in https://github.com/tonkeeper/pytonapi/pull/42
What's Changed - **Refactored code**: Replaced `httpx` with `aiohttp` to enhance performance. - **Breaking change**: Removed support for synchronous methods. - **Removed methods**: - `JettonsMethod.get_all_holders` - `AccountsMethod.get_all_nfts` - `NftMethod.get_all_items_by_collection_address` These methods were removed due to issues arising from inconsistent RPS in looping operations.
What's Changed * Added webhook methods to the API (see [Webhooks API Documentation](https://docs.tonconsole.com/tonapi/webhooks-api)). * Fix `currencies` in `v2/accounts/{account_id}/jettons` by aiexz in https://github.com/tonkeeper/pytonapi/pull/30
New Contributors * aiexz made their first contribution in https://github.com/tonkeeper/pytonapi/pull/30
- Updated `v2/accounts/{account_id}/jettons` and `v2/accounts/{account_id}/jettons/{jetton_id}`: added `currencies` and `supported_extensions` parameters. Use `supported_extensions=["custom_payload"]` to display the balance of mintless jettons (e.g., Hamster).
0.4.0
What's Changed
- Fixed loop termination by checking for empty list.
What's Added
- Added `jetton` field to `ValueFlowJettonsInner` for API compatibility. 26