175 lines
4.6 KiB
JavaScript
175 lines
4.6 KiB
JavaScript
// @flow
|
|
declare type StatusResponse = {
|
|
blob_manager: {
|
|
finished_blobs: number,
|
|
},
|
|
blockchain_headers: {
|
|
download_progress: number,
|
|
downloading_headers: boolean,
|
|
},
|
|
connection_status: {
|
|
code: string,
|
|
message: string,
|
|
},
|
|
dht: {
|
|
node_id: string,
|
|
peers_in_routing_table: number,
|
|
},
|
|
hash_announcer: {
|
|
announce_queue_size: number,
|
|
},
|
|
installation_id: string,
|
|
is_running: boolean,
|
|
skipped_components: Array<string>,
|
|
startup_status: {
|
|
blob_manager: boolean,
|
|
blockchain_headers: boolean,
|
|
database: boolean,
|
|
dht: boolean,
|
|
exchange_rate_manager: boolean,
|
|
hash_announcer: boolean,
|
|
peer_protocol_server: boolean,
|
|
stream_manager: boolean,
|
|
upnp: boolean,
|
|
wallet: boolean,
|
|
},
|
|
stream_manager: {
|
|
managed_files: number,
|
|
},
|
|
upnp: {
|
|
aioupnp_version: string,
|
|
dht_redirect_set: boolean,
|
|
external_ip: string,
|
|
gateway: string,
|
|
peer_redirect_set: boolean,
|
|
redirects: {},
|
|
},
|
|
wallet: ?{
|
|
best_blockhash: string,
|
|
blocks: number,
|
|
blocks_behind: number,
|
|
is_encrypted: boolean,
|
|
is_locked: boolean,
|
|
},
|
|
};
|
|
|
|
declare type VersionResponse = {
|
|
build: string,
|
|
lbrynet_version: string,
|
|
os_release: string,
|
|
os_system: string,
|
|
platform: string,
|
|
processor: string,
|
|
python_version: string,
|
|
};
|
|
|
|
declare type ResolveResponse = {
|
|
// Keys are the url(s) passed to resolve
|
|
[string]:
|
|
| { error: {}, certificate: ChannelClaim, claims_in_channel: number }
|
|
| { error?: {}, claim: StreamClaim, certificate?: ChannelClaim },
|
|
};
|
|
|
|
declare type GetResponse = FileListItem;
|
|
|
|
declare type GenericTxResponse = {
|
|
height: number,
|
|
hex: string,
|
|
inputs: Array<{}>,
|
|
outputs: Array<{}>,
|
|
total_fee: string,
|
|
total_input: string,
|
|
total_output: string,
|
|
txid: string,
|
|
};
|
|
|
|
declare type PublishResponse = GenericTxResponse & {
|
|
// Only first value in outputs is a claim
|
|
// That's the only value we care about
|
|
outputs: Array<StreamClaim>,
|
|
};
|
|
|
|
declare type ClaimSearchResponse = {
|
|
items: Array<StreamClaim>,
|
|
page: number,
|
|
page_size: number,
|
|
page_number: number,
|
|
};
|
|
|
|
declare type ClaimListResponse = {
|
|
claims: Array<ChannelClaim | StreamClaim>,
|
|
};
|
|
|
|
declare type ChannelCreateResponse = GenericTxResponse & {
|
|
outputs: Array<ChannelClaim>,
|
|
};
|
|
|
|
declare type ChannelListResponse = Array<ChannelClaim>;
|
|
|
|
declare type FileListResponse = Array<FileListItem>;
|
|
|
|
declare type TxListResponse = Array<Transaction>;
|
|
|
|
declare type BlobListResponse = Array<string>;
|
|
|
|
declare type AccountListResponse = Array<{
|
|
id: string,
|
|
is_default: string,
|
|
ledger: string,
|
|
name: string,
|
|
seed: string,
|
|
encrypted: string,
|
|
private_key: string,
|
|
public_key: string,
|
|
address_generator: string,
|
|
modified_on: string,
|
|
}>;
|
|
|
|
//
|
|
// Types used in the generic Lbry object that is exported
|
|
//
|
|
declare type LbryTypes = {
|
|
isConnected: boolean,
|
|
connectPromise: ?Promise<any>,
|
|
connect: () => void,
|
|
daemonConnectionString: string,
|
|
setDaemonConnectionString: string => void,
|
|
overrides: { [string]: ?Function },
|
|
setOverride: (string, Function) => void,
|
|
getMediaType: (string, ?string) => string,
|
|
|
|
// Lbry Methods
|
|
stop: () => Promise<string>,
|
|
status: () => Promise<StatusResponse>,
|
|
version: () => Promise<VersionResponse>,
|
|
resolve: (params: {}) => Promise<ResolveResponse>,
|
|
get: (params: {}) => Promise<GetResponse>,
|
|
publish: (params: {}) => Promise<PublishResponse>,
|
|
|
|
claim_search: (params: {}) => Promise<ClaimSearchResponse>,
|
|
claim_list: (params?: {}) => Promise<ClaimListResponse>,
|
|
channel_create: (params: {}) => Promise<ChannelCreateResponse>,
|
|
channel_list: () => Promise<ChannelListResponse>,
|
|
stream_abandon: (params: {}) => Promise<GenericTxResponse>,
|
|
channel_abandon: (params: {}) => Promise<GenericTxResponse>,
|
|
support_create: (params: {}) => Promise<GenericTxResponse>,
|
|
|
|
// File fetching and manipulation
|
|
file_list: (params: {}) => Promise<FileListResponse>,
|
|
file_delete: (params: {}) => Promise<boolean>,
|
|
blob_delete: (params: {}) => Promise<string>,
|
|
blob_list: (params: {}) => Promise<BlobListResponse>,
|
|
|
|
// Wallet utilities
|
|
account_balance: (params: {}) => Promise<string>,
|
|
account_decrypt: (prams: {}) => Promise<boolean>,
|
|
account_encrypt: (params: {}) => Promise<boolean>,
|
|
account_unlock: (params: {}) => Promise<boolean>,
|
|
account_list: (params: {}) => Promise<AccountListResponse>,
|
|
account_send: (params: {}) => Promise<GenericTxResponse>,
|
|
address_is_mine: (params: {}) => Promise<boolean>,
|
|
address_unused: (params: {}) => Promise<string>, // New address
|
|
transaction_list: (params: {}) => Promise<TxListResponse>,
|
|
// The app shouldn't need to do this
|
|
utxo_release: () => Promise<any>,
|
|
};
|