Resources
-Here are some links to help you get started:
- - - - -Next Steps
-What do you want to do next with your app?
- - - -ng generate component xyz-
ng add @angular/material-
ng add @angular/pwa-
ng add _____-
ng test-
ng build --prod-
diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index d425c6f..be98fba 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -1,7 +1,9 @@ import { NgModule } from '@angular/core'; import { Routes, RouterModule } from '@angular/router'; -const routes: Routes = []; +const routes: Routes = [ + { path: '', loadChildren: () => import('./pages/pages.module').then(m => m.PagesModule) } +]; @NgModule({ imports: [RouterModule.forRoot(routes)], diff --git a/src/app/app.component.html b/src/app/app.component.html index e48d8c1..0680b43 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -1,534 +1 @@ - - - - - - - - - - - - -
- -Here are some links to help you get started:
- - - - -What do you want to do next with your app?
- - - -ng generate component xyz-
ng add @angular/material-
ng add @angular/pwa-
ng add _____-
ng test-
ng build --prod-
Sender: {{transaction.from}}
+Recipient: {{transaction.to}}
+Amount: {{transaction.value | currency: transaction.token.name + ' ' }}
+Address: {{transaction.token.address}}
+Name: {{transaction.token.name}}
+Symbol: {{transaction.token.symbol}}
+Block: {{transaction.tx.block}}
+Index: {{transaction.tx.txIndex}}
+Hash: {{transaction.tx.txHash}}
+Success: {{transaction.tx.success}}
+Timestamp: {{transaction.tx.timestamp}}
+Sender | +Recipient | +Value | ++ |
---|---|---|---|
{{transaction.from}} | +{{transaction.to}} | +{{transaction.value | currency: transaction.token.name + ' '}} | ++ | +
From | +To | +Value | ++ |