Skip to content

Commit

Permalink
descriptions back in
Browse files Browse the repository at this point in the history
  • Loading branch information
nadineloepfe committed Jan 2, 2025
1 parent e900bdb commit d585078
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/hedera_sdk_python/tokens/token_associate_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
6 changes: 6 additions & 0 deletions src/hedera_sdk_python/tokens/token_create_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
3 changes: 3 additions & 0 deletions src/hedera_sdk_python/tokens/token_delete_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit d585078

Please sign in to comment.