2020-04-10 08:16:27 -04:00
|
|
|
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,
|
2020-12-15 15:45:52 -05:00
|
|
|
signing_channel?: {
|
|
|
|
channel_id: string,
|
|
|
|
},
|
2020-04-10 08:16:27 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
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,
|
2020-12-15 15:45:52 -05:00
|
|
|
};
|