polkascan / py-substrate-interface

Python Substrate Interface
https://polkascan.github.io/py-substrate-interface/
Apache License 2.0
240 stars 114 forks source link

Add info whether an extrinsic is signed or not #244

Closed pranaydotparity closed 1 year ago

pranaydotparity commented 1 year ago

Hey everyone, Can a field be added to the extrinsic data that would show if the extrinsic has been signed or not? As far as I'm aware this information is not available in the extrinsic data at the moment.

arjanz commented 1 year ago

Have you tried extrinsic.signed of the GenericExtrinsic object?

pranaydotparity commented 1 year ago

I checked it just now, Thanks for pointing it out. :) This is what I was looking for.