Since the latest client versions don't include the runtimes, we cannot run the testnet with pollkadot-local or kusama-local, only with westend-local and rococo-local. This raises two issues, the first one is that the example polkadot.ts no longer works, since it includes paying with a sufficient asset passed as a number, but both rococo and westend implement the asset-conversion version of the SignedExtensionChargeAssetTxPayment, which expects an objects, so the example errors out. The other issue, is that we should rename all of our polkadot mentions to rococo in order to correctly reflect the new situation.
Since the latest client versions don't include the runtimes, we cannot run the testnet with
pollkadot-local
orkusama-local
, only withwestend-local
andrococo-local
. This raises two issues, the first one is that the examplepolkadot.ts
no longer works, since it includes paying with a sufficient asset passed as anumber
, but bothrococo
andwestend
implement the asset-conversion version of theSignedExtension
ChargeAssetTxPayment
, which expects anobjects
, so the example errors out. The other issue, is that we should rename all of ourpolkadot
mentions torococo
in order to correctly reflect the new situation.