Skip to main content Link Search Menu Expand Document (external link)

blockchain.ts

The blockchain.ts file contains the configuration for all chain deployments of the dApp. The blockchain.ts file contains the following:

export const chainDeploy: ChainDeploy[] = [
  {
    chainID: 'network ID matching that which a deployed network identifies by',
    config: [
      {
        name: 'Human-Readable Network Name',
        lcd: 'URL to LCD',
        forge:
          'deployed forge contract address',
        token:
          'deployed governance token ($YFD) contract address'
      }
    ]
  }
];