diff --git a/src/hedera_sdk_python/tokens/token_associate_transaction.py b/src/hedera_sdk_python/tokens/token_associate_transaction.py index df61a57..c7055cb 100644 --- a/src/hedera_sdk_python/tokens/token_associate_transaction.py +++ b/src/hedera_sdk_python/tokens/token_associate_transaction.py @@ -5,6 +5,12 @@ class TokenAssociateTransaction(Transaction): """ Represents a token associate transaction on the Hedera network. + + This transaction associates the specified tokens with an account, + allowing the account to hold and transact with those tokens. + + Inherits from the base Transaction class and implements the required methods + to build and execute a token association transaction. """ def __init__(self, account_id=None, token_ids=None): diff --git a/src/hedera_sdk_python/tokens/token_create_transaction.py b/src/hedera_sdk_python/tokens/token_create_transaction.py index bf6e5a4..ef1406c 100644 --- a/src/hedera_sdk_python/tokens/token_create_transaction.py +++ b/src/hedera_sdk_python/tokens/token_create_transaction.py @@ -6,6 +6,12 @@ class TokenCreateTransaction(Transaction): """ Represents a token creation transaction on the Hedera network. + + This transaction creates a new token with specified properties, such as + name, symbol, decimals, initial supply, and treasury account. + + Inherits from the base Transaction class and implements the required methods + to build and execute a token creation transaction. """ def __init__(self, token_name=None, token_symbol=None, decimals=None, initial_supply=None, diff --git a/src/hedera_sdk_python/tokens/token_delete_transaction.py b/src/hedera_sdk_python/tokens/token_delete_transaction.py index a110953..de5f4de 100644 --- a/src/hedera_sdk_python/tokens/token_delete_transaction.py +++ b/src/hedera_sdk_python/tokens/token_delete_transaction.py @@ -7,6 +7,9 @@ class TokenDeleteTransaction(Transaction): Represents a token deletion transaction on the Hedera network. This transaction deletes a specified token, rendering it inactive. + + Inherits from the base Transaction class and implements the required methods + to build and execute a token deletion transaction. """ def __init__(self, token_id=None):