-
Notifications
You must be signed in to change notification settings - Fork 1
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 #193 from multiversx/feat/next
Merge Feat/next into main
- Loading branch information
Showing
294 changed files
with
37,919 additions
and
11,025 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
[flake8] | ||
ignore = E501, E722 | ||
extend-ignore = E501, E722, E203 | ||
exclude = transaction_pb2* |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,24 +1,35 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.4.0 | ||
rev: v5.0.0 | ||
hooks: | ||
- id: check-yaml | ||
- id: end-of-file-fixer | ||
- id: trailing-whitespace | ||
- repo: https://github.com/hhatto/autopep8 | ||
rev: v2.0.4 | ||
- repo: https://github.com/psf/black | ||
rev: 24.10.0 | ||
hooks: | ||
- id: autopep8 | ||
args: | ||
- "-i" | ||
- id: black | ||
args: [--line-length=120] | ||
- repo: https://github.com/pycqa/isort | ||
rev: 5.13.2 | ||
hooks: | ||
- id: isort | ||
name: isort (python) | ||
args: ["--profile", "black", "--filter-files"] | ||
- repo: https://github.com/PyCQA/flake8 | ||
rev: 7.0.0 | ||
rev: 7.1.1 | ||
hooks: | ||
- id: flake8 | ||
args: | ||
- "--config=.flake8" | ||
- repo: https://github.com/PyCQA/autoflake | ||
rev: v2.3.1 | ||
hooks: | ||
- id: autoflake | ||
args: | ||
- --in-place | ||
- --remove-all-unused-imports | ||
- repo: https://github.com/RobertCraigie/pyright-python | ||
rev: v1.1.392 | ||
hooks: | ||
- id: pyright |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
multiversx\_sdk.account\_management package | ||
=========================================== | ||
|
||
Submodules | ||
---------- | ||
|
||
multiversx\_sdk.account\_management.account\_controller module | ||
-------------------------------------------------------------- | ||
|
||
.. automodule:: multiversx_sdk.account_management.account_controller | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
multiversx\_sdk.account\_management.account\_transactions\_factory module | ||
------------------------------------------------------------------------- | ||
|
||
.. automodule:: multiversx_sdk.account_management.account_transactions_factory | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Module contents | ||
--------------- | ||
|
||
.. automodule:: multiversx_sdk.account_management | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
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,29 @@ | ||
multiversx\_sdk.accounts package | ||
================================ | ||
|
||
Submodules | ||
---------- | ||
|
||
multiversx\_sdk.accounts.account module | ||
--------------------------------------- | ||
|
||
.. automodule:: multiversx_sdk.accounts.account | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
multiversx\_sdk.accounts.ledger\_account module | ||
----------------------------------------------- | ||
|
||
.. automodule:: multiversx_sdk.accounts.ledger_account | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Module contents | ||
--------------- | ||
|
||
.. automodule:: multiversx_sdk.accounts | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
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,29 @@ | ||
multiversx\_sdk.builders package | ||
================================ | ||
|
||
Submodules | ||
---------- | ||
|
||
multiversx\_sdk.builders.token\_transfers\_data\_builder module | ||
--------------------------------------------------------------- | ||
|
||
.. automodule:: multiversx_sdk.builders.token_transfers_data_builder | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
multiversx\_sdk.builders.transaction\_builder module | ||
---------------------------------------------------- | ||
|
||
.. automodule:: multiversx_sdk.builders.transaction_builder | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Module contents | ||
--------------- | ||
|
||
.. automodule:: multiversx_sdk.builders | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
Oops, something went wrong.