Skip to content

Commit

Permalink
fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
ltyu committed Apr 30, 2024
2 parents 0ccaa38 + 3686051 commit 3632eb8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
17 changes: 12 additions & 5 deletions typescript/sdk/src/crud/EvmWarpCrudModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,22 @@ export class EvmERC20WarpCrudModule extends CrudModule<

constructor(
protected readonly multiProvider: MultiProvider,
args: CrudModuleArgs<
TokenRouterConfig,
HyperlaneAddresses<HypERC20Factories>
args: Omit<
CrudModuleArgs<
ProtocolType.Ethereum,
TokenRouterConfig,
HyperlaneAddresses<HypERC20Factories>
>,
'provider'
>,
) {
super(args);
super({
...args,
provider: multiProvider.getProvider(args.chain),
});

this.reader = new EvmERC20WarpRouteReader(multiProvider, args.chain);
this.deployer = new HypERC20Deployer(multiProvider);
this.deployer = new HypERC20Deployer(this.multiProvider);
}

/**
Expand Down
1 change: 1 addition & 0 deletions typescript/sdk/src/token/deploy.hardhat-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ describe.only('TokenDeployer', async () => {
const ismFactory = new HyperlaneIsmFactory(factories, multiProvider);
coreApp = await new TestCoreDeployer(multiProvider, ismFactory).deployApp();
routerConfigMap = coreApp.getRouterConfig(signer.address);
routerConfigMap = coreApp.getRouterConfig(signer.address);
config = objMap(
routerConfigMap,
(chain, c): HypERC20Config => ({
Expand Down

0 comments on commit 3632eb8

Please sign in to comment.