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
The current E2E testing framework still contains a hardcoded
#[subxt::subxt(runtime_metadata_path = "metadata/contracts-node.scale")]pub(super)mod api {}
Instead of requiring this test fixture in the ink repository (exported via subxt metadata > contracts-node.scale while the node is running), we should fetch it automatically, getting rid of requiring users to do this step.
Follow-up to #1395.
The current E2E testing framework still contains a hardcoded
Instead of requiring this test fixture in the
ink
repository (exported viasubxt metadata > contracts-node.scale
while the node is running), we should fetch it automatically, getting rid of requiring users to do this step.With paritytech/subxt@d03e599,
subxt
got the possibility of supplying a#[subxt::subxt(runtime_metadata_url = "wss://rpc.polkadot.io:443")]
We already support
#[ink_e2e::test(ws_url = "…")]
, so ideally we would use that supplied URL for theruntime_metadata_url
.The text was updated successfully, but these errors were encountered: