
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@cryptocadet/sdk
Advanced tools
The Cadet SDK is a simple and robust JavaScript/TypeScript library for interacting with the CryptoCadet API. This SDK enables developers to seamlessly integrate CryptoCadet's features into their applications.
Install the SDK using npm or yarn:
npm install @cryptocadet/sdk
or
yarn add @cryptocadet/sdk
Import and initialize the SDK with your API and Secret keys:
import CadetSDK from 'cryptocadet/sdk';
const sdk = new CadetSDK('your-public-api-key', 'your-secret-key');
await sdk.authenticate();
const response = await sdk.createUser('user@example.com');
console.log(response);
const user = await sdk.getUser();
console.log(user);
const product = { productId: 'prod123', price: 99.99 };
const response = await sdk.createProduct(product);
console.log(response);
const response = await sdk.deleteProduct('prod123');
console.log(response);
const response = await sdk.getProductPrice('prod123');
console.log(response);
const response = await sdk.addNetwork('Ethereum');
console.log(response);
const response = await sdk.getNetwork('Ethereum');
console.log(response);
const response = await sdk.cancelSubscription();
console.log(response);
const response = await sdk.updateWalletAddress('0x1234567890abcdef1234567890abcdef12345678');
console.log(response);
For a detailed description of all available endpoints and parameters, refer to the CryptoCadet API Documentation.
To build the project:
npm run build
The SDK is tested using Jest. To run tests:
npm test
Ensure your code meets the project's style guidelines:
npm run lint
We welcome contributions! Please fork the repository and submit a pull request.
This project is licensed under the MIT License. See the LICENSE file for details.
If you encounter any issues, feel free to open an issue on GitHub or contact us at hello@cryptocadet.app.
Happy Coding! 🎉
FAQs
SDK for CryptoCadet altcoin payment processor API.
We found that @cryptocadet/sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.