Skip to content

Commit 0dd5e94

Browse files
author
Justin Kook
committed
Merge branch 'feature/eth-module-squashed' of github.com:micahriggan/bitcore into eth
2 parents da01cba + d802dd1 commit 0dd5e94

33 files changed

+1395
-1836
lines changed

package-lock.json

Lines changed: 1324 additions & 1324 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/insight/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"tslint-angular": "^1.1.2",
8181
"tslint-config-prettier": "^1.15.0",
8282
"tslint-eslint-rules": "4.1.1",
83-
"typescript": "^3.3.4000",
83+
"typescript": "2.6.2",
8484
"webdriver-manager": "^12.1.1"
8585
},
8686
"engines": {

packages/insight/src/components/coin/coin.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</ion-chip>
2929
<ion-chip item-end color="default" class="size-fixed">
3030
<ion-label>
31-
{{ currencyProvider.getConvertedNumber(coin.value, chainNetwork.chain) | number:'1.0-8' }}
31+
{{ currencyProvider.getConvertedNumber(coin.value) | number:'1.0-8' }}
3232
{{ currencyProvider.currencySymbol }}
3333
</ion-label>
3434
</ion-chip>
@@ -70,7 +70,7 @@
7070
</ion-chip>
7171
<ion-chip item-end class="size-fixed">
7272
<ion-label color="danger">
73-
- {{ currencyProvider.getConvertedNumber(coin.value, chainNetwork.chain) | number:'1.0-8' }}
73+
- {{ currencyProvider.getConvertedNumber(coin.value) | number:'1.0-8' }}
7474
{{ currencyProvider.currencySymbol }}
7575
</ion-label>
7676
</ion-chip>

packages/insight/src/components/components.module.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import { NgModule } from '@angular/core';
22
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
33
import { IonicModule } from 'ionic-angular';
4-
import { SplitPipe } from '../pipes/split/split';
54

65
@NgModule({
7-
declarations: [SplitPipe],
6+
declarations: [],
87
imports: [FormsModule, IonicModule, ReactiveFormsModule],
98
exports: [],
109
entryComponents: [],

packages/insight/src/components/transaction-details-eth/transaction-details-eth.html

Lines changed: 0 additions & 114 deletions
This file was deleted.

packages/insight/src/components/transaction-details-eth/transaction-details-eth.module.ts

Lines changed: 0 additions & 10 deletions
This file was deleted.

packages/insight/src/components/transaction-details-eth/transaction-details-eth.scss

Lines changed: 0 additions & 70 deletions
This file was deleted.

packages/insight/src/components/transaction-details-eth/transaction-details-eth.ts

Lines changed: 0 additions & 55 deletions
This file was deleted.

packages/insight/src/components/transaction-details/transaction-details.module.ts

Lines changed: 0 additions & 10 deletions
This file was deleted.

packages/insight/src/components/transaction-list/transaction-list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<ion-grid>
55
<ion-row *ngFor="let tx of transactions; let i = index">
66
<ion-col col-12 *ngIf="i < limit">
7-
<transaction-details [tx]="tx" [chainNetwork]="chainNetwork"></transaction-details>
7+
<transaction [tx]="tx" [chainNetwork]="chainNetwork"></transaction>
88
</ion-col>
99
</ion-row>
1010
<ion-row *ngIf="limit < transactions.length">

0 commit comments

Comments
 (0)