paritytech / substrate-airgapped

Tools to facilitate an air-gapped construction, decoding, and signing flow for txs of `FRAME`-based chains.
6 stars 1 forks source link

Difference bettween substrate-airgapped and subtxt ? #28

Open lucgerrits opened 2 years ago

lucgerrits commented 2 years ago

What's the main difference bettween this repo substrate-airgapped and subtxt ?

emostov commented 2 years ago

This repo is not actively maintained and never was production ready. On the other hand subxt is actively being built out and will likely have a commitment to long term maintenance (@dvdplm could likely confirm if the latter is true).

substrate-airgapped (the below are not necessarily implemented but are goals):

subxt:

I think the original use case was constructing, signing, and submitting transactions, but it appears to be expanding support. I basically think of it as the equivalent to polkadot-js/api, but in rust. It wraps RPC calls, such as transaction submission, event listening, and storage queries, in an easy to use way. If you are writing a rust application or library that will support RPC interaction with a substrate node this is probably a good place to start.