Skip to content

Commit

Permalink
Merge pull request #6 from anonymousbitcoin/zTransactions
Browse files Browse the repository at this point in the history
1. Full node mode (currently supports only Windows and MacOS)
  • Loading branch information
nlevo committed Dec 13, 2018
2 parents ba83439 + 098c34e commit 60ba749
Show file tree
Hide file tree
Showing 62 changed files with 4,929 additions and 560 deletions.
14 changes: 14 additions & 0 deletions angular-bitcore-wallet-client/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
var bwcModule = angular.module('bwcModule', []);
var Client = require('../node_modules/bitcore-wallet-client-anon');
var Bitcore = require('../node_modules/bitcore-lib-anon');

bwcModule.constant('MODULE_VERSION', '1.0.0');

Expand All @@ -8,6 +9,19 @@ bwcModule.provider("bwcService", function() {

provider.$get = function() {
var service = {};
//KEV & LUIS BUFFER STUFF

service.getProposalBuffer = function() {
return Bitcore;
};

// kev & luis z transaction stuff
service.shell = function() {
var shell = Bitcore.util.buffer;
console.log('ITS WORKING BOOIS');
console.log(shell);
return shell;
};

service.getBitcoreAnon = function() {
return Client.BitcoreAnon;
Expand Down
5 changes: 4 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@
"ionic-toast": "^0.4.1",
"angular-clipboard": "^1.4.2",
"angular-md5": "^0.1.10",
"ngtouch": "^1.0.1"
"ngtouch": "^1.0.1",
"buffer":"latest",
"angular-promisify": "latest",
"child_process": "latest"
},
"resolutions": {
"angular": "1.5.3",
Expand Down

0 comments on commit 60ba749

Please sign in to comment.