Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
16318fd
WIP - tests
kajoseph Feb 12, 2026
6e55ac3
Merge branch 'master' of github.com:bitpay/bitcore into bitcoreCli
kajoseph Mar 23, 2026
2d8729a
rework txproposals view to use paginated controls for consistency
kajoseph Mar 27, 2026
58856e0
QoL: better complete handling, tweaked goodbyes
kajoseph Mar 27, 2026
da709de
WIP: tests
kajoseph Mar 27, 2026
06502f3
export constants from BWC
kajoseph Mar 27, 2026
afdc527
Merge branch 'master' of github.com:bitpay/bitcore into bitcoreCli
kajoseph Mar 30, 2026
34a86f3
call done immediately on error
kajoseph Mar 30, 2026
3041647
no color in CI output
kajoseph Mar 30, 2026
67f9537
use testnet wallets in tests
kajoseph Mar 30, 2026
c1a30b7
more helpful created line error
kajoseph Mar 30, 2026
bdf9c7f
fix proposal test timezone issue
kajoseph Mar 30, 2026
6e13a55
add tests for filestorage, utils, prompts
kajoseph Mar 31, 2026
8c74249
add multisig creation tests
kajoseph Apr 1, 2026
4d970e2
Merge branch 'master' of github.com:bitpay/bitcore into bitcoreCli
kajoseph Apr 16, 2026
74e9b01
Merge branch 'master' of github.com:bitpay/bitcore into bitcoreCli
kajoseph May 1, 2026
ffcc3ef
gate multi-party wallet chains; tss creation tests; more wallet creat…
kajoseph May 1, 2026
5c7b5cb
cleanup test output & fix walletId not being set
kajoseph May 4, 2026
6b9adb6
Merge branch 'master' of github.com:bitpay/bitcore into bitcoreCli
kajoseph May 5, 2026
20849db
fix sendMax
kajoseph May 5, 2026
a5946eb
rm tsx from bwc
kajoseph May 5, 2026
c89ff38
address copilot feedback
kajoseph May 5, 2026
5e00a1b
add utils tests, make isEqual more robust
kajoseph May 6, 2026
961cbb4
properly export types from BWC
kajoseph May 6, 2026
d6c5091
fix Utils.die stub to throw instead of oddly throwing result of Utils…
kajoseph May 6, 2026
b21cf29
clearer page handling in paginator
kajoseph May 6, 2026
0f2fad9
fix typos; rm unneeded function
kajoseph May 6, 2026
2091845
handle missing dir in copyTestData
kajoseph May 6, 2026
d61d10b
Merge branch 'master' of github.com:bitpay/bitcore into bitcoreCli
kajoseph May 7, 2026
994af84
no throw Utils.die; clearer command inputs; better persistence of cre…
kajoseph May 8, 2026
9b56c57
make copyTestData more portable
kajoseph May 8, 2026
fecf7dc
isEqual: handle implicit vs explicity undefined vals recursive + guar…
kajoseph May 8, 2026
4daf773
Merge branch 'master' of github.com:bitpay/bitcore into bitcoreCli
kajoseph May 13, 2026
2be7e89
add jsdocs
kajoseph May 13, 2026
48a957f
fix credentials update
kajoseph May 13, 2026
d2f53be
add clarifying comment
kajoseph May 15, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions packages/bitcore-cli/copyTestWallets
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/usr/bin/env node

const fs = require('fs');
const os = require('os');
const path = require('path');

const sourceDir = path.join(__dirname, 'test/wallets');
const targetDir = path.join(__dirname, 'build/test/wallets');

if (!fs.existsSync(targetDir)) {
fs.mkdirSync(targetDir, { recursive: true });
}

const srcContents = fs.readdirSync(sourceDir);
for (const item of srcContents) {
const srcPath = path.join(sourceDir, item);
const targetPath = path.join(targetDir, item);
fs.copyFileSync(srcPath, targetPath);
}
Loading