Skip to content

Commit

Permalink
fix: ExplorerFamily casing & /dist/evm/ -> /core-utils/evm/
Browse files Browse the repository at this point in the history
  • Loading branch information
ljankovic-txfusion committed Nov 1, 2024
1 parent 44ca8ef commit b85b075
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions solidity/test/lib/mailboxes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import {
LegacyMultisigIsm,
TestMailbox,
TestMerkleTreeHook,
} from '../../dist/evm/types';
import { DispatchEvent } from '../../dist/evm/types/contracts/Mailbox';
} from '../../core-utils/evm/types';
import { DispatchEvent } from '../../core-utils/evm/types/contracts/Mailbox';

export type MessageAndProof = {
proof: MerkleProof;
Expand Down
2 changes: 1 addition & 1 deletion typescript/sdk/src/deploy/HyperlaneDeployer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ export abstract class HyperlaneDeployer<

const { family } = this.multiProvider.getExplorerApi(chain);
const { technicalStack } = this.multiProvider.getChainMetadata(chain);
const isZKSyncExplorer = family === ExplorerFamily.zksync;
const isZKSyncExplorer = family === ExplorerFamily.ZKSync;
const isZKSyncChain = technicalStack === ChainTechnicalStack.ZKSync;
const signer = this.multiProvider.getSigner(chain);
const artifact = await getZKArtifactByContractName(contractName);
Expand Down
2 changes: 1 addition & 1 deletion typescript/sdk/src/metadata/chainMetadataTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export enum ExplorerFamily {
Etherscan = 'etherscan',
Blockscout = 'blockscout',
Routescan = 'routescan',
zksync = 'zksync',
ZKSync = 'zksync',
Other = 'other',
}

Expand Down
2 changes: 1 addition & 1 deletion typescript/sdk/src/providers/MultiProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ export class MultiProvider<MetaExt = {}> extends ChainMetadataManager<MetaExt> {
await this.handleTx(chainNameOrId, contract.deployTransaction);

this.logger.trace(
`Deploying contract ${contract.address} on ${chainNameOrId}:`,
`Contract deployed at ${contract.address} on ${chainNameOrId}:`,
{ transaction: deployTx },
);
}
Expand Down

0 comments on commit b85b075

Please sign in to comment.