nim-eth-keys/README.md

25 lines
1.5 KiB
Markdown
Raw Normal View History

2018-09-04 22:21:39 -06:00
# eth_keys
2018-02-08 10:51:13 +01:00
2018-09-04 22:21:39 -06:00
[![Build Status (Travis)](https://img.shields.io/travis/status-im/nim-eth-keys/master.svg?label=Linux%20/%20macOS "Linux/macOS build status (Travis)")](https://travis-ci.org/status-im/nim-eth-keys)
[![Windows build status (Appveyor)](https://img.shields.io/appveyor/ci/nimbus/nim-eth-keys/master.svg?label=Windows "Windows build status (Appveyor)")](https://ci.appveyor.com/project/nimbus/nim-eth-keys)
2018-03-02 11:57:43 +01:00
[![License: Apache](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
2018-09-04 22:21:39 -06:00
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
2018-02-08 11:26:57 +01:00
![Stability: experimental](https://img.shields.io/badge/stability-experimental-orange.svg)
2018-02-08 10:51:13 +01:00
2018-05-23 17:44:50 -07:00
This library is a Nim re-implementation of [eth-keys](https://github.com/ethereum/eth-keys): the common API for working with Ethereum's public and private keys, signatures, and addresses.
2018-02-08 10:51:13 +01:00
2018-05-23 17:44:50 -07:00
By default, Nim eth-keys uses Bitcoin's [libsecp256k1](https://github.com/bitcoin-core/secp256k1) as a backend. Make sure libsecp256k1 is available on your system.
An experimental pure Nim backend (Warning ⚠: do not use in production) is available with the compilation switch `-d:backend_native`
2018-03-02 11:57:43 +01:00
2018-05-27 14:10:03 -07:00
## Installation
nimble install https://github.com/status-im/nim-eth-keys/blob/master/eth_keys.nimble
2018-03-02 11:57:43 +01:00
2018-05-27 14:10:03 -07:00
## License
2018-03-02 11:57:43 +01:00
2018-09-04 22:21:39 -06:00
Licensed under both of the following:
2018-03-02 11:57:43 +01:00
2018-09-04 22:21:39 -06:00
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
* MIT license: [LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT