Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
4c27bd8
Starting new subxt crate; configs implemented
jsdw Nov 25, 2025
fbde20c
WIP: Backends added, Archive backend created
jsdw Nov 28, 2025
b216240
WIP more backend work
jsdw Nov 28, 2025
a338120
WIP: Combined backend done, client in progress
jsdw Dec 1, 2025
6616c69
Get OnlineClientAtBlock working
jsdw Dec 1, 2025
a6a384c
Merge branch 'master' into jsdw-subxt-new
jsdw Dec 2, 2025
e4028e5
Add ability to stream blocks and tidy errors
jsdw Dec 2, 2025
03fd050
WIP: Add support in config for transaction creation and begin porting…
jsdw Dec 2, 2025
0a617eb
Add metadata types to our legacy type registry too
jsdw Dec 3, 2025
c1ebceb
add onlineclient.at_block_hash_and_number for the event that you know…
jsdw Dec 3, 2025
b85a412
Impl most transaction APIs. TxProgress and Events next
jsdw Dec 3, 2025
60d8ce7
Merge branch 'master' into jsdw-subxt-new
jsdw Dec 3, 2025
535a132
Finish first draft of transactions, extrinsics (blocks) and events
jsdw Dec 4, 2025
5456c18
Storage APIs added and compiling
jsdw Dec 9, 2025
e0f4630
Simplify storage APIs
jsdw Dec 9, 2025
4d2b4a6
First pass adding back the main APIs
jsdw Dec 9, 2025
744a513
make offline event and extrinsic ops possible
jsdw Dec 9, 2025
b75ce69
Everything has lifetime from ClientAtBlock
jsdw Dec 9, 2025
15a7534
Merge branch 'master' into jsdw-subxt-new
jsdw Dec 9, 2025
02d0c12
Move subxt-new to be the new subxt, and get first example working
jsdw Dec 11, 2025
6215b15
Add a method to return the block header at a given block
jsdw Dec 11, 2025
37d4cf7
Get workspace compiling via 'cargo check'
jsdw Dec 12, 2025
34eeea2
More examples and get compiling with deny(missing_docs)
jsdw Dec 15, 2025
ae820a2
Add a basic book and fix broken docs
jsdw Dec 15, 2025
dfabd66
DecodeAsEvent and DecodeAsExtrinsic; make easier to implement by remo…
jsdw Dec 15, 2025
4d47acd
Add ability to iterate and visit event fields and storage values
jsdw Dec 15, 2025
8537325
Simplify paths to extrinsic and storage types needed for .find
jsdw Dec 15, 2025
82590b1
Remove unused deps
jsdw Dec 15, 2025
e9bb756
More exampels and ensure light client things work. Remove unstable fr…
jsdw Dec 16, 2025
c1d30da
Fix clippy bits
jsdw Dec 16, 2025
4819b00
Get WASM example compiling via 'trunk serve'
jsdw Dec 16, 2025
2602ccb
fmt
jsdw Dec 17, 2025
5b393c4
Update the changelog for 0.50 release
jsdw Dec 17, 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
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ jobs:

- name: Run clippy
run: |
cargo clippy --all-targets --features unstable-light-client -- -D warnings
cargo clippy --all-targets --features light-client -- -D warnings
cargo clippy -p subxt-lightclient --no-default-features --features web -- -D warnings
cargo clippy -p subxt --no-default-features --features web -- -D warnings
cargo clippy -p subxt --no-default-features --features web,unstable-light-client -- -D warnings
cargo clippy -p subxt --no-default-features --features web,light-client -- -D warnings

- if: "failure()"
uses: "andymckay/cancel-action@a955d435292c0d409d104b57d8e78435a93a6ef1" # v0.5
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: clippy
args: -p subxt --no-default-features --features web,unstable-light-client,jsonrpsee --target wasm32-unknown-unknown -- -D warnings
args: -p subxt --no-default-features --features web,light-client,jsonrpsee --target wasm32-unknown-unknown -- -D warnings

- if: "failure()"
uses: "andymckay/cancel-action@a955d435292c0d409d104b57d8e78435a93a6ef1" # v0.5
Expand Down Expand Up @@ -433,7 +433,7 @@ jobs:
uses: actions-rs/[email protected]
with:
command: test
args: --release --package integration-tests --features unstable-light-client
args: --release --package integration-tests --features light-client

- if: "failure()"
uses: "andymckay/cancel-action@a955d435292c0d409d104b57d8e78435a93a6ef1" # v0.5
Expand Down
Loading
Loading