Socket
Socket
Sign inDemoInstall

@getsafle/vault-polygon-controller

Package Overview
Dependencies
344
Maintainers
4
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @getsafle/vault-polygon-controller

## Install


Version published
Maintainers
4
Created

Changelog

Source

1.1.0 (2022-02-16)

Implement get balance functionality
  • Added getBalance() to fetch the balance in native currency.

Readme

Source

polygon-controller

Install

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

Initialize the Polygon Controller class

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

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

Restore a keyring with the first account using a mnemonic

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

Add a new account to the keyring object

const keyringState = await polygonController.addNewAccount(keyringObject);

Export the private key of an address present in the keyring

const privateKey = await polygonController.exportAccount(address);

Sign a transaction

const signedTx = await polygonController.signTransaction(polygonTx, _fromAddress);

Sign a message

const signedMsg = await polygonController.signMessage(msgParams);

Sign Typed Data (EIP-712)

const signedData = await polygonController.signTypedMessage(msgParams);

Get balance

const balance = await getBalance(address, web3);

Keywords

FAQs

Last updated on 18 Feb 2022

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc