
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
@getsafle/vault-bsc-controller
Advanced tools
[](https://badge.fury.io/js/@getsafle%2Fvault-bsc-controller) [![Discussions][discussions-badge]]

A Module written in javascript for managing various keyrings of BSCereum accounts, encrypting them, and using them. This repository contains BSCHdKeyring
class to create Binance smart chain wallet from Safle Vault.
npm install --save @getsafle/vault-bsc-controller
const { KeyringController, getBalance } = require('@getsafle/vault-bsc-controller');
const bscController = new KeyringController({
encryptor: {
// An optional object for defining encryption schemes:
// Defaults to Browser-native SubtleCrypto.
encrypt(password, object) {
return new Promise('encrypted!');
},
decrypt(password, encryptedString) {
return new Promise({ foo: 'bar' });
},
},
});
const keyringState = await bscController.createNewVaultAndKeychain(password);
const keyringState = await bscController.createNewVaultAndRestore(password, mnemonic);
const keyringState = await bscController.addNewAccount(keyringObject);
const privateKey = await bscController.exportAccount(address);
const signedTx = await bscController.signTransaction(bscTx, _fromAddress);
const signedMsg = await bscController.signMessage(msgParams);
const signedObj = await bscController.sign(msgParams, pvtKey, web3Obj);
const signedData = await bscController.signTypedMessage(msgParams);
const balance = await getBalance(address, web3);
const receipt = await bscController.sendTransaction(signedTx, web3);
const fees = await bscController.getFees(rawTx, web3);
1.2.4 (2023-11-30)
FAQs
[](https://badge.fury.io/js/@getsafle%2Fvault-bsc-controller) [![Discussions][discussions-badge]]
The npm package @getsafle/vault-bsc-controller receives a total of 1 weekly downloads. As such, @getsafle/vault-bsc-controller popularity was classified as not popular.
We found that @getsafle/vault-bsc-controller demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.