
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
transferwise
Advanced tools
Important Update: Due to recent changes announced by Wise regarding their API functionality, specifically in alignment with the Payment Services Directives (PSD2), certain features previously available through this client might no longer be supported. Specifically, the use of signing API requests for completing strong customer authentication on personal Wise accounts, retrieving account statements, and funding payments via the API have been disabled. While draft transfers can still be created through the API, they must now be funded directly from your multi-currency account using the Wise website or mobile applications. In light of these changes, this repository may not receive further updates.
A simple client for Wise's API written in Node JS (ES7).
Official docs are found here;
To install simply use npm or clone repo:
npm install transferwise
or clone repo and make link:
$> git clone git@github.com:13pass/wise-client.git
This does not cover all Wise's API yet, but this repository will hopefully be updated to reflect the API.
To init just plug in your apiTokenKey like so:
const Wise = require('transferwise');
const wiseClient = new Wise({
apiTokenKey: '01234567-890a-bcde-f012-3456789abcde',
});
This client uses some of the API endpoints and provides it as a Promise-based client.
below an example of actions that can be achieved with this client:
const config = require('dotenv').config();
const Wise = require('transferwise');
const options = {
apiKey: config.parsed.TW_API_KEY,
sandbox: true,
};
const wiseClient = new Wise(options);
(async () => {
const profiles = await wiseClient.getProfilesV2({});
console.log(profiles);
const profileId = profiles[0].id;
const balances = await wiseClient.getBalancesV3({
profileId,
});
for (const balance of balances) {
console.log(balance);
}
let quote = await wiseClient.createQuoteV2({
profileId,
sourceCurrency: 'EUR',
targetCurrency: 'GBP',
targetAmount: 19.84,
payOut: 'BALANCE',
});
console.log(quote);
if (quote.createdTime) {
if (quote.rate > 0.85) {
let conversionTransaction = await wiseClient.convertCurrenciesV2({
profileId,
quoteId: quote.id,
});
console.log(conversionTransaction);
}
}
})();
2.1.1 - 2025-04-17
getExchangeRatesV1
to reflect changes on Wise API by merging work done by Ryan SadlerFAQs
A simple client for Wise's API written in Node JS (ES7)
The npm package transferwise receives a total of 32 weekly downloads. As such, transferwise popularity was classified as not popular.
We found that transferwise demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.