lbry-redux/flow-typed/Txo.js
jessop 1e505184dc add txo list by params
fix set.slice() error

add txopage reducer

move txo constants to redux

abandon bug

abandon callback
2020-04-14 16:35:27 -04:00

25 lines
469 B
JavaScript

declare type Txo = {
amount: number,
claim_id: string,
normalized_name: string,
nout: number,
txid: string,
type: string,
value_type: string,
timestamp: number,
is_my_output: boolean,
is_my_input: boolean,
is_spent: boolean,
};
declare type TxoListParams = {
page: number,
page_size: number,
type: string,
is_my_input?: boolean,
is_my_output?: boolean,
is_not_my_input?: boolean,
is_not_my_output?: boolean,
is_spent?: boolean,
}