-
Notifications
You must be signed in to change notification settings - Fork 6
Multi-language client SDKs with complete transaction submission #202
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
Open
mudigal
wants to merge
48
commits into
main
Choose a base branch
from
naren-client
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 19 commits
Commits
Show all changes
48 commits
Select commit
Hold shift + click to select a range
9422450
feat(sdk): Implement Rust and TypeScript Client SDKs
mudigal 708a43b
docs(sdk): Add Comprehensive SDK Documentation Book
mudigal 0f33af5
chore: update Cargo.lock after adding SDK dependencies
mudigal f20f319
fix(sdk): Resolve test failures and add build utilities
mudigal ebd210e
Optimizing the README with sdk-book
mudigal 8cd29de
fix: Warnings while building
mudigal 83bf05b
fixing formatting issues through check-fmt
mudigal 9fec966
fix(sdk): resolve all clippy warnings and CI issues
mudigal 30f03a0
fix(sdk): add runtime-benchmarks and try-runtime features for workspaβ¦
mudigal 70d5349
fix(sdk): propagate runtime-benchmarks and try-runtime to sp-runtime
mudigal e5902e7
fix(sdk): add trailing commas in Cargo.toml arrays
mudigal 8e8f878
fix(sdk): consolidate MAX_CHUNK_SIZE to 2 MiB per Bitswap limit
bkontur 20f2301
fix(sdk): centralize chunk size constants and change max to 2 MiB
mudigal 5f92b4c
Merge branch 'main' into naren-client
mudigal 7078cbd
fix(sdk): remove extra blank line in utils.rs
mudigal f4be514
fix(sdk): resolve all clippy warnings
mudigal a85176f
fix(sdk): update docs and error messages to reflect 2 MiB chunk limit
bkontur e7140a3
Merge remote-tracking branch 'origin/naren-client' into naren-client
bkontur e01d510
feat(examples): add Rust authorize-and-store example using bulletin-sβ¦
bkontur 76722fd
feat(examples): add Rust authorize-and-store example using bulletin-sβ¦
bkontur 9293e31
fix(example): add ProvideCidConfig signed extension for Bulletin Chain
bkontur 54b5cdb
Merge remote-tracking branch 'origin/main' into naren-client
bkontur cb7b428
feat(sdk): add transaction submitter implementations
mudigal 64e8f79
feat(sdk): add from_url constructor to SubxtSubmitter
mudigal 898d608
feat(examples): update rust-authorize-and-store to use from_url pattern
mudigal b4d66c3
docs(sdk-book): add comprehensive submitters documentation
mudigal 48fcd23
docs(sdk-book): update chunked uploads guide for AsyncBulletinClient
mudigal 6edbe3a
fix: resolve CI failures in SDK and example code
mudigal 64c8069
fix(sdk): return error for unsupported SHA2-512 hash algorithm
bkontur fbaeea5
Merge remote-tracking branch 'origin/main' into naren-client
bkontur acbff2f
fmt
bkontur 2bb1a52
feat: add automatic authorization checking to fail fast before uploads
mudigal 5b638ba
feat: add authorization expiration checking
mudigal fe46c73
feat: unify store() API with automatic chunking
mudigal f896f2b
fix: update rust-authorize-and-store example for unified store() API
mudigal 72e0007
feat(typescript): unify store() API with automatic chunking
mudigal a1ca91f
feat(typescript): add authorization pre-flight checking
mudigal b8f6ee0
docs(typescript): update SDK book for unified API and authorization cβ¦
mudigal ddc0296
Merge branch 'main' into naren-client
mudigal c59eb27
Update docs/sdk-book/src/concepts/authorization.md
mudigal 3994785
Update docs/sdk-book/src/concepts/manifests.md
mudigal b4299d7
Update docs/sdk-book/src/concepts/README.md
mudigal 80f7836
Consolidate integration test commands into unified just recipe
mudigal 4579113
Simplify store() API by moving options to separate method
mudigal f0d9d1d
Improve authorization documentation
mudigal 8f505e8
Address remaining PR #202 review comments
mudigal 210036e
Refactor rust-authorize-and-store example to use subxt metadata codegen
mudigal 4c540b3
Update docs to use generic node URLs instead of hardcoded localhost:1β¦
mudigal File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have a lot of just commands that do only one thing. Why not just (heh) have a just run examples command?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point! I've consolidated them into a single
run-all-testsrecipe that calls all the individual tests in sequence. Will push those changes.