Skip to content

Commit

Permalink
Update tasks/testChainAdapter.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
pxrl authored Nov 21, 2024
1 parent 5967c3b commit 8b1ee39
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tasks/testChainAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ task("testChainAdapter", "Verify a chain adapter")
const adapterName =
chains[spokeChainId] ?? `${spokeName[0].toUpperCase()}${spokeName.slice(1).toLowerCase()}_Adapter`;

let { address: adapterAddress, abi: adapterAbi } = await deployments.get(adapterName);
adapterAddress = "0x370B162f1e8335B368C77a3004F8c2C7BA18d451";
const { address: adapterAddress, abi: adapterAbi } = await deployments.get(adapterName);
const adapter = new ethers.Contract(adapterAddress, adapterAbi, provider);
const tokenSymbol = args.token.toUpperCase();
const tokenAddress = TOKEN_SYMBOLS_MAP[tokenSymbol].addresses[hubChainId];
Expand Down

0 comments on commit 8b1ee39

Please sign in to comment.