THIS PACKAGE IS NOT LONGER MAINTAINED, SINCE IT WAS INTEGRATIONS INTO COPAY. IF YOU NEED IT, UPDATING BWC VERSION SHOULD BE STRAIGTH FORWARD. =-
AngularJS module for bitcore-wallet-client
bower install angular-bitcore-wallet-client
Add javascript to index.html after angular.js:
<scriptsrc="bower_components/angular-bitcore-wallet-client/angular-bitcore-wallet-client.min.js"></script>Add to your array of AngularJS modules:
var modules = [
'bwcModule'
];
var myApp = angular.module('myApp', modules);
See the API referece for more details.
angular.module('myApp').factory('myService',function(bwcService){varwalletClient=bwcService.getClient();walletClient.createWallet('Personal Wallet','me',1,1,'livenet',function(err){// Store insave(walletClient.export());// Read other walletvarwallet2=read(...);varwalletClient2=bwcService(getClient(wallet2));walletClient2.getStatus(function(err,status){console.log(status);});});});See Complete API at Bitcore Wallet Client Readme