Merge branch 'master' into spencer/docs

# Conflicts:
#	package-lock.json
This commit is contained in:
Spencer Ofwiti
2021-06-14 14:16:21 +03:00
18 changed files with 969 additions and 5325 deletions

View File

@@ -2,7 +2,7 @@ import { Pipe, PipeTransform } from '@angular/core';
@Pipe({ name: 'tokenRatio' })
export class TokenRatioPipe implements PipeTransform {
transform(value: any, ...args): any {
transform(value: any = 0, ...args): any {
return Number(value) / Math.pow(10, 6);
}
}