skalenetwork / docs.skale.space

https://docs.skale.space/
MIT License
0 stars 2 forks source link

Using Trezor #36

Closed manuelbarbas closed 4 months ago

manuelbarbas commented 9 months ago

Trezor

Trezor wallet is a hardware wallet designed for secure storage of cryptocurrencies. Similar to other hardware wallets, Trezor provides a physical device that stores the user's private keys offline, reducing the risk of exposure to online threats like hacking and malware.

For more information check the following link https://trezor.io/learn

Install NPM Packages

npm install @trezor/connect

Implementation Example

import TrezorApi from "trezor-connect";

const supportedNetworkURLs = {
  1351057110: "https://staging-v3.skalenodes.com/v1/staging-fast-active-bellatrix"
};

const defaultNetwork = 1;

const Trezor = new TrezorConnector({
  api: TrezorApi,
  supportedNetworkURLs,
  defaultNetwork,
  manifestEmail: "test@gmail.com",
  manifestAppUrl: "https://test.io/"
});
manuelbarbas commented 8 months ago

What is: Wallet Language: Javascript, Typescript Target: Web