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
When the user calls deployer.deployContract, they might want to check the unsignedTx. So there is an unsignedTx field in the DeployContractResult. We store the unsignedTx in the deployment file because if the contract has already been deployed, we can directly return the result from here.
However, it's still possible to remove unsignedTx from the deployment file. We can get tx info from the full node using the tx id, but we cannot directly get the encoded unsigned tx. We can use tx-codec to encode it into a hex string. WDYT?
It's a bit heavy and not necessary since tx id is stored
The text was updated successfully, but these errors were encountered: