Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@getsafle/vault-bsc-controller

Package Overview
Dependencies
Maintainers
4
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@getsafle/vault-bsc-controller

[![npm version](https://badge.fury.io/js/@getsafle%2Fvault-bsc-controller.svg)](https://badge.fury.io/js/@getsafle%2Fvault-bsc-controller) [![Discussions][discussions-badge]]

  • 1.2.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9
increased by800%
Maintainers
4
Weekly downloads
 
Created
Source

vault-bsc-controller

npm version Static Badge Discussions Static 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.

Installation

npm install --save @getsafle/vault-bsc-controller

Initialize the BSC Controller class

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' });
    },
  },
});

Methods

Generate Keyring with 1 account and encrypt

const keyringState = await bscController.createNewVaultAndKeychain(password);

Restore a keyring with the first account using a mnemonic

const keyringState = await bscController.createNewVaultAndRestore(password, mnemonic);

Add a new account to the keyring object

const keyringState = await bscController.addNewAccount(keyringObject);

Export the private key of an address present in the keyring

const privateKey = await bscController.exportAccount(address);

Sign a transaction

const signedTx = await bscController.signTransaction(bscTx, _fromAddress);

Sign a message

const signedMsg = await bscController.signMessage(msgParams);

Sign a message

const signedObj = await bscController.sign(msgParams, pvtKey, web3Obj);

Sign Typed Data (EIP-712)

const signedData = await bscController.signTypedMessage(msgParams);

Get balance

const balance = await getBalance(address, web3);

Send Transaction

const receipt = await bscController.sendTransaction(signedTx, web3);

Calculate Tx Fees

const fees = await bscController.getFees(rawTx, web3);

Keywords

FAQs

Package last updated on 04 Dec 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc