add account_set sdk call

This commit is contained in:
Akinwale Ariwodola 2019-05-10 15:52:35 +01:00
parent 8adcd00e65
commit 133af198b6
4 changed files with 30 additions and 0 deletions

1
dist/bundle.es.js vendored
View file

@ -643,6 +643,7 @@ const Lbry = {
account_unlock: (params = {}) => daemonCallWithResult('account_unlock', params),
account_list: (params = {}) => daemonCallWithResult('account_list', params),
account_send: (params = {}) => daemonCallWithResult('account_send', params),
account_set: (params = {}) => daemonCallWithResult('account_set', params),
address_is_mine: (params = {}) => daemonCallWithResult('address_is_mine', params),
address_unused: (params = {}) => daemonCallWithResult('address_unused', params),
transaction_list: (params = {}) => daemonCallWithResult('transaction_list', params),

View file

@ -130,6 +130,19 @@ declare type SyncApplyResponse = {
data: string,
};
declare type AccountSetResponse = 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
//
@ -172,6 +185,7 @@ declare type LbryTypes = {
account_unlock: (params: {}) => Promise<boolean>,
account_list: (params: {}) => Promise<AccountListResponse>,
account_send: (params: {}) => Promise<GenericTxResponse>,
account_set: (params: {}) => Promise<AccountSetResponse>,
address_is_mine: (params: {}) => Promise<boolean>,
address_unused: (params: {}) => Promise<string>, // New address
transaction_list: (params: {}) => Promise<TxListResponse>,

14
flow-typed/Lbry.js vendored
View file

@ -130,6 +130,19 @@ declare type SyncApplyResponse = {
data: string,
};
declare type AccountSetResponse = 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
//
@ -172,6 +185,7 @@ declare type LbryTypes = {
account_unlock: (params: {}) => Promise<boolean>,
account_list: (params: {}) => Promise<AccountListResponse>,
account_send: (params: {}) => Promise<GenericTxResponse>,
account_set: (params: {}) => Promise<AccountSetResponse>,
address_is_mine: (params: {}) => Promise<boolean>,
address_unused: (params: {}) => Promise<string>, // New address
transaction_list: (params: {}) => Promise<TxListResponse>,

View file

@ -82,6 +82,7 @@ const Lbry: LbryTypes = {
account_unlock: (params = {}) => daemonCallWithResult('account_unlock', params),
account_list: (params = {}) => daemonCallWithResult('account_list', params),
account_send: (params = {}) => daemonCallWithResult('account_send', params),
account_set: (params = {}) => daemonCallWithResult('account_set', params),
address_is_mine: (params = {}) => daemonCallWithResult('address_is_mine', params),
address_unused: (params = {}) => daemonCallWithResult('address_unused', params),
transaction_list: (params = {}) => daemonCallWithResult('transaction_list', params),