
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.
mobit-sdk
Advanced tools
A comprehensive SDK for integrating with the Mobit platform, supporting operations on Nervos CKB and Bitcoin for RGBPP assets, including transfers, leaps, and token management.
The Mobit SDK is a comprehensive toolkit designed for interacting with the CKB (Nervos Network) and Bitcoin networks. It provides a set of utilities for handling XUDT tokens and RGBPP assets, enabling developers to create, manage, and transfer assets across these networks with ease.
To install the Mobit SDK, run the following command:
npm install mobit-sdk
To start using the SDK, you need to initialize the RgbppSDK class with the
appropriate network configuration. Here’s how you can do it:
import { RgbppSDK } from "mobit-sdk";
const isMainnet = true; // Set to false for testnet
const sdk = new RgbppSDK(isMainnet);
The CkbHelper class provides a way to interact with the CKB network, depending
on whether you're on the mainnet or testnet.
import { CkbHelper } from "mobit-sdk";
const ckbHelper = new CkbHelper(true); // true for mainnet, false for testnet
The BtcHelper class provides utilities for interacting with the Bitcoin
network.
import { BtcHelper, AbstractWallet } from "mobit-sdk";
const wallet: AbstractWallet = // Initialize your wallet instance
const networkType = "mainnet" || "testnet";
const btcTestnetType = "testnet" || undefined;
const btcHelper = new BtcHelper(wallet, networkType, btcTestnetType);
The SDK provides several functions to create different types of transactions. For detailed usage and parameters, refer to the API Documentation on GitHub.
The SDK also provides functions to prepare unsigned transactions and PSBTs (Partially Signed Bitcoin Transactions). For detailed usage and parameters, refer to the API Documentation on GitHub.
Contributions are welcome! Please open an issue or submit a pull request for any changes.
This project is licensed under the MIT License. See the LICENSE file for details.
FAQs
A comprehensive SDK for integrating with the Mobit platform, supporting operations on Nervos CKB and Bitcoin for RGBPP assets, including transfers, leaps, and token management.
We found that mobit-sdk 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.

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.