diff --git a/dist/bundle.es.js b/dist/bundle.es.js index 9a913dd..9512952 100644 --- a/dist/bundle.es.js +++ b/dist/bundle.es.js @@ -651,6 +651,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), diff --git a/dist/flow-typed/Lbry.js b/dist/flow-typed/Lbry.js index 6219328..303de6f 100644 --- a/dist/flow-typed/Lbry.js +++ b/dist/flow-typed/Lbry.js @@ -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, +}>; + declare type SupportAbandonResponse = GenericTxResponse; // @@ -174,6 +187,7 @@ declare type LbryTypes = { account_unlock: (params: {}) => Promise, account_list: (params: {}) => Promise, account_send: (params: {}) => Promise, + account_set: (params: {}) => Promise, address_is_mine: (params: {}) => Promise, address_unused: (params: {}) => Promise, // New address transaction_list: (params: {}) => Promise, diff --git a/flow-typed/Lbry.js b/flow-typed/Lbry.js index 6219328..303de6f 100644 --- a/flow-typed/Lbry.js +++ b/flow-typed/Lbry.js @@ -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, +}>; + declare type SupportAbandonResponse = GenericTxResponse; // @@ -174,6 +187,7 @@ declare type LbryTypes = { account_unlock: (params: {}) => Promise, account_list: (params: {}) => Promise, account_send: (params: {}) => Promise, + account_set: (params: {}) => Promise, address_is_mine: (params: {}) => Promise, address_unused: (params: {}) => Promise, // New address transaction_list: (params: {}) => Promise, diff --git a/src/lbry.js b/src/lbry.js index ec66286..03e7451 100644 --- a/src/lbry.js +++ b/src/lbry.js @@ -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),