UNPKG

bivcore-insight

Version:

A blockchain explorer for Bitcore

23 lines (20 loc) 660 B
import { Component, Input } from '@angular/core'; import { ChainNetwork } from '../../providers/api/api'; import { CurrencyProvider } from '../../providers/currency/currency'; /** * Generated class for the TransactionSummaryComponent component. * * See https://angular.io/docs/ts/latest/api/core/index/ComponentMetadata-class.html * for more info on Angular Components. */ @Component({ selector: 'transaction-summary', templateUrl: 'transaction-summary.html' }) export class TransactionSummaryComponent { @Input() public tx: any = {}; @Input() public chainNetwork: ChainNetwork; constructor(public currencyProvider: CurrencyProvider) {} }