You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

immutable-wallet

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

immutable-wallet

A javascript SDK for setting up Immutable wallets and creating embedded controllers.

0.0.6
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

Immutable Wallet

A Javascript SDK for creating Immutable Wallets in the browser.


import { ImmutableWallet } from 'immutable-wallet';

let owner = '0x0000000000000000000000000000000000000000';

let address = new ImmutableWallet(owner);

console.log(address);

Wallets are encrypted with a user-defined password and stored in local storage.

Controllers

Each Immutable Wallet has a primary operator called the 'owner' or 'controller'. This user is able to add or remove modules and perform many other ownership-level actions. In principle.

let owner = '0x0000000000000000000000000000000000000000';

let address = new ImmutableWallet(owner);

import * as immutable from 'immutable-wallet';

let owner = await immutable.importJSON('', 'password');
let owner = await immutable.importMnemonic('hi alex this is me', 'password')
let owner = await immutable.createLocalWallet('password');

Keywords

Immutable

FAQs

Package last updated on 25 Jul 2019

Did you know?

Socket

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