Skip to content

Commit

Permalink
Merge pull request #8 from multiversx/rename-factory-classes
Browse files Browse the repository at this point in the history
Renamed the factory classes
  • Loading branch information
popenta authored Aug 25, 2023
2 parents b84cac0 + 09e9017 commit 7aa6321
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## DelegationTransactionsFactory
## DelegationTransactionIntentsFactory

```
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").
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## SmartContractTransactionsFactory
## SmartContractTransactionIntentsFactory

```
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.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
## TokenManagementTransactionsFactory
## TokenManagementTransactionIntentsFactory

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").
Expand Down

0 comments on commit 7aa6321

Please sign in to comment.