ICON Service
ICON Service manage state of ICON node including ICX, SCOREs using LevelDB.
Before processing transactions, ICON Service check for syntax errors, balances, etc.
Installation
This chapter will explain how to install icon service engine on your system.
Requirements
ICON SCORE development and execution requires following environments.
- OS: MacOS, Linux
- Windows are not supported yet.
- Python
- Make a virtualenv for Python 3.6.5+ (3.7 is also supported)
- check your python version
$ python3 -V
- IDE: Pycharm is recommended.
Libraries
name | description | github |
---|
LevelDB | ICON SCORE uses levelDB to store its states. | LevelDB GitHub |
libsecp256k | ICON SCORE uses secp256k to sign and validate a digital signature. | secp256k GitHub |
Setup on MacOS
$ brew install leveldb
$ mkdir work
$ cd work
$ virtualenv -p python3 venv
$ source venv/bin/activate
(venv) $ pip install iconservice
Setup on Linux
$ sudo apt-get install libleveldb1 libleveldb-dev
$ sudo apt-get install libsecp256k1-dev
$ mkdir work
$ cd work
$ virtualenv -p python3 venv
$ source venv/bin/activate
(venv) $ pip install iconservice
Building source code
First, clone this project. Then go to the project folder and create a
user environment and build using wheel
$ virtualenv -p python3 venv
$ source venv/bin/activate
(venv)$ pip install wheel
(venv)$ python setup.py sdist bdist_wheel
iconservice-x.x.x-py3-none-any.whl
Reference
License
This project follows the Apache 2.0 License. Please refer to LICENSE for details.