2019-04-23 13:22:14 -04:00
|
|
|
// @flow
|
|
|
|
declare type Transaction = {
|
|
|
|
amount: number,
|
|
|
|
claim_id: string,
|
|
|
|
claim_name: string,
|
|
|
|
fee: number,
|
|
|
|
nout: number,
|
|
|
|
txid: string,
|
|
|
|
type: string,
|
|
|
|
date: Date,
|
|
|
|
};
|
2019-05-10 01:02:03 -04:00
|
|
|
|
|
|
|
declare type Support = {
|
|
|
|
address: string,
|
|
|
|
amount: string,
|
|
|
|
claim_id: string,
|
|
|
|
confirmations: number,
|
|
|
|
height: string,
|
|
|
|
is_change: string,
|
|
|
|
is_mine: string,
|
|
|
|
name: string,
|
2019-11-05 13:24:41 -05:00
|
|
|
normalized_name: string,
|
2019-05-10 01:02:03 -04:00
|
|
|
nout: string,
|
|
|
|
permanent_url: string,
|
|
|
|
timestamp: number,
|
|
|
|
txid: string,
|
|
|
|
type: string,
|
|
|
|
};
|