From 3c26b5e85d9078768707a962bf58a141938af495 Mon Sep 17 00:00:00 2001 From: Alexandru Popenta Date: Fri, 25 Aug 2023 11:01:37 +0300 Subject: [PATCH 1/2] rename factory classes --- .../transactions-factories/delegation_transactions_factory.md | 2 +- .../smart_contract_transactions_factory.md | 2 +- .../token_management_transactions_factory.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sdk-core/transactions-factories/delegation_transactions_factory.md b/sdk-core/transactions-factories/delegation_transactions_factory.md index f3a1f4b..a2202bd 100644 --- a/sdk-core/transactions-factories/delegation_transactions_factory.md +++ b/sdk-core/transactions-factories/delegation_transactions_factory.md @@ -1,7 +1,7 @@ ## DelegationTransactionsFactory ``` -class DelegationTransactionsFactory: +class DelegationTransactionIntentsFactory: // The constructor is not captured by the specs; it's up to the implementing library to define it. // Generally speaking, the constructor should be parametrized with a configuration object which defines entries such as: // "minGasLimit", "gasLimitPerByte", gas limit for specific operations etc. (e.g. "gasLimitForStaking"). diff --git a/sdk-core/transactions-factories/smart_contract_transactions_factory.md b/sdk-core/transactions-factories/smart_contract_transactions_factory.md index d00a992..0c5b2b1 100644 --- a/sdk-core/transactions-factories/smart_contract_transactions_factory.md +++ b/sdk-core/transactions-factories/smart_contract_transactions_factory.md @@ -1,7 +1,7 @@ ## SmartContractTransactionsFactory ``` -class SmartContractTransactionsFactory: +class SmartContractTransactionIntentsFactory: // The constructor is not captured by the specs; it's up to the implementing library to define it. // Generally speaking, the constructor should be parametrized with a configuration object which defines entries such as: // "minGasLimit", "gasLimitPerByte" etc. diff --git a/sdk-core/transactions-factories/token_management_transactions_factory.md b/sdk-core/transactions-factories/token_management_transactions_factory.md index 71a5983..bf08f7e 100644 --- a/sdk-core/transactions-factories/token_management_transactions_factory.md +++ b/sdk-core/transactions-factories/token_management_transactions_factory.md @@ -3,7 +3,7 @@ A class that provides methods for creating transactions for token management operations. ``` -class TokenManagementTransactionsFactory: +class TokenManagementTransactionIntentsFactory: // The constructor is not captured by the specs; it's up to the implementing library to define it. // Generally speaking, the constructor should be parametrized with a configuration object which defines entries such as: // "minGasLimit", "gasLimitPerByte", "issueCost", gas limit for specific operations etc. (e.g. "gasLimitForSettingSpecialRole"). From 09e90174bc8680166e6c99734fb9b5e704bebc89 Mon Sep 17 00:00:00 2001 From: Alexandru Popenta Date: Fri, 25 Aug 2023 11:06:11 +0300 Subject: [PATCH 2/2] update comments --- .../transactions-factories/delegation_transactions_factory.md | 2 +- .../smart_contract_transactions_factory.md | 2 +- .../token_management_transactions_factory.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sdk-core/transactions-factories/delegation_transactions_factory.md b/sdk-core/transactions-factories/delegation_transactions_factory.md index a2202bd..84d9f01 100644 --- a/sdk-core/transactions-factories/delegation_transactions_factory.md +++ b/sdk-core/transactions-factories/delegation_transactions_factory.md @@ -1,4 +1,4 @@ -## DelegationTransactionsFactory +## DelegationTransactionIntentsFactory ``` class DelegationTransactionIntentsFactory: diff --git a/sdk-core/transactions-factories/smart_contract_transactions_factory.md b/sdk-core/transactions-factories/smart_contract_transactions_factory.md index 0c5b2b1..fb84160 100644 --- a/sdk-core/transactions-factories/smart_contract_transactions_factory.md +++ b/sdk-core/transactions-factories/smart_contract_transactions_factory.md @@ -1,4 +1,4 @@ -## SmartContractTransactionsFactory +## SmartContractTransactionIntentsFactory ``` class SmartContractTransactionIntentsFactory: diff --git a/sdk-core/transactions-factories/token_management_transactions_factory.md b/sdk-core/transactions-factories/token_management_transactions_factory.md index bf08f7e..b083840 100644 --- a/sdk-core/transactions-factories/token_management_transactions_factory.md +++ b/sdk-core/transactions-factories/token_management_transactions_factory.md @@ -1,4 +1,4 @@ -## TokenManagementTransactionsFactory +## TokenManagementTransactionIntentsFactory A class that provides methods for creating transactions for token management operations.