Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

zcash-redux

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zcash-redux - npm Package Compare versions

Comparing version 0.2.2 to 0.2.3

8

lib/actions.js

@@ -16,2 +16,4 @@ import zClient from './client';

const client = new zClient(); // eslint-disable-line
export const setAuthConfig = config => ({

@@ -47,3 +49,3 @@ type: SET_AUTH_CONFIG,

return zClient.z_gettotalbalance(address).then(response => dispatch(zGetTotalBalanceSuccess(response))).catch(err => dispatch(zGetTotalBalanceError(err)));
return client.z_gettotalbalance(address).then(response => dispatch(zGetTotalBalanceSuccess(response))).catch(err => dispatch(zGetTotalBalanceError(err)));
};

@@ -67,3 +69,3 @@

return zClient.z_listaddresses().then(response => dispatch(zListAddressesSuccess(response))).catch(err => dispatch(zListAddressesError(err)));
return client.z_listaddresses().then(response => dispatch(zListAddressesSuccess(response))).catch(err => dispatch(zListAddressesError(err)));
};

@@ -87,3 +89,3 @@

return zClient.z_listtransactions().then(response => dispatch(zListTransactionsSuccess(response))).catch(err => dispatch(zListTransactionsError(err)));
return client.z_listtransactions().then(response => dispatch(zListTransactionsSuccess(response))).catch(err => dispatch(zListTransactionsError(err)));
};

@@ -90,0 +92,0 @@

{
"name": "zcash-redux",
"version": "0.2.2",
"version": "0.2.3",
"main": "lib/index.js",

@@ -5,0 +5,0 @@ "license": "MIT",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc