Type Alias BoostRegistryConfig

Instantiation options for a Boost Registry.

To target Boost's Registry, omit the address field. Otherwise, supply a custom address to a previously deployed custom Boost Registry. You can also pass { address: null } if you are intending to deploy a new Boost Registry.

let registry = new BoostRegistry({ config, account })
// or
registry = new BoostRegistry({ config, account, address: CUSTOM_ADDRESS })
// or
registry = new BoostRegistry({ config, account, address: null })
await registry.deploy()