1import {runTypeChain, glob} from 'typechain';234async function main() {5 const cwd = process.cwd();67 // find all files matching the glob8 const allFiles = glob(cwd, ['./ABI/*.json']);910 const result = await runTypeChain({11 cwd,12 filesToProcess: allFiles,13 allFiles,14 outDir: 'ABIGEN',15 target: 'web3-v1',16 });17}1819main().catch(console.error);difftreelog
source
tests/src/eth/evmToSubstrate/abigen.ts362 Bsourcehistory