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
_ => eyre::bail!("Dynamic linking not supported in `create` command - deploy the library contract first, then provide the address to link at compile time")
55
+
};
56
+
52
57
// Add arguments to constructor
53
58
let provider = Provider::<Http>::try_from(self.eth.rpc_url()?)?;
let contract = contract_bytecode.into_compact_contract().unwrap();
288
+
let contract = CompactContract::from(contract_bytecode).try_into().expect("Couldn't create contract from bytecodes, either abi, bytecode, or deployed_bytecode were empty.");
0 commit comments