Skip to content

getsafle/vault-base-controller

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vault-base-controller

npm version Static Badge Discussions Static Badge

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

Installation

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

Initialize the Base Controller class

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

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

Restore a keyring with the first account using a mnemonic

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

Add a new account to the keyring object

const keyringState = await baseController.addNewAccount(keyringObject);

Export the private key of an address present in the keyring

const privateKey = await baseController.exportAccount(address);

Sign a transaction

const signedTx = await baseController.signTransaction(baseTx, privateKey);

Sign a message

const signedMsg = await baseController.signMessage(msgParams);

Sign a message

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

Sign Typed Data (EIP-712)

const signedData = await baseController.signTypedMessage(msgParams);

Get balance

const balance = await getBalance(address, web3);

About

Base blockchain controller for Safle Vault

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published