@getsafle/vault-velas-controller

1.3.1 • Public • Published

Vault-velas-controller

npm version Static Badge Discussions Static Badge

A Module written in javascript for managing various keyrings of Velas accounts, encrypting them, and using them.

Installation

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

Initialize the Velas Controller class

const { KeyringController, getBalance } = require('@getsafle/vault-velas-controller');

const velasController = 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 velasController.createNewVaultAndKeychain(password);

Restore a keyring with the first account using a mnemonic

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

Add a new account to the keyring object

const keyringState = await velasController.addNewAccount(keyringObject);

Export the private key of an address present in the keyring

const privateKey = await velasController.exportAccount(address);

Sign a transaction

const signedTx = await velasController.signTransaction(velasTx, _fromAddress);

Sign a message

const signedMsg = await velasController.signMessage(msgParams);

Sign a message

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

Sign Typed Data (EIP-712)

const signedData = await velasController.signTypedMessage(msgParams);

Raw transaction object

rawTx: {
  to,                          // receiver address
  from,                        // sender address
  value,                       // amount to send
  gas,                         // gas Limit of transaction
  gasPrice,                    // gasPrice
  data,                        // data in hex to send
  nonce,                       // transaction nonce
  chainId,                     // chainID | 111 - TESTNET, 106 - MAINNET
}

Get balance

const balance = await getBalance(address, web3);

Readme

Keywords

Package Sidebar

Install

npm i @getsafle/vault-velas-controller

Weekly Downloads

1

Version

1.3.1

License

MIT

Unpacked Size

33.6 kB

Total Files

9

Last publish

Collaborators

  • subhanshugupta
  • apoorv31
  • shubham.3008
  • sidth