Skip to content

Commit

Permalink
fix: update scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
sakulstra committed Apr 23, 2024
1 parent dddd239 commit c7d42f8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
5 changes: 1 addition & 4 deletions scripts/generateAddresses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,7 @@ async function main() {
abis,
].flat();

const jsExports = [
...imports.map((f) => f.js).flat(),
"export * as AaveV3Harmony from './AaveV3Harmony';",
];
const jsExports = imports.map((f) => f.js).flat();
writeFileSync(`./src/ts/AaveAddressBook.ts`, prefixWithGeneratedWarning(''));
jsExports.map((jsExport) => appendFileSync('./src/ts/AaveAddressBook.ts', `${jsExport}\n`));

Expand Down
1 change: 0 additions & 1 deletion src/ts/AaveAddressBook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,3 @@ export {IStkAaveToken_ABI} from './abis/IStkAaveToken';
export {IATokenWithDelegation_ABI} from './abis/IATokenWithDelegation';
export {IStaticATokenFactory_ABI} from './abis/IStaticATokenFactory';
export {IStaticATokenLM_ABI} from './abis/IStaticATokenLM';
export * as AaveV3Harmony from './AaveV3Harmony';

0 comments on commit c7d42f8

Please sign in to comment.