Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@exodus/address-provider

Package Overview
Dependencies
Maintainers
0
Versions
73
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@exodus/address-provider

Address provider for deriving and tracking used and unused addresses.

  • 10.4.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.1K
increased by68.32%
Maintainers
0
Weekly downloads
 
Created
Source

@exodus/address-provider

This module derives addresses for assets from different wallet accounts. Addresses for software wallet accounts are encoded public keys that are derived from the seed using Keychain, whereas hardware wallet accounts use the public keys stored in the PublicKeyStore.

flowchart LR
    A[Wallet] -->|getReceiveAddress\ngetChangeAddress\n...| B(AddressProvider)
    B --> C[PublicKeyProvider]
    C -->|software| D[Keychain]
    C -->|hardware| E[PublicKeyStore]

Install

yarn add @exodus/address-provider

Usage

import addressProvider from '@exodus/address-provider'

exodus.use(addressProvider())

const defaultAddress = await exodus.addressProvider.getAddress({
  purpose, // Number, e.g. 44 for BIP 44, 84 for BIP84, etc
  assetName,
  walletAccount: walletAccountInstance,
  chainIndex: 0,
  addressIndex: 0,
})
// ...

FAQs

Package last updated on 06 May 2024

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