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
Can determine from the runtime subxt metadata which the target chain supports and then construct a transaction using that. At the moment e.g. the Substrate default node-runtime implements AssetTip whereas both substrate-contracts-node and the cumulus contracts parachain implement the PlainTip.See #523.
This means that at the moment cargo-contract will only support interacting with contracts on the latter.
Additionally we could alter the names of the PolkadotExtrinsicParams and SubstrateExtrinsicParams aliases in subxt
The text was updated successfully, but these errors were encountered:
Should dynamically detect whether to use:
BaseExtrinsicParams<T, PlainTip>
BaseExtrinsicParams<T, AssetTip>
Can determine from the runtime subxt metadata which the target chain supports and then construct a transaction using that. At the moment e.g. the Substrate default
node-runtime
implementsAssetTip
whereas bothsubstrate-contracts-node
and the cumulus contracts parachain implement thePlainTip
.See #523.This means that at the moment
cargo-contract
will only support interacting with contracts on the latter.Additionally we could alter the names of the
PolkadotExtrinsicParams
andSubstrateExtrinsicParams
aliases insubxt
The text was updated successfully, but these errors were encountered: