Skip to content
This repository has been archived by the owner on Jun 7, 2023. It is now read-only.

iotaledger/chat.ixi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CHAT.IXI

About

CHAT.ixi is an IXI (IOTA eXtension Interface) module for the Iota Controlled agenT (Ict). It extends the functionality of the core Ict client with a chat application which allows users in the Ict network to exchange messages on a permissionless, distributed data-integrity protocol - the Tangle.

CHAT.ixi is described in more detail in this official IOTA blog post.

Installation

Step 1: Install Ict

Please find instructions on iotaledger/ict.

Make sure you are connected to the main network and not to an island, otherwise you won't be able to message anyone in the main network.

Step 2: Get CHAT.ixi

There are two ways to do this:

Simple Method

Go to releases and download the chat.ixi-{VERSION}.jar from the most recent release.

Advanced Method

You can also build the .jar file from the source code yourself. You will need Git and Gradle.

# download the source code from github to your local machine
git clone https://github.com/iotaledger/chat.ixi
# if you don't have git, you can also do this instead:
#   wget https://github.com/iotaledger/chat.ixi/archive/master.zip
#   unzip master.zip

# change into the just created local copy of the repository
cd chat.ixi

# build the chat.ixi-{VERSION}.jar file
gradle ixi

Step 3: Install CHAT.ixi

Move chat.ixi-{VERSION}.jar to the modules/ directory of your Ict:

mv chat.ixi-{VERSION}.jar ict/modules

Step 4: Run Ict

Switch to Ict directory and run:

java -jar ict-{VERSION}.jar

Step 5: Configure CHAT.ixi (Optional)

CHAT.ixi is automatically configured at the first start, so no further action is required.

For manual configuration, open ict/modules/chat-config/chat.cfg and change following parameters accordingly:

username={USERNAME}
password={PASSWORD}

Replace {USERNAME} with the username you want to appear with in the chat. Replace {PASSWORD} with any password to protect your CHAT.ixi from unauthorized access.

Step 6: Open the Web GUI

Open Ict Web GUI http://{HOST}:2187 in your web browser, where {HOST} is the IP address of your Ict. In the IXI MODULES tab, you should now find CHAT.ixi. Simply click on the open button to access the chat.

Disclaimer

While having the CHAT.ixi web GUI open, your username and user id will be submitted to the network in regular time intervals, so that other users can see that you are online.

We are not responsible for any damage caused by running this software. Please use it at your own risk.