Skip to content

Commit

Permalink
Remove unused change
Browse files Browse the repository at this point in the history
  • Loading branch information
ltyu committed Mar 28, 2024
1 parent d383bf0 commit 073f1ea
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions typescript/sdk/src/router/ProxiedRouterDeployer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,13 @@ export abstract class ProxiedRouterDeployer<
* @param chain Name of chain
* @param config Router config
*/
abstract initializeArgs<
Omitted extends Omit<Factories, 'proxiedAdmin' | 'timelockController'>,
RouterKey extends keyof Omitted,
>(
abstract initializeArgs<RouterKey extends keyof Factories>(
chain: ChainName,
config: Config,
): Promise<
Parameters<Awaited<ReturnType<Omitted[RouterKey]['deploy']>>['initialize']>
Parameters<
Awaited<ReturnType<Factories[RouterKey]['deploy']>>['initialize']
>
>;

async deployContracts(
Expand Down

0 comments on commit 073f1ea

Please sign in to comment.