Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
88ec735
Removes unused imports
thewhaleking Jun 17, 2025
a11f37d
Merge pull request #139 from opentensor/fix/thewhaleking/remove-unuse…
thewhaleking Jun 17, 2025
4a3be57
Improves CachedFetcher
thewhaleking Jun 24, 2025
5b823ae
Import cleanup
thewhaleking Jun 24, 2025
ac39608
Docstrings
thewhaleking Jun 24, 2025
4808e0e
Handle kwargs in Cache
thewhaleking Jun 24, 2025
2d4b558
Merge pull request #140 from opentensor/feat/thewhaleking/enhance-cac…
thewhaleking Jun 24, 2025
b675fa2
Initial commit to distributing runtimes as objects rather than incons…
thewhaleking Jun 24, 2025
9367d83
WIP check-in
thewhaleking Jun 25, 2025
e7053c5
WIP check-in
thewhaleking Jun 25, 2025
d0cea98
WIP check-in
thewhaleking Jun 25, 2025
7b88b08
WIP check-in
thewhaleking Jun 25, 2025
b84c4c2
Sync optimised actually
thewhaleking Jun 25, 2025
49fc471
Sync optimised actually
thewhaleking Jun 25, 2025
a297127
Trigger no-op
thewhaleking Jun 25, 2025
3f3d507
WIP check-in
thewhaleking Jun 25, 2025
a9976c9
Oepsie
thewhaleking Jun 25, 2025
04574d7
Okay. Got it.
thewhaleking Jun 25, 2025
1aa6590
Fix (Async)SubstrateInterface.metadata
thewhaleking Jun 26, 2025
86d9807
Fix other properties
thewhaleking Jun 26, 2025
58c63d4
Add docs
thewhaleking Jun 26, 2025
a7d92f7
Added support for V14 metadata decoding.
thewhaleking Jun 27, 2025
9564406
More tests
thewhaleking Jun 27, 2025
01f4e71
Apply legacy v14 support to sync substrate
thewhaleking Jun 27, 2025
50e70b2
Fix events decoding.
thewhaleking Jun 27, 2025
d139a17
Converts all AccountIds from bt-decode to SS58
thewhaleking Jun 27, 2025
d205015
Add in selective type conversion
thewhaleking Jun 27, 2025
fe74e25
Add tests
thewhaleking Jun 27, 2025
1c9da05
Adds `fully_exhaust` arg for async query map.
thewhaleking Jun 27, 2025
d64b2cd
Moved integration tests out of unit tests.
thewhaleking Jun 30, 2025
fc2a7bd
Add annotations.
thewhaleking Jun 30, 2025
ce2a21c
Merge branch 'feat/thewhaleking/distribute-runtime' into feat/thewhal…
thewhaleking Jun 30, 2025
451cb5b
Moved tests.
thewhaleking Jun 30, 2025
9b6cd53
Zip optimisation
thewhaleking Jun 30, 2025
747dc32
Merge branch 'feat/thewhaleking/python-ss58-conversion' into feat/the…
thewhaleking Jun 30, 2025
a343edc
Move test
thewhaleking Jun 30, 2025
7c1ece4
Ruff
thewhaleking Jun 30, 2025
f254c7e
Merge pull request #141 from opentensor/feat/thewhaleking/distribute-…
thewhaleking Jun 30, 2025
9bf206c
Merge pull request #143 from opentensor/feat/thewhaleking/python-ss58…
thewhaleking Jun 30, 2025
35728ab
Merge pull request #144 from opentensor/feat/thewhaleking/fully-exhau…
thewhaleking Jun 30, 2025
d0889db
Uses metadata v14 for events
thewhaleking Jun 30, 2025
73a11fe
Ensure ss58 format, if not set at init, is set for the runtime config…
thewhaleking Jun 30, 2025
b98d4cb
Ruff
thewhaleking Jun 30, 2025
49d27a3
Tests
thewhaleking Jun 30, 2025
cc9cd09
Fix
thewhaleking Jun 30, 2025
7de0b38
Ensure extrinsic receipt events use the correct runtime metadata
thewhaleking Jun 30, 2025
be318fd
More backwards compat
thewhaleking Jun 30, 2025
bd870cf
Merge pull request #145 from opentensor/feat/thewhaleking/only-use-v1…
thewhaleking Jun 30, 2025
21b4e58
Updates changelog for 1.4.0
thewhaleking Jul 7, 2025
7b36887
Updates vetsion
thewhaleking Jul 7, 2025
66338d2
Merge pull request #147 from opentensor/changelog/1.4.0
thewhaleking Jul 7, 2025
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 1.4.0 /2025-07-07
* Removes unused imports by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/139
* Improve CachedFetcher by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/140
* Only use Runtime objects in AsyncSubstrateInterface by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/141
* python ss58 conversion by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/143
* fully exhaust query map by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/144
* Only use v14 decoding for events by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/145


**Full Changelog**: https://github.com/opentensor/async-substrate-interface/compare/v1.3.1...v1.4.0

## 1.3.1 /2025-06-11
* Fixes default vals for archive_nodes by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/134
* Adds ability to log raw websockets for debugging. by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/133
Expand Down
838 changes: 538 additions & 300 deletions async_substrate_interface/async_substrate.py

Large diffs are not rendered by default.

311 changes: 187 additions & 124 deletions async_substrate_interface/sync_substrate.py

Large diffs are not rendered by default.

Loading
Loading