1.0.8 • Published 5 months ago

@getsafle/vault-optimism-controller v1.0.8

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

Vault-optimism-controller

npm version Discussions

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

Installation

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

Initialize the Optimism Controller class

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

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

Restore a keyring with the first account using a mnemonic

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

Add a new account to the keyring object

const keyringState = await optimismController.addNewAccount(keyringObject);

Export the private key of an address present in the keyring

const privateKey = await optimismController.exportAccount(address);

Sign a transaction

const signedTx = await optimismController.signTransaction(optimismTx, _fromAddress);

Sign a message

const signedMsg = await optimismController.signMessage(msgParams);

Sign a message

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

Sign Typed Data (EIP-712)

const signedData = await optimismController.signTypedMessage(msgParams);

Get balance

const balance = await getBalance(address, web3);