Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: AlgorandClient #71

Merged
merged 42 commits into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from 39 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
b53e0cf
initial composer
joe-p Apr 3, 2024
041317a
account and client manager
joe-p Apr 3, 2024
b06af69
build_group and execute
joe-p Apr 3, 2024
8bce649
WIP: algorand-client
joe-p Apr 4, 2024
a0c6590
fix up algorand-client
joe-p Apr 6, 2024
621515b
algorand-client -> algorand_client
joe-p Apr 6, 2024
e36a14c
test_send_payment
joe-p Apr 6, 2024
ed4550a
refactor params dataclasses
joe-p Apr 6, 2024
69839f1
fix sender params
joe-p Apr 6, 2024
4d923d1
refactor txn params
joe-p Apr 7, 2024
7573dfc
rm AlgoAmount
joe-p Apr 7, 2024
de14c48
beta namespace
joe-p Apr 7, 2024
7a9f7f0
rm from __init__
joe-p Apr 7, 2024
9560f23
improve send_payment
joe-p Apr 8, 2024
553a675
test_asset_opt_in
joe-p Apr 8, 2024
ee28990
addr -> address
joe-p Apr 8, 2024
257ac17
parity with JS tests
joe-p Apr 8, 2024
f9cfa62
ruff check --fix
joe-p Apr 10, 2024
95b7682
move account_manager to beta
joe-p Apr 10, 2024
8a3f2ff
unsafe ruff fixes
joe-p Apr 10, 2024
abc6d02
various fixes
joe-p Apr 10, 2024
6d45998
use match
joe-p Apr 10, 2024
d359a76
fix remaining ruff errors (other than line length and comments)
joe-p Apr 10, 2024
b8a1e41
assert rather than cast
joe-p Apr 10, 2024
067f4c5
dont import from source
joe-p Apr 10, 2024
938b081
use frozen dataclasses
joe-p Apr 10, 2024
1fc0f66
default get value
joe-p Apr 10, 2024
1ed2c94
instantiate dict
joe-p Apr 10, 2024
7ee14f5
using typing.Self
joe-p Apr 10, 2024
fb444c0
fix some docstrings
joe-p Apr 15, 2024
d60d050
update idna due to vulnerability by pip-audit
joe-p Apr 15, 2024
1e3797e
ruff
joe-p Apr 15, 2024
452d97d
ignore ruff errors in beta for now
joe-p Apr 15, 2024
80a1cf5
fix non sdk mypy stuff
joe-p Apr 15, 2024
23664c2
update cryptography for pip-audit
joe-p Apr 15, 2024
aa9e1e7
rm comment
joe-p Apr 15, 2024
1bf2bd5
ignore mypy errors
joe-p Apr 15, 2024
442b8bf
ruff
joe-p Apr 15, 2024
b799bff
update setuptools
joe-p Apr 15, 2024
770c84a
chore: hotfixing the pkgutil.ImpImporter error when using 3.12 based …
aorumbayev Apr 16, 2024
de9b9d9
tuple unpacking
joe-p Apr 16, 2024
a16accd
Merge remote-tracking branch 'origin/main' into feat/algorand_client
aorumbayev Apr 17, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"autodoc2",
]
templates_path = ["_templates"]
exclude_patterns = []
exclude_patterns = [] # type: ignore
intersphinx_mapping = {
"python": ("https://docs.python.org/3", None),
"algosdk": ("https://py-algorand-sdk.readthedocs.io/en/latest", None),
Expand All @@ -37,7 +37,7 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output

html_theme = "sphinx_rtd_theme"
html_static_path = []
html_static_path = [] # type: ignore


# -- Options for myst ---
Expand Down
87 changes: 44 additions & 43 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,10 @@ target-version = "py310"
allow-star-arg-any = true
suppress-none-returning = true

[tool.ruff.per-file-ignores]
"src/algokit_utils/beta/*" = ["ERA001", "E501", "PLR0911"]
"path/to/file.py" = ["E402"]

[tool.poe.tasks]
docs = "sphinx-build docs/source docs/html"

Expand Down
Loading
Loading