diff --git a/typescript/sdk/src/deploy/HyperlaneDeployer.ts b/typescript/sdk/src/deploy/HyperlaneDeployer.ts index 7aad49e26..4ee4acc9e 100644 --- a/typescript/sdk/src/deploy/HyperlaneDeployer.ts +++ b/typescript/sdk/src/deploy/HyperlaneDeployer.ts @@ -74,7 +74,9 @@ export abstract class HyperlaneDeployer< const signerUrl = await this.multiProvider.tryGetExplorerAddressUrl( chain, ); - this.logger(`Deploying to ${chain} from ${signerUrl}`); + const signerAddress = await this.multiProvider.getSignerAddress(chain); + const fromString = signerUrl || signerAddress; + this.logger(`Deploying to ${chain} from ${fromString}`); this.startingBlockNumbers[chain] = await this.multiProvider .getProvider(chain) .getBlockNumber();