-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from multiversx/change-directory-name-and-fixes
Directory renaming and small fix for token management parser
- Loading branch information
Showing
21 changed files
with
67 additions
and
62 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
multiversx_sdk/core/transaction_parsers/token_operations_outcome_parser_test.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
from multiversx_sdk.core.transactions_factories.delegation_transactions_factory import \ | ||
DelegationTransactionsFactory | ||
from multiversx_sdk.core.transactions_factories.smart_contract_transactions_factory import \ | ||
SmartContractTransactionsFactory | ||
from multiversx_sdk.core.transactions_factories.token_management_transactions_factory import ( | ||
RegisterAndSetAllRolesTokenType, TokenManagementTransactionsFactory) | ||
from multiversx_sdk.core.transactions_factories.transactions_factory_config import \ | ||
TransactionsFactoryConfig | ||
from multiversx_sdk.core.transactions_factories.transfer_transactions_factory import \ | ||
TransferTransactionsFactory | ||
|
||
__all__ = [ | ||
"DelegationTransactionsFactory", | ||
"TokenManagementTransactionsFactory", | ||
"RegisterAndSetAllRolesTokenType", | ||
"TransactionsFactoryConfig", | ||
"SmartContractTransactionsFactory", | ||
"TransferTransactionsFactory" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...s/delegation_transactions_factory_test.py → ...s/delegation_transactions_factory_test.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
.../token_management_transactions_factory.py → .../token_management_transactions_factory.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...n_management_transactions_factory_test.py → ...n_management_transactions_factory_test.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ies/transfer_transactions_factory_test.py → ...ies/transfer_transactions_factory_test.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from multiversx_sdk.core.transactions_outcome_parsers.resources import ( | ||
SmartContractResult, TransactionEvent, TransactionLogs, TransactionOutcome) | ||
from multiversx_sdk.core.transactions_outcome_parsers.token_management_transactions_outcome_parser import \ | ||
TokenManagementTransactionsOutcomeParser | ||
|
||
__all__ = ["TokenManagementTransactionsOutcomeParser", "SmartContractResult", "TransactionEvent", "TransactionLogs", "TransactionOutcome"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters