├── .circleci └── config.yml ├── .coveralls.yml ├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENCE ├── Makefile ├── README.md ├── app.js ├── bcmonitor └── bcmonitor.js ├── bws.js ├── config.js ├── db └── .empty ├── emailservice └── emailservice.js ├── fiatrateservice └── fiatrateservice.js ├── index.js ├── installation.md ├── lib ├── bchaddresstranslator.js ├── blockchainexplorer.js ├── blockchainexplorers │ ├── insight.js │ ├── request-list.js │ ├── v8.js │ └── v8 │ │ └── client.js ├── blockchainmonitor.js ├── common │ ├── constants.js │ ├── defaults.js │ ├── index.js │ └── utils.js ├── emailservice.js ├── errors │ ├── clienterror.js │ └── errordefinitions.js ├── expressapp.js ├── fiatrateproviders │ ├── bitpay.js │ ├── bitstamp.js │ └── index.js ├── fiatrateservice.js ├── index.js ├── locallock.js ├── lock.js ├── messagebroker.js ├── model │ ├── address.js │ ├── addressmanager.js │ ├── copayer.js │ ├── email.js │ ├── index.js │ ├── notification.js │ ├── preferences.js │ ├── pushnotificationsub.js │ ├── session.js │ ├── txconfirmationsub.js │ ├── txnote.js │ ├── txproposal.js │ ├── txproposal_legacy.js │ ├── txproposalaction.js │ └── wallet.js ├── notificationbroadcaster.js ├── pushnotificationsservice.js ├── server.js ├── stats.js ├── storage.js └── templates │ ├── en │ ├── new_copayer.plain │ ├── new_incoming_tx.plain │ ├── new_outgoing_tx.plain │ ├── new_tx_proposal.plain │ ├── tx_confirmation.plain │ ├── txp_finally_rejected.plain │ └── wallet_complete.plain │ ├── es │ ├── new_copayer.plain │ ├── new_incoming_tx.plain │ ├── new_outgoing_tx.plain │ ├── new_tx_proposal.plain │ ├── tx_confirmation.plain │ ├── txp_finally_rejected.plain │ └── wallet_complete.plain │ ├── fr │ ├── new_copayer.plain │ ├── new_incoming_tx.plain │ ├── new_outgoing_tx.plain │ ├── new_tx_proposal.plain │ ├── tx_confirmation.plain │ ├── txp_finally_rejected.plain │ └── wallet_complete.plain │ └── ja │ ├── new_copayer.plain │ ├── new_incoming_tx.plain │ ├── new_outgoing_tx.plain │ ├── new_tx_proposal.plain │ ├── tx_confirmation.plain │ ├── txp_finally_rejected.plain │ └── wallet_complete.plain ├── locker └── locker.js ├── messagebroker └── messagebroker.js ├── package.json ├── pushnotificationsservice └── pushnotificationsservice.js ├── scripts ├── clean_db.mongodb ├── deleteWallet.mongo ├── level2mongo.js └── resetV8registration.mongo ├── serverMessages.js ├── start.sh ├── stop.sh └── test ├── bchaddresstranslator.js ├── blockchainexplorer.js ├── expressapp.js ├── integration ├── bcmonitor.js ├── emailnotifications.js ├── fiatrateservice.js ├── helpers.js ├── historyV8.js ├── hugetx.js ├── pushNotifications.js └── server.js ├── locallock.js ├── mocha.opts ├── model ├── address.js ├── addressmanager.js ├── copayer.js ├── txproposal.js └── wallet.js ├── request-list.js ├── storage.js ├── test-config.js ├── testdata.js ├── utils.js └── v8.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: sPSI9ALVcN1NzwkXUxIMHVCfbWO1XNH9h 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/LICENCE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/app.js -------------------------------------------------------------------------------- /bcmonitor/bcmonitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/bcmonitor/bcmonitor.js -------------------------------------------------------------------------------- /bws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/bws.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/config.js -------------------------------------------------------------------------------- /db/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emailservice/emailservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/emailservice/emailservice.js -------------------------------------------------------------------------------- /fiatrateservice/fiatrateservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/fiatrateservice/fiatrateservice.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/index.js -------------------------------------------------------------------------------- /installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/installation.md -------------------------------------------------------------------------------- /lib/bchaddresstranslator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/bchaddresstranslator.js -------------------------------------------------------------------------------- /lib/blockchainexplorer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/blockchainexplorer.js -------------------------------------------------------------------------------- /lib/blockchainexplorers/insight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/blockchainexplorers/insight.js -------------------------------------------------------------------------------- /lib/blockchainexplorers/request-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/blockchainexplorers/request-list.js -------------------------------------------------------------------------------- /lib/blockchainexplorers/v8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/blockchainexplorers/v8.js -------------------------------------------------------------------------------- /lib/blockchainexplorers/v8/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/blockchainexplorers/v8/client.js -------------------------------------------------------------------------------- /lib/blockchainmonitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/blockchainmonitor.js -------------------------------------------------------------------------------- /lib/common/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/common/constants.js -------------------------------------------------------------------------------- /lib/common/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/common/defaults.js -------------------------------------------------------------------------------- /lib/common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/common/index.js -------------------------------------------------------------------------------- /lib/common/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/common/utils.js -------------------------------------------------------------------------------- /lib/emailservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/emailservice.js -------------------------------------------------------------------------------- /lib/errors/clienterror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/errors/clienterror.js -------------------------------------------------------------------------------- /lib/errors/errordefinitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/errors/errordefinitions.js -------------------------------------------------------------------------------- /lib/expressapp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/expressapp.js -------------------------------------------------------------------------------- /lib/fiatrateproviders/bitpay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/fiatrateproviders/bitpay.js -------------------------------------------------------------------------------- /lib/fiatrateproviders/bitstamp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/fiatrateproviders/bitstamp.js -------------------------------------------------------------------------------- /lib/fiatrateproviders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/fiatrateproviders/index.js -------------------------------------------------------------------------------- /lib/fiatrateservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/fiatrateservice.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/locallock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/locallock.js -------------------------------------------------------------------------------- /lib/lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/lock.js -------------------------------------------------------------------------------- /lib/messagebroker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/messagebroker.js -------------------------------------------------------------------------------- /lib/model/address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/model/address.js -------------------------------------------------------------------------------- /lib/model/addressmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/model/addressmanager.js -------------------------------------------------------------------------------- /lib/model/copayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/model/copayer.js -------------------------------------------------------------------------------- /lib/model/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/model/email.js -------------------------------------------------------------------------------- /lib/model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/model/index.js -------------------------------------------------------------------------------- /lib/model/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/model/notification.js -------------------------------------------------------------------------------- /lib/model/preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/model/preferences.js -------------------------------------------------------------------------------- /lib/model/pushnotificationsub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/model/pushnotificationsub.js -------------------------------------------------------------------------------- /lib/model/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/model/session.js -------------------------------------------------------------------------------- /lib/model/txconfirmationsub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/model/txconfirmationsub.js -------------------------------------------------------------------------------- /lib/model/txnote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/model/txnote.js -------------------------------------------------------------------------------- /lib/model/txproposal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/model/txproposal.js -------------------------------------------------------------------------------- /lib/model/txproposal_legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/model/txproposal_legacy.js -------------------------------------------------------------------------------- /lib/model/txproposalaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/model/txproposalaction.js -------------------------------------------------------------------------------- /lib/model/wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/model/wallet.js -------------------------------------------------------------------------------- /lib/notificationbroadcaster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/notificationbroadcaster.js -------------------------------------------------------------------------------- /lib/pushnotificationsservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/pushnotificationsservice.js -------------------------------------------------------------------------------- /lib/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/server.js -------------------------------------------------------------------------------- /lib/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/stats.js -------------------------------------------------------------------------------- /lib/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/storage.js -------------------------------------------------------------------------------- /lib/templates/en/new_copayer.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/en/new_copayer.plain -------------------------------------------------------------------------------- /lib/templates/en/new_incoming_tx.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/en/new_incoming_tx.plain -------------------------------------------------------------------------------- /lib/templates/en/new_outgoing_tx.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/en/new_outgoing_tx.plain -------------------------------------------------------------------------------- /lib/templates/en/new_tx_proposal.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/en/new_tx_proposal.plain -------------------------------------------------------------------------------- /lib/templates/en/tx_confirmation.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/en/tx_confirmation.plain -------------------------------------------------------------------------------- /lib/templates/en/txp_finally_rejected.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/en/txp_finally_rejected.plain -------------------------------------------------------------------------------- /lib/templates/en/wallet_complete.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/en/wallet_complete.plain -------------------------------------------------------------------------------- /lib/templates/es/new_copayer.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/es/new_copayer.plain -------------------------------------------------------------------------------- /lib/templates/es/new_incoming_tx.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/es/new_incoming_tx.plain -------------------------------------------------------------------------------- /lib/templates/es/new_outgoing_tx.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/es/new_outgoing_tx.plain -------------------------------------------------------------------------------- /lib/templates/es/new_tx_proposal.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/es/new_tx_proposal.plain -------------------------------------------------------------------------------- /lib/templates/es/tx_confirmation.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/es/tx_confirmation.plain -------------------------------------------------------------------------------- /lib/templates/es/txp_finally_rejected.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/es/txp_finally_rejected.plain -------------------------------------------------------------------------------- /lib/templates/es/wallet_complete.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/es/wallet_complete.plain -------------------------------------------------------------------------------- /lib/templates/fr/new_copayer.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/fr/new_copayer.plain -------------------------------------------------------------------------------- /lib/templates/fr/new_incoming_tx.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/fr/new_incoming_tx.plain -------------------------------------------------------------------------------- /lib/templates/fr/new_outgoing_tx.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/fr/new_outgoing_tx.plain -------------------------------------------------------------------------------- /lib/templates/fr/new_tx_proposal.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/fr/new_tx_proposal.plain -------------------------------------------------------------------------------- /lib/templates/fr/tx_confirmation.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/fr/tx_confirmation.plain -------------------------------------------------------------------------------- /lib/templates/fr/txp_finally_rejected.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/fr/txp_finally_rejected.plain -------------------------------------------------------------------------------- /lib/templates/fr/wallet_complete.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/fr/wallet_complete.plain -------------------------------------------------------------------------------- /lib/templates/ja/new_copayer.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/ja/new_copayer.plain -------------------------------------------------------------------------------- /lib/templates/ja/new_incoming_tx.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/ja/new_incoming_tx.plain -------------------------------------------------------------------------------- /lib/templates/ja/new_outgoing_tx.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/ja/new_outgoing_tx.plain -------------------------------------------------------------------------------- /lib/templates/ja/new_tx_proposal.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/ja/new_tx_proposal.plain -------------------------------------------------------------------------------- /lib/templates/ja/tx_confirmation.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/ja/tx_confirmation.plain -------------------------------------------------------------------------------- /lib/templates/ja/txp_finally_rejected.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/ja/txp_finally_rejected.plain -------------------------------------------------------------------------------- /lib/templates/ja/wallet_complete.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/lib/templates/ja/wallet_complete.plain -------------------------------------------------------------------------------- /locker/locker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/locker/locker.js -------------------------------------------------------------------------------- /messagebroker/messagebroker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/messagebroker/messagebroker.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/package.json -------------------------------------------------------------------------------- /pushnotificationsservice/pushnotificationsservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/pushnotificationsservice/pushnotificationsservice.js -------------------------------------------------------------------------------- /scripts/clean_db.mongodb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/scripts/clean_db.mongodb -------------------------------------------------------------------------------- /scripts/deleteWallet.mongo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/scripts/deleteWallet.mongo -------------------------------------------------------------------------------- /scripts/level2mongo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/scripts/level2mongo.js -------------------------------------------------------------------------------- /scripts/resetV8registration.mongo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/scripts/resetV8registration.mongo -------------------------------------------------------------------------------- /serverMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/serverMessages.js -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/start.sh -------------------------------------------------------------------------------- /stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/stop.sh -------------------------------------------------------------------------------- /test/bchaddresstranslator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/bchaddresstranslator.js -------------------------------------------------------------------------------- /test/blockchainexplorer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/blockchainexplorer.js -------------------------------------------------------------------------------- /test/expressapp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/expressapp.js -------------------------------------------------------------------------------- /test/integration/bcmonitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/integration/bcmonitor.js -------------------------------------------------------------------------------- /test/integration/emailnotifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/integration/emailnotifications.js -------------------------------------------------------------------------------- /test/integration/fiatrateservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/integration/fiatrateservice.js -------------------------------------------------------------------------------- /test/integration/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/integration/helpers.js -------------------------------------------------------------------------------- /test/integration/historyV8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/integration/historyV8.js -------------------------------------------------------------------------------- /test/integration/hugetx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/integration/hugetx.js -------------------------------------------------------------------------------- /test/integration/pushNotifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/integration/pushNotifications.js -------------------------------------------------------------------------------- /test/integration/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/integration/server.js -------------------------------------------------------------------------------- /test/locallock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/locallock.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --recursive 2 | -------------------------------------------------------------------------------- /test/model/address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/model/address.js -------------------------------------------------------------------------------- /test/model/addressmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/model/addressmanager.js -------------------------------------------------------------------------------- /test/model/copayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/model/copayer.js -------------------------------------------------------------------------------- /test/model/txproposal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/model/txproposal.js -------------------------------------------------------------------------------- /test/model/wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/model/wallet.js -------------------------------------------------------------------------------- /test/request-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/request-list.js -------------------------------------------------------------------------------- /test/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/storage.js -------------------------------------------------------------------------------- /test/test-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/test-config.js -------------------------------------------------------------------------------- /test/testdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/testdata.js -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/utils.js -------------------------------------------------------------------------------- /test/v8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitpay/bitcore-wallet-service/HEAD/test/v8.js --------------------------------------------------------------------------------