Add user and transaction models.

This commit is contained in:
Spencer Ofwiti 2020-11-25 10:17:37 +03:00
parent d448083cec
commit 9d6217558c
3 changed files with 28 additions and 0 deletions

View File

@ -1,2 +1,3 @@
export * from './transaction';
export * from './settings';
export * from './user';

View File

@ -1,3 +1,5 @@
import {User} from './user';
export class BlocksBloom {
low: number;
blockFilter: string;
@ -22,7 +24,9 @@ export class Tx {
export class Transaction {
from: string;
sender: User;
to: string;
recipient: User;
token: Token;
tx: Tx;
value: number;
@ -34,5 +38,6 @@ export class Conversion {
sourceToken: Token;
toValue: number;
trader: string;
user: User;
tx: Tx;
}

22
src/app/_models/user.ts Normal file
View File

@ -0,0 +1,22 @@
export class User {
dateRegistered: number;
vcard: {
fn: string;
version: string;
tel: [{
meta: {
TYP: string;
};
value: string[];
}];
};
key: {
ethereum: string[];
};
location: {
latitude: string;
longitude: string;
external: {};
};
selling: string[];
}