
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
wallet-generator
Advanced tools
Simple Web UI to generate brand new single digital asset wallet (project [Unicoisa](https://github.com/troggy/unicoisa) based on Copay + Colu).
Simple Web UI to generate brand new single digital asset wallet (project Unicoisa based on Copay + Colu).
git clone https://bitbucket.org/teamcolu/wallet-generatornpm installbower installEdit config.json to match your settings:
{
"targetDir": "<folder where to put generated wallets>",
"templateCopayDir": "<folder with ColuCopay to make copy of>"
}
To prepare ColuCopay (project Unicoisa):
git clone https://bitbucket.org/teamcolu/wallet-generator copay && cd copay && npm install && bower install && grunt
App copies nginx config to the /etc/nginx/wallets and reloads nginx. It uses sudo to do this. To make it work you need the following:
/etc/sudoers (use visudo for your safety) to allow certain commands to run without password prompt:<USERNAME> ALL=NOPASSWD:<PATH_TO_WALLET_GENERATOR>/scripts/copy_nginx_config.sh
<USERNAME> ALL=NOPASSWD:/usr/bin/service nginx reload
Create /etc/nginx/wallets folder.
Example nginx config for the generator app (assuming generator app is running on 6000 port):
server {
listen 80;
server_name wallet.colu.co;
include /etc/nginx/wallets/*.conf;
location / {
proxy_pass http://127.0.0.1:6000;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_redirect off;
}
}
npm start
or export to upstart using foreman
API uses HTTP Basic authentication.
Endpoint: POST /api/wallet
Payload:
{
walletName: "name of the wallet to change (mandatory)",
assetId: "assetId (mandatory)",
assetName: "name of the asset (mandatory)",
mainColor: "#xxxxxx code of the main wallet color",
secondaryColor: "#xxxxxx code of the secondary wallet color",
symbol: "symbol/ticker for the asset currency",
pluralSymbol: "plural form of the symbol",
logo: "logo could be uploaded only with multipart/form-data requests",
logoUrl: "logo URL (e.g. from CDN). If both logoUrl and logo bytes supplied, logoUrl will be used",
coluApiKey: "api key for Colu SDK"
}
Colu API key, assetId and wallet name cannot be changed.
Endpoint: PUT /api/wallet
Payload:
{
walletName: "name of the wallet to change",
assetName: "name of the asset",
mainColor: "#xxxxxx code of the main wallet color",
secondaryColor: "#xxxxxx code of the secondary wallet color",
symbol: "symbol/ticker for the asset currency",
pluralSymbol: "plural form of the symbol",
logo: "logo could be uploaded only with multipart/form-data requests",
logoUrl: "logo URL (e.g. from CDN). If both logoUrl and logo bytes supplied, logoUrl will be used"
}
FAQs
Simple Web UI to generate brand new single digital asset wallet (project [Unicoisa](https://github.com/troggy/unicoisa) based on Copay + Colu).
The npm package wallet-generator receives a total of 4 weekly downloads. As such, wallet-generator popularity was classified as not popular.
We found that wallet-generator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.