icewallet
Version:
Cold storage enabled command line bitcoin wallet based on bitpay's bitcore
97 lines • 3.09 kB
JSON
{
"version": "0.2.0",
"configurations": [
{
"name": "new pub",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/src/CommandLine/iwpub.ts",
"stopOnEntry": false,
"args": ["new", "-w", "/Users/Michael/iceWallets/accountsPub.dat"],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"externalConsole": true,
"sourceMaps": true,
"outDir": "${workspaceRoot}/bin"
},
{
"name": "open pub",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/src/CommandLine/iwpub.ts",
"stopOnEntry": false,
"args": ["open", "-w", "/Users/Michael/iceWallets/accountsPub.dat"],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"externalConsole": true,
"sourceMaps": true,
"outDir": "${workspaceRoot}/bin"
},
{
"name": "open priv",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/src/CommandLine/iwpriv.ts",
"stopOnEntry": false,
"args": ["open", "-w", "/Users/Michael/iceWallets/accountsPriv.dat"],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"externalConsole": true,
"sourceMaps": true,
"outDir": "${workspaceRoot}/bin"
},
{
"name": "new priv",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/src/CommandLine/iwpriv.ts",
"stopOnEntry": false,
"args": ["new", "-w", "/Users/Michael/iceWallets/accountsPriv.dat"],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"externalConsole": true,
"sourceMaps": true,
"outDir": "${workspaceRoot}/bin"
},
{
"name": "Attach",
"type": "node",
"request": "attach",
"port": 5858,
"address": "localhost",
"restart": false,
"sourceMaps": true,
"outDir": null,
"localRoot": "${workspaceRoot}",
"remoteRoot": null
}
]
}