New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
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
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
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

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc