ION is a decentralized Layer 2 network for Decentralized Identifiers that runs atop the Bitcoin blockchain. Running an ION node minimizes trust in external parties for resolving ION DIDs, helps make the network more resilient and reliable, and provides the operator with better DID resolution performance.
The ION node reference implementation a production-stable implementation of the v1 DIF Sidetree specification. Presently, node installation and operation is attuned for experienced developers who are able to invest the time in running, testing, and contributing to the codebase. This recommendation will change over time, which contributors will communicate to the community via blog posts and communications from DIF and collaborating organizations.
The ION node implementation is composed of a collection of microservices. Of these components, the major dependencies are Bitcoin Core, Kubo (IPFS), and MongoDB (for local persistence of data).
We recommend you run ION on a machine with the following minimum specs:
- i5 processor (2017+ models)
- 6GB of RAM
- 1TB of storage
Both Linux and Windows are supported and tested. For Linux, the setup is verified on Ubuntu 18, so we recommend Debian-based distros for Linux setup.
We use snap to simplify installation of certain services. Run the following command to install snap:
sudo apt install snapd
You may need to add the snap binaries directory to your path by adding the following line in ~/.bash_profile
PATH="$PATH:/snap/bin"
To ensure that the path changes go into effect immediately:
source ~/.bash_profile
Services within ION rely on Node.js version 14. Run the following command to install Node v14:
sudo snap install node --classic --channel=14
Building ION requires your distro's equivalent of Ubuntu's 'build-essential', e.g. make, g++, etc.
sudo apt install build-essential
Go go https://nodejs.org, download and install the latest v14 of Node.js.
If you wish to run a node that writes ION DID operations, you will need to enable uPnP on your router or open ports 4002
and 4003
so that the operation data files can be served to others via IPFS.
NOTE: This guide describes steps to setup an ION node targeting bitcoin testnet, but can be used to target the bitcoin mainnet by substituting testnet configs for mainnet.
Bitcoin and ION need to be configured to use either testnet
(for development) or mainnet
(for production). If you change one service from testnet
to mainnet
or vice versa, the other services will also need to be rebuilt to match. Default config values for testnet
are not valid for mainnet
and services will fail to start if they are mismatched.
An ION node needs a trusted Bitcoin peer for fetching and writing ION transactions. We use Bitcoin Core for this.
If you would like to install and start Bitcoin Core automatically on Linux, you can review and run the automated script committed in the Sidetree repo.
NOTE: Initial synchronization takes ~2 hours for testnet on a 2 core machine with an SSD.
You can find Windows and Linux binaries for Bitcoin Core releases here.
Create a configuration file (bitcoin.conf
) designating
- the path you would like the Bitcoin data to be stored in (the
[datadir]
) - a username (e.g.
admin
) - a password (must match
ion-bitcoin
's configuration later)
Testnet | Mainnet |
---|---|
testnet=1
server=1
datadir=~/.bitcoin
rpcuser=<your-rpc-username>
rpcpassword=<your-rpc-password>
txindex=1 |
server=1
txindex=1
datadir=~/.bitcoin
rpcuser=<your-rpc-username>
rpcpassword=<your-rpc-password> |
Start Bitcoin Core and let it sync:
./bin/bitcoind --config bitcoin.conf
NOTE: You can add
--daemon
to run bitcoind as a daemon process.
Running Bitcoin Core with friendly UI after install:
bitcoin-qt.exe -testnet -datadir=<path-to-store-data> -server -rpcuser=<your-rpc-username> -rpcpassword=<your-rpc-password> -txindex=1
Follow the instruction found at IPFS website to install Kubo CLI (IPFS implementation), you can also use Docker image, or install the IPFS Desktop which internally installs Kubo daemon, it provides you with a user friendly UI.
The default persistence option for storing data locally is MongoDB, though it is possible to create adapters for other datastores. To use the default MongoDB option, you'll need to install MongoDB community build:
- Download as a
deb
package: https://www.mongodb.com/download-center/community. - Installation doc: https://docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/
NOTE: You may not have all the dependencies required to run MongoDB, if so you can run
sudo apt-get install -f
to bring them in.
You'll probably want to store the data from the Mongo instance in the same drive you chose to store the blockchain data, due to the large amount of storage required. Set the directory for this by creating a db
folder in the location you chose and run mongod --dbpath ~/YOUR_LOCATION/db
Download and install MongoDB from https://www.mongodb.com/download-center/community.
NOTE: To view MongoDB files with a more approachable GUI, download and install MongoDB Compass: https://docs.mongodb.com/compass/master/install/
Clone https://github.com/decentralized-identity/ion:
git clone https://github.com/decentralized-identity/ion
Example configuration files for both testnet-
and mainnet-
can be found under the top-level config/
directory.
NOTE: If not specified,
json/testnet-*-*.json
files are used as default configuration values. Be sure to start with whichever config template (testnet-
ormainnet-
) is right for your use case.
Copy the configuration files <testnet-or-mainnet>-bitcoin-config.json
and <testnet-or-mainnet>-bitcoin-versioning.json
to another directory, (e.g. /etc/ion/
)
Update the ION Bitcoin microservice (e.g. /etc/ion/testnet-bitcoin-config.json
):
bitcoinPeerUri
- Ensure it points to the RPC endpoint of the Bitcoin Core client you setup earlier in this guide
- testnet:
http://localhost:18332
- mainnet:
http://localhost:8332
(assuming default Bitcoin Core configuration from Step 2)
bitcoinDataDirectory
- This is an optional config value. By configuring this value, instead of using rpc call to initialize Bitcoin microservice, the node will read from the block binary files. This is useful in speeding up init time if you have fast access to the files (local SSD is optimal). If the files are stored and retireved across network, such as on the cloud in AWS S3 Bucket or Azure Blob Storage, then this will be slower than using RPC as it has to download GB worth of files.
- Leave it blank if you do not wish to init from file. If you want to init from files, it needs to point to the block files folder:
- testnet:
[datadir]/testnet3
. - mainnet: exactly the same as the
[datadir]
value configured for Bitcoin Core in Step 2.
bitcoinWalletImportString
- if you intend to write DID operations, populate it with your private key, else use any generated import string without any bitcoin
- testnet: (a valid
testnet
example wallet will be generated each timeion-bitcoin
fails to load a valid WIF string on startup as part of its error message. You can use one of those values for testing as well - mainnet: (must be a mainnet-compatible WIF)
bitcoinRpcUsername
&bitcoinRpcPassword
- must match what was set in
bitcoin.conf
from step 2.
- must match what was set in
Update the configuration for the ION core service under json/testnet-core-config.json
:
didMethodName
- testnet:
ion:test
- mainnet:
ion
- testnet:
NOTE: You can set a few config variables via environment variables for simplicity. The following env variables, if set, will override the values listed in the config files.
Environment Variable | Config Mapping |
---|---|
BITCOIN_DATA_DIR |
bitcoinDataDirectory |
BITCOIN_RPC_PASSWORD |
bitcoinRpcPassword |
BITCOIN_WALLET |
bitcoinWalletImportString |
BITCOIN_ENDPOINT |
bitcoinPeerUri |
MONGO_ENDPOINT |
mongoDbConnectionString |
Run the following commands to build ION:
npm i
npm run build
NOTE: You may nee to run
npm install tsc
before runningnpm run build
to install TypeScript in Linux/Mac environments.
NOTE: You must rerun
npm run build
every time a configuration JSON file is modified.
Update the paths below to where you edited and saved the config files from the previous step.
ION_BITCOIN_CONFIG_FILE_PATH=/etc/ion/testnet-bitcoin-config.json
ION_BITCOIN_VERSIONING_CONFIG_FILE_PATH=/etc/ion/testnet-bitcoin-versioning.json
npm run bitcoin
NOTE: This service will fail to start until your Bitcoin Core client has blocks past the ION genesis block. Please wait and try again later if this happens.
NOTE: This is not required when using
testnet
because the defaults are sufficient
Copy the configuration files <testnet or mainnet>-core-config.json
and <testnet or mainnet>-core-versioning.json
to another directory, (e.g. /etc/ion/
or ~
)
Start a new console and run the following command to start the core service.
NOTE: You can set a few config variables via environment variables for simplicity. The following env variables, if set, will override the values listed in the config files.
Environment Variable | Config Mapping |
---|---|
IPFS_ENDPOINT |
ipfsHttpApiEndpointUri |
BLOCKCHAIN_SERVICE_ENDPOINT |
blockchainServiceUri |
MONGO_ENDPOINT |
mongoDbConnectionString |
ION_CORE_CONFIG_FILE_PATH=/usr/local/src/ion/config/testnet-core-config.json
ION_CORE_VERSIONING_CONFIG_FILE_PATH=/usr/local/src/ion/config/testnet-core-versioning.json
npm run core
NOTE: This service will fail to start until your ION Bitcoin service has started successfully.
Give it some time to synchronize ION transactions.
Check the following DID resolution in your browser: