Crypto currency isn't static anymore

- Notification when transaction got confirmed
This commit is contained in:
2021-01-17 18:48:00 +01:00
parent 32340eb4cc
commit 59ebcb54c6
10 changed files with 73 additions and 17 deletions

View File

@@ -13,6 +13,7 @@ import { HttpClientModule } from '@angular/common/http';
import { AppRoutingModule } from 'src/routes';
import { NotFoundComponent } from './not-found/not-found.component';
import { CartComponent } from './cart/cart.component';
import { PushNotificationsModule } from 'ng-push-ivy';
const config: SocketIoConfig = { url: 'http://localhost:2009', options: {} };
@@ -31,7 +32,8 @@ const config: SocketIoConfig = { url: 'http://localhost:2009', options: {} };
QRCodeModule,
HttpClientModule,
AppRoutingModule,
SocketIoModule.forRoot(config)
SocketIoModule.forRoot(config),
PushNotificationsModule
],
providers: [],
bootstrap: [AppComponent]