@bahuy3103/eth-signer-trezor
TypeScript icon, indicating that this package has built-in type declarations

0.2.0 • Public • Published

@bahuy3103/eth-signer-trezor

ethers signer that derives address and signs transactions using Trezor device.

Install

yarn add @bahuy3103/eth-signer-trezor

Usage

const hardwareWalletModule = require('@bahuy3103/eth-signer-trezor');
const providers = require('ethers').providers;

const TrezorSigner = hardwareWalletModule.TrezorSigner;
const provider = new providers.JsonRpcProvider(providerUrl);
const derivationPath = `m/44'/60'/0'/0`;  // This follows BIP-44 wallet, without <index> in derivation path

/**
 * Specifying account by either index in account or by address, NOT both
 * 
 * const index = 0;
 * const address = undefined;
 **/
const index = undefined;
const address = "0xcB6a85e9Ff428d0cD7c6F3D7A03Aa5F6DF771525";
const sessionName = 'trezor user'

const ethersSigner = new TrezorSigner(
    provider,
    derivationPath,
    index,
    address,
    sessionName
);

Implementation

The TrezorSigner class in trezor-signer.ts satisfies following:

  • extends ethers.signer
  • loads and interacts with Trezor Connect
  • fetches public key by derivation path from Trezor and derives available addresses in the device

Readme

Keywords

none

Package Sidebar

Install

npm i @bahuy3103/eth-signer-trezor

Weekly Downloads

3

Version

0.2.0

License

ISC

Unpacked Size

25 kB

Total Files

16

Last publish

Collaborators

  • bahuy3103