swaponline / swap.io-keys

https://keys.swap.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Keys layer

key32

https://keys.swap.io

localStorage-based simple multicurrency key storage. This part of swap.io is responsible for storage of keys and signing messages. This includes blockchain-aware generation and signing algorithms but all the cryptography inside this repo is offline. To interact with the actual blockchain you need connections to networks.

The keys layer is isolated from the rest of repository for additional security.

Main repo interacts with this via cross-frame window.postMessage() routines

The routines are wrapped in the following methods:

createProfile()

Creates a new profile - basically a pair of ECDSA keys. This profile is saved encrypted in local storage on the domain (keys.swap.io) and can further be referenced to sign txs.

This method pops an iframe on your website with dialog to create a new profile.

createAddresses()

Creates one or more blockchain addresses.

sign()

Signs a transaction for an address.

signMessage()

Signs a message by an address.

publicKey()

Returns public key for a specific address.

privateKey()

  1. Pops up a dialog on your website with private key for specific address.
  2. Create profile (bip39 - based).
  3. Create wallet (bip 32 - pair of derived subkeys).
  4. Sign transaction
  5. Sign message
  6. Get list of wallets

Pops up a dialog on your website with private key for specific address.

backupProfile()

Pops up a dialog to backup a profile.


Project setup

npm run install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build

Run your unit tests

npm run test:unit

Run your end-to-end tests

npm run test:e2e

Lints and fixes files

npm run lint

Customize configuration

See Configuration Reference.

About

https://keys.swap.io

License:MIT License


Languages

Language:TypeScript 46.9%Language:Vue 36.2%Language:SCSS 9.3%Language:JavaScript 6.3%Language:HTML 0.9%Language:Dockerfile 0.4%