• smartcontracts's avatar
    fix(ct): improve bundle size (#3337) · 299157e7
    smartcontracts authored
    Significantly improves the bundle size of the contracts package by
    exporting deployments more intentionally and by removing certain
    unnecessary exports.
    299157e7
generate-deployed-artifacts.ts 1.77 KB
import path from 'path'
import fs from 'fs'

import glob from 'glob'

/**
 * Script for automatically generating a TypeScript file for retrieving deploy artifact JSON files.
 * We do this to make sure that this package remains browser compatible.
 */
const main = async () => {
  let content = `
  /* eslint-disable */
  /*
  THIS FILE IS AUTOMATICALLY GENERATED.
  DO NOT EDIT.
  */
  `

  const deploymentNames = fs
    .readdirSync(path.resolve(__dirname, '../deployments'), {
      withFileTypes: true,
    })
    .filter((entry) => {
      return entry.isDirectory()
    })
    .map((entry) => {
      return entry.name
    })

  const artifactNames = []
  const pattern = /\\/g

  for (const deploymentName of deploymentNames) {
    const deploymentArtifacts = glob.sync(
      path.join(
        path.resolve(__dirname, '../deployments'),
        deploymentName,
        '/*.json'
      )
    )

    for (const artifactPath of deploymentArtifacts) {
      const relPath = path
        .relative(__dirname, artifactPath)
        .replace(pattern, '/')
      const contractName = path.basename(artifactPath, '.json')
      const artifactName = `${deploymentName}__${contractName}`.replace(
        /-/g,
        '_'
      )
      artifactNames.push(artifactName)

      // eslint-disable-next-line @typescript-eslint/no-var-requires
      const artifact = require(relPath)
      content += `const ${artifactName} = { abi: ${JSON.stringify(
        artifact.abi
      )}, address: '${artifact.address}' }\n`
    }
  }

  content += `
  export const getDeployedContractArtifact = (name: string, network: string): any => {
    return {
      ${artifactNames.join(',\n')}
    }[(network + '__' + name).replace(/-/g, '_')]
  }
  `

  fs.writeFileSync(`./src/contract-deployed-artifacts.ts`, content)
}

main()