Skip to content

terablockchain/tera

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TERA PLATFORM

This is a public blockchain, the main feature of which is full decentralization through the use of pow consensus and serverless dapps, as well as very fast operation speed (peak performance of 1000 tps without sharding and more than 1 million with its use).

Light-wallet (web-version)

https://terawallet.org

  • Note: the light wallet has a decentralized core - i.e. it works with all available nodes in the network

Mobile wallet apk-file for Android:

Installing full node from source code by steps:

Attention:

  • After the installation shown below, enter the address your server in the browser. Example: 12.34.56.78:8080
  • We recommend putting an additional password on the private key ("Set password" button) - in this case the private key will be stored in file in encrypted form.
  • We recommend not storing private keys on remote servers.
  • If you do not specify the http password for full-node, you can only access from the local address 127.0.0.1:8080 and only within 10 minutes after the launch of the node
  • For remote access to the node only from the specified computer (white IP) set the HTTP_IP_CONNECT constant (for example: "HTTP_IP_CONNECT": "122.22.33.11")
  • When installing, pay attention to the secp256k1 cryptographic library. There should be no errors when compiling it (with command: npm install)
  • If you have the auto-update constant enabled ("USE_AUTO_UPDATE": 1), the update is performed automatically. If off, then you need to load it manually and restart the node (see section below).

Installing on Windows:

  1. Download and install Nodejs https://nodejs.org
  2. Download and install git https://git-scm.com/download/win
  3. Then run the commands (in program: cmd or PowerShell):
cd ..\..\..\
git clone https://gitlab.com/terafoundation/tera2.git wallet
npm install --global --production windows-build-tools
npm install -g node-gyp
cd wallet/Source
npm install
node set httpport:8080 password:password_no_spaces
run-node.bat

Before starting the node, we recommend downloading a backup of the blockchain (zip file) at the link https://terawallet.org/files/jinn-db.zip Unpack the archive and put the DB folder in the wallet's DATA folder (with full replacement). Launch the node with the command:

run-node.bat

If you want to run the wallet as a background process, then instead of the last command (run-node.bat), do the following:

npm install pm2 -g
pm2 start run-node.js

Opening ports:

netsh advfirewall firewall add rule name="Open 30000 port" protocol=TCP localport=30000 action=allow dir=IN

Installation on Linux

UBUNTU 18.04/20.04:

sudo apt-get update
apt-get install unzip
apt-get install -y git
apt-get install -y nodejs
apt-get install -y npm
npm install pm2 -g
git clone https://gitlab.com/terafoundation/tera2.git wallet
apt -y install build-essential
apt group install "Development Tools"
cd ~/wallet/Source
npm install
node set httpport:8080 password:password_no_spaces

open ports:

sudo ufw allow 30000/tcp
sudo ufw allow 8080/tcp
sudo ufw allow 80/tcp

start node:

Before starting the node, we recommend downloading and installing a backup of the blockchain (zip file), run it:

cd ~/wallet/DATA
wget https://terawallet.org/files/jinn-db.zip
rm -r DB
unzip -o jinn-db.zip

Then launch the node with the command:

cd ~/wallet/Source
pm2 start run-node.js

CentOS 7:

yum install install unzip
yum install -y git
curl --silent --location https://rpm.nodesource.com/setup_8.x | sudo bash -
yum  install -y nodejs
yum install gcc gcc-c++
npm install pm2 -g
git clone https://gitlab.com/terafoundation/tera2.git wallet
cd ~/wallet/Source
npm install
node set httpport:8080 password:password_no_spaces

open ports (all):

systemctl stop firewalld 
systemctl disable firewalld

start node:

Before starting the node, we recommend downloading and installing a backup of the blockchain (zip file), run it:

cd ~/wallet/DATA
wget https://terawallet.org/files/jinn-db.zip
unzip -o jinn-db.zip

Then launch the node with the command:

cd ~/wallet/Source
pm2 start run-node.js

Updates

cd ~/wallet/Source
node update.js

MAIN NETWORK

Default values:

port:30000
httpport:8080

TEST NETWORK

Default values:

port:33000
httpport:8800

Launch:

cd ~/wallet
cp -a Source SourceJinn
cd SourceJinn
node set-jinn httpport:8800 password:password_no_spaces
pm2 start run-jinn.js

Installation & Execution via Docker

Getting Started

To run Empera node inside Docker container you need to have installed Docker. Also for Mac or Windows you can install instead Kitematic.

Open ports:

Use previous instructions for your OS to open 30000/tcp, 8080/tcp, 80/tcp ports

Clone the tepo:

git clone https://gitlab.com/terafoundation/tera2.git wallet
cd wallet/Source

Change node password(optional):

Open file node.Dockerfile and modify password at following lines:

RUN cd /user/src/empera/source \
 && npm install \
 && node set httpport:8080 password:default_password

By default password is default_password

Build docker image:

May work slowly for the first time. By default, a backup copy of the blockchain is downloaded and installed (about 10 GB), the cache is used during the following launches

docker build -f node.Dockerfile . --tag empera/node:latest

Run docker image(start node):

docker run -d  --network host empera/node

To validate if node started correctly visit localhost:8080

Specification

  • Name: TERA
  • Consensus: PoW
  • Algorithm: Terahash (sha3 + Optimize RAM hashing)
  • Total suplay: 1 Bln
  • Reward for block: about 3 TERA (one billionth of the remainder of undistributed amount of coins (account 0) multiplied by 9)
  • Block size 350 KB
  • Premine: 5%
  • Development fund: 1% of the mining amount
  • Block generation time: 3 second
  • Block confirmation time: 10 seconds
  • Speed: 1000 transactions per second
  • Commission: free of charge
  • Cryptography: sha3, secp256k1
  • Platform: Node.JS

NOTE

  • A public ip address is recommended for starting a node
  • Check the firewall (port must open on the computer)

Refs:

Blockchain:

Articles:

Chinese

RUS

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published