@getsafle/vault-avalanche-controller
v1.2.2
Published
Avalanche controller for safle vault.
Downloads
22
Readme
vault-avalanche-controller
A Module written in javascript for managing various keyrings of Avalanche accounts, encrypting them, and using them.
Installation
npm install --save @getsafle/vault-avalanche-controller
Initialize the Avalanche Controller class
const { KeyringController, getBalance } = require('@getsafle/vault-avalanche-controller');
const avalancheController = 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 avalancheController.createNewVaultAndKeychain(password);
Restore a keyring with the first account using a mnemonic
const keyringState = await avalancheController.createNewVaultAndRestore(password, mnemonic);
Add a new account to the keyring object
const keyringState = await avalancheController.addNewAccount(keyringObject);
Export the private key of an address present in the keyring
const privateKey = await avalancheController.exportAccount(address);
Sign a transaction
const signedTx = await avalancheController.signTransaction(rawTx, privateKey);
Sign a message
const signedMsg = await avalancheController.signMessage(msgParams);
Sign a message
const signedObj = await avalancheController.sign(msgParams, pvtKey, web3Obj);
Sign Typed Data (EIP-712)
const signedData = await avalancheController.signTypedMessage(msgParams);
Get balance
const balance = await getBalance(address, web3);