2019-04-23 19:22:14 +02: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 07:02:03 +02: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 19:24:41 +01:00
|
|
|
normalized_name: string,
|
2019-05-10 07:02:03 +02:00
|
|
|
nout: string,
|
|
|
|
permanent_url: string,
|
|
|
|
timestamp: number,
|
|
|
|
txid: string,
|
|
|
|
type: string,
|
|
|
|
};
|