Show fiat value of totalRecieved for addresses.
Rename fee to fee burnt.
This commit is contained in:
		
							parent
							
								
									518629e144
								
							
						
					
					
						commit
						291134c6e0
					
				
							
								
								
									
										1
									
								
								backend/.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								backend/.gitignore
									
									
									
									
										vendored
									
									
								
							@ -43,4 +43,3 @@ testem.log
 | 
			
		||||
Thumbs.db
 | 
			
		||||
 | 
			
		||||
cache.json
 | 
			
		||||
blocks.json
 | 
			
		||||
 | 
			
		||||
@ -26,7 +26,7 @@
 | 
			
		||||
              </tr>
 | 
			
		||||
              <tr>
 | 
			
		||||
                <td>Final balance</td>
 | 
			
		||||
                <td>{{ (totalReceived - totalSent) / 100 | number: '1.2-2' }} BSQ</td>
 | 
			
		||||
                <td>{{ (totalReceived - totalSent) / 100 | number: '1.2-2' }} BSQ (<app-bsq-amount [bsq]="totalReceived - totalSent" [forceFiat]="true" [green]="true"></app-bsq-amount>)</td>
 | 
			
		||||
              </tr>
 | 
			
		||||
            </tbody>
 | 
			
		||||
          </table>
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
import { Component, ChangeDetectionStrategy, OnInit, Input } from '@angular/core';
 | 
			
		||||
import { Component, ChangeDetectionStrategy, Input, OnChanges } from '@angular/core';
 | 
			
		||||
import { IconPrefix, IconName } from '@fortawesome/fontawesome-common-types';
 | 
			
		||||
 | 
			
		||||
@Component({
 | 
			
		||||
@ -7,7 +7,7 @@ import { IconPrefix, IconName } from '@fortawesome/fontawesome-common-types';
 | 
			
		||||
  styleUrls: ['./bisq-icon.component.scss'],
 | 
			
		||||
  changeDetection: ChangeDetectionStrategy.OnPush,
 | 
			
		||||
})
 | 
			
		||||
export class BisqIconComponent implements OnInit {
 | 
			
		||||
export class BisqIconComponent implements OnChanges {
 | 
			
		||||
  @Input() txType: string;
 | 
			
		||||
 | 
			
		||||
  iconProp: [IconPrefix, IconName] = ['fas', 'leaf'];
 | 
			
		||||
@ -15,7 +15,7 @@ export class BisqIconComponent implements OnInit {
 | 
			
		||||
 | 
			
		||||
  constructor() { }
 | 
			
		||||
 | 
			
		||||
  ngOnInit() {
 | 
			
		||||
  ngOnChanges() {
 | 
			
		||||
    switch (this.txType) {
 | 
			
		||||
      case 'UNVERIFIED':
 | 
			
		||||
        this.iconProp[1] = 'question';
 | 
			
		||||
 | 
			
		||||
@ -42,7 +42,7 @@
 | 
			
		||||
          </tr>
 | 
			
		||||
          <tr>
 | 
			
		||||
            <td>Market cap</td>
 | 
			
		||||
            <td><app-fiat [value]="price * (stats.minted - stats.burnt) / 100 "></app-fiat></td>
 | 
			
		||||
            <td><app-fiat [value]="price * (stats.minted - stats.burnt) / 100"></app-fiat></td>
 | 
			
		||||
          </tr>
 | 
			
		||||
        </tbody>
 | 
			
		||||
      </table>
 | 
			
		||||
 | 
			
		||||
@ -34,7 +34,7 @@
 | 
			
		||||
          <table class="table table-borderless table-striped">
 | 
			
		||||
            <tbody>
 | 
			
		||||
                <tr>
 | 
			
		||||
                  <td class="td-width">Fee burnt</td>
 | 
			
		||||
                  <td class="td-width">Burnt</td>
 | 
			
		||||
                  <td>
 | 
			
		||||
                    {{ bisqTx.burntFee / 100 | number: '1.2-2' }} BSQ (<app-bsq-amount [bsq]="bisqTx.burntFee" [forceFiat]="true" [green]="true"></app-bsq-amount>)
 | 
			
		||||
                </tr>
 | 
			
		||||
 | 
			
		||||
@ -59,7 +59,7 @@
 | 
			
		||||
 | 
			
		||||
  <div>
 | 
			
		||||
    <div class="float-left mt-2-5" *ngIf="showConfirmations && tx.burntFee">
 | 
			
		||||
      Fee: {{ tx.burntFee / 100 | number: '1.2-2' }} BSQ (<app-bsq-amount [bsq]="tx.burntFee" [forceFiat]="true" [green]="true"></app-bsq-amount>)
 | 
			
		||||
      Burnt: {{ tx.burntFee / 100 | number: '1.2-2' }} BSQ (<app-bsq-amount [bsq]="tx.burntFee" [forceFiat]="true" [green]="true"></app-bsq-amount>)
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
    <div class="float-right">
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user