DAppLoaderComponent

Source dapp-loader

Dynamic DApp loader component. Handles nested Angular DApps and loads the latest ens address within the url.

The following url will start the following dapps:

Example

Reference Implementation: Dashboard DApp

  • within routes configuration, Example as wildcard route for dynamic DApp registering:
const routes: Routes = [
...,
{
   path: '**',
   component: DAppLoaderComponent,
   data: {
     state: 'unkown',
     navigateBack: true
   }
 }
 ...
  • within html:
<evan-dapp-loader></evan-dapp-loader>