We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a829b8 commit da04645Copy full SHA for da04645
1 file changed
script/transactionStatus.js
@@ -111,6 +111,10 @@ const checkTransactionStatus = async () => {
111
console.log(`Hash: ${tx.hash}, Status: ${status}, ChainId: ${writePayloads[0].chainSlug}`);
112
console.log(`OnChainAddress: ${deployerDetails.onChainAddress}`);
113
console.log(`ForwarderAddress: ${deployerDetails.forwarderAddress}`);
114
+ if (deployerDetails.isForwarderDeployed !== true) {
115
+ console.error(`ERROR: ForwarderAddress NOT deployed. Please reach out to the SOCKET team.`);
116
+ process.exit(1);
117
+ }
118
} else {
119
console.log(`Hash: ${tx.hash}, Status: ${status}, ChainId: ${chainId}`);
120
}
0 commit comments