Skip to content

Commit

Permalink
fix: ICA_ROUTING on isIsmStatic
Browse files Browse the repository at this point in the history
  • Loading branch information
mortezashojaei committed Dec 10, 2024
1 parent a0fe63d commit b7e3c81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class MultiProtocolSignerFactory {

switch (protocol) {
case ProtocolType.Ethereum:
if (technicalStack === ChainTechnicalStack.ZkSync)
if (technicalStack === ChainTechnicalStack.ZKSync)
return new ZKSyncSignerStrategy(strategyConfig);
return new EthereumSignerStrategy(strategyConfig);
default:
Expand Down
1 change: 1 addition & 0 deletions typescript/sdk/src/deploy/protocolDeploymentConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export const isIsmStatic: Record<IsmType, boolean> = {
[IsmType.WEIGHTED_MERKLE_ROOT_MULTISIG]: true,
[IsmType.WEIGHTED_MESSAGE_ID_MULTISIG]: true,
[IsmType.STORAGE_AGGREGATION]: false,
[IsmType.ICA_ROUTING]: true,
} as const;

/**
Expand Down

0 comments on commit b7e3c81

Please sign in to comment.