You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like there's no way to use subxt for chains that don't use the balances pallet.
If one doesn't implement frame::Balances on the custom subxt Runtime it complains that System requires it to be implemented.
I then tried to use a custom System that didn't have this restriction, but then I could no longer use the derive Event macro since it requires System. And so the cascading continues.
There was also some error thrown in there about the DefaultExtra not being valid due missing the impl subxt::Balances.
The text was updated successfully, but these errors were encountered:
It seems like there's no way to use
subxt
for chains that don't use thebalances
pallet.If one doesn't implement
frame::Balances
on the custom subxtRuntime
it complains thatSystem
requires it to be implemented.I then tried to use a custom System that didn't have this restriction, but then I could no longer use the derive
Event
macro since it requiresSystem
. And so the cascading continues.There was also some error thrown in there about the
DefaultExtra
not being valid due missing theimpl subxt::Balances
.The text was updated successfully, but these errors were encountered: