1
0
Fork 0
merge-requests/3/head
progr76@gmail.com 2019-04-20 13:48:43 +03:00
parent 0b5f3b7957
commit 2d1a0fb38b
129 changed files with 3118 additions and 483 deletions

Binary file not shown.

Binary file not shown.

View File

@ -5,7 +5,7 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/
const ipcRenderer = require('electron').ipcRenderer;

View File

@ -5,7 +5,7 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/
@ -1644,8 +1644,7 @@ function GetSignFromArr(Arr,StrPrivKey)
if(!IsHexStr(StrPrivKey) || StrPrivKey.length !== 64)
return "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000";
var PrivKey = GetArrFromHex(StrPrivKey);
var hash = shaarr(Arr);
var sigObj = SignLib.sign(Buffer.from(hash), Buffer.from(PrivKey), null, null);
var sigObj = SignLib.sign(SHA3BUF(Arr), Buffer.from(PrivKey), null, null);
return GetHexFromArr(sigObj.signature);
};

View File

@ -5,7 +5,7 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/
var MAX_SUM_TER = 1e9;

View File

@ -5,7 +5,7 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/
var MAX_SUPER_VALUE_POW = (1 << 30) * 2;
@ -110,6 +110,7 @@ window.DELTA_FOR_TIME_TX = 0;
window.MIN_POWER_POW_TR = 0;
window.CONSENSUS_PERIOD_TIME = 1000;
window.FIRST_TIME_BLOCK = 1530446400000;
window.NEW_SIGN_TIME = 25500000;
window.SetBlockChainConstant = function (Data)
{
var DeltaServerClient = new Date() - Data.CurTime;
@ -118,6 +119,7 @@ window.SetBlockChainConstant = function (Data)
window.DELTA_CURRENT_TIME2 = Data.DELTA_CURRENT_TIME - DeltaServerClient;
window.MIN_POWER_POW_TR = DELTA_POWER_POW_TR + Data.MIN_POWER_POW_TR;
window.FIRST_TIME_BLOCK = Data.FIRST_TIME_BLOCK;
window.NEW_SIGN_TIME = Data.NEW_SIGN_TIME;
window.CONSENSUS_PERIOD_TIME = Data.CONSENSUS_PERIOD_TIME;
window.GetCurrentBlockNumByTime = function ()
{

View File

@ -5,7 +5,7 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/

View File

@ -5,7 +5,7 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/
var DiagramMap = {};

View File

@ -5,7 +5,7 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/
const LOC_ADD_NAME = "$";

File diff suppressed because it is too large Load Diff

View File

@ -5,7 +5,7 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/
var $jscomp = $jscomp || {};

View File

@ -5,7 +5,7 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/
var DELTA_LONG_MINING = 5000;

View File

@ -5,7 +5,7 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/
var PayList = [];

View File

@ -5,7 +5,7 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/

View File

@ -5,7 +5,7 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/
var MIN_VERSION = 903;

View File

@ -631,7 +631,7 @@
var StartNum=$("idSmartStart").value;
if(!StartNum)
StartNum=8;
GetData("DappSmartList",{StartNum:StartNum,CountNum:50}, function (SetData)
GetData("DappSmartList",{StartNum:StartNum,CountNum:100}, function (SetData)
{
if(SetData && SetData.result)
{
@ -796,7 +796,7 @@
<INPUT type="button" onclick="LoadSmart()" class="bt" value="Load">
<select size="45" id="idProjectList" style="width:100%;height:375px;" onchange="SetCurrentProject()" onclick="SetCurrentProject()">
</select>
Smarts, start:<INPUT type="number" id="idSmartStart" style="width: 111px;" onchange="FillSmart()" value="8">
Smarts, start:<INPUT type="number" id="idSmartStart" style="width:98%;" onchange="FillSmart()" value="8">
<select size="45" id="idSmartList" style="width:100%;height:380px;" onchange="SetCurrentSmart()" onclick="SetCurrentSmart()">
</select>
</DIV>

View File

@ -580,6 +580,7 @@
//glDebugPath="./dapp-smart/static/miner-list.html";
//glDebugPath="./dapp-smart/static/ReadAccountArr.html";
//glDebugPath="./dapp-smart/static/miner-list.html";
//glDebugPath="./dapp-smart/static/supply.html";
//{"HTMLBlock":24201380,"HTMLTr":0}
</script>

View File

@ -1,11 +1,20 @@
v. 0.897
* **v. 0.922:**
* 1) The new update fixed bugs of API 
* 2) Limited top reward value (from 22.5 million blocks)
* 3) Added new methods for API2
The API-2 is designed to make it easier to write third-party applications. Server-side cryptography and POW operations are performed. Therefore, it is not recommended for public access, because it is not protected from DDOS attacks. Use it if applications such as the exchange server are on the same private network.
v. 0.884
* **v. 0.884**
Will be enhanced the behavior of the constants COREY_WATCH_DOG. If you will be the number 2: "COREY_WATCH_DOG": 2, instead of an overload will just trim the blocks on the 5000, it will save time filling out the memory hashes. I. e. mining will practically go without interruption
v. 0.880
* **v. 0.880**
It contains API Protocol improvements for DApp.
v. 0.867

View File

@ -1,6 +1,7 @@
TERA is a platform for developing applications in a decentralized network. Programs can manage and transfer any digital values, including coins and tokens. This platform allows you to build a world economy without borders. The network is built on a highly reliable blockchain Protocol with PoW consensus.
TERA is a platform for developing applications in a truly decentralized network. Programs can manage and transfer any digital values, including coins and tokens. This platform allows you to build a world economy without borders. The network is built on a highly reliable blockchain Protocol with PoW consensus.
It is our great pleasure to invite you to join us to mine TERA, a coin that offers solutions for issues of existing cryptocurrencies, namely centralization, transaction throughput, transaction speed, confirmation times, transaction fees and general usability and difficulty of integration into existing payment and financial systems.
We have managed to create a blockchain with 1 second block time, 8 seconds for full confirmation of transfer and zero fees. On top of that TERA blockchain is capable of throughput of 1000 transactions per second while retaining all praised blockchain features and bringing huge possibilities for further development and seamless integration with existing infrastructure as well as with new emerging technologies.
Traditional blockchains do not use the ordering of nodes with each other. This random organization of links does not guarantee fast delivery of blocks between all nodes. In Tera, nodes organize themselves into an orderly manner of communication.
### TERA Protocol
Traditional blockchains do not use the ordering of nodes with each other. This random organization of links does not guarantee fast delivery of blocks between all nodes. In Tera, nodes organize themselves into an orderly manner of communication.The blockchain takes no longer than 3 seconds to deliver data from the 1st node to the last one. To achieve this, the nodes are connected to each other in a special connection, based on the similarity of the addresses of nodes with each other.

View File

@ -1,19 +1 @@
## UPDATES
* **v. 0.897:**
The API-2 is designed to make it easier to write third-party applications. Server-side cryptography and POW operations are performed. Therefore, it is not recommended for public access, because it is not protected from DDOS attacks. Use it if applications such as the exchange server are on the same private network.
* **v. 0.884:**
Will be enhanced the behavior of the constants COREY_WATCH_DOG. If you will be the number 2: "COREY_WATCH_DOG": 2, instead of an overload will just trim the blocks on the 5000, it will save time filling out the memory hashes. I. e. mining will practically go without interruption
* **v. 0.880:**
It contains API Protocol improvements for DApp.
* **v. 0.877:**
Today will be an update. The update improves work of DApp.
The update is optional — you can skip it.
* **v. 0.867:**
Made Protocol support light-wallet, fixed a bug in validate download chains.
The update is optional and can be skipped.
[Full Changelog...](/changelog.html)
 ** **

View File

@ -1,5 +1,12 @@
## UPDATES
* **v. 0.922:**
* 1) The new update fixed bugs of API 
* 2) Limited top reward value (from 22.5 million blocks)
* 3) Added new methods for API2
* 
* **v. 0.897:**
The API-2 is designed to make it easier to write third-party applications. Server-side cryptography and POW operations are performed. Therefore, it is not recommended for public access, because it is not protected from DDOS attacks. Use it if applications such as the exchange server are on the same private network.
* **v. 0.884:**

View File

@ -1,3 +1,3 @@
#### Double spending
Tera uses blockchain with pow consensus. This allows all transactions to be arranged sequentially one after another. Transactions are also executed sequentially. When withdrawing from the account, the necessary amounts are checked. At the time of write-off, the counter "OperationID" is incremented. Each subsequent payment transaction must have the following "OperationID" number to prevent the same transaction from being applied multiple times.
### Double spending
In the Bitcoin network, to protect the user against double spending, it is necessary to wait for at least 10 minutes, sometimes 1 hour.
In the Tera network, blocks are created every second, but if you want the same degree of reliability as in the Bitcoin network - you need to wait for the same duration. The duration of time you wait correlates to the degree of reliability. There is no magic here; in any PoW algorithm, you exchange time for reliability. In TERA, we have made a more flexible choice. You can wait 8 seconds, 1 minute, or 1 hour (if, for example, transferring sums worth millions of dollars).

View File

@ -1,3 +1,3 @@
#### Protection from DDoS attacks
The professionalism of the teams developers allowed the creation of a unique algorithm for protecting the system from DDOS attacks and various types of intrusions. All data and funds are securely protected.
#### Protection from DDoS attacks
Each block has a limit of 130 KB; the average transaction size is 130 bytes, so an average of 1000 transactions per block is placed. Each transaction must have a PoW field, which records the work done to calculate the hash. This field is used to determine whether or not this transaction is included in the block. It must be at least a certain value and must be sufficient to compete with other transactions. Only the first (approximately) 1000 transactions with the highest PoW values are included in the block.

View File

@ -1,3 +1,4 @@
#### Desire to Develop
Every day TERA develops, trying to keep up with the times. Specialists are constantly upgrading and improving the project.
#### TERA DApps
This is the next generation of smart contract development, any service can be implemented as a decentralized program that does not require a server for hosting (serverless technology). The original script of the program is not available for change by third parties and is free from censorship. They can work forever and belong to no one.

View File

@ -1,9 +1,84 @@
## NEWS
**Local blockchain desynchronization detector test**
**13.04.2019**
Now the Web wallet supports 5 languages: English, Chinese, Korean, German, Russian.
If you want to add a new language, download this [JSON file](https://terafoundation.org/files/lang.txt), perform the translation and place it on the telegram channel @TeraLab
**11.04.2019**
On April 9 and 10, 2019 TERA Foundation team took part in the conference on innovation, marketing and business "POTOK". The event was held in Russia, Moscow. https://potokconf.ru/
From now on, we will try to participate in all conferences that may be of interest to us.
**05.04.2019**
TeraNova - Step1
https://medium.com/@progr76/update-teranova-31dd3380f25c
**29.03.2019**
**The test network was updated to version 0.980**
Added the ability to load the blockchain chain from the end, a special constant is responsible for this. If the value is non-zero, the difference between the current blocks calculated based on the current time and the number recorded in the database is checked when the node is unsynchronized or restarted, if the difference is higher than the required value, the nearest table of residues is loaded from the network and the rest of the block chain is loaded from it.
By default, the value is set to 10000 blocks.
```js
"REST_START_COUNT": 10000
```
---
**26.03.2019**
### The solution to the problem of Blockchain Sharding
https://medium.com/@progr76/the-solution-to-the-problem-of-sharding-the-blockchain-ee90e001e22
---
**23.03.2019**
### We are starting to create DAO.
Please give feedback https://discord.gg/2dwydVh
---
**23.03.2019**
### The parametric diagram-calculator of the future new formula
https://terafoundation.org/emission.html
Params:
* Point 43 - start new formula
* Point 45 - approximating point
* KTera multiplier in the new formula of payment of awards
Formula: **One billionth of the remainder of undistributed amount of coins multiplied  by constant KTera**
```js
Reward=KTera*Account0/1000000000
```
---
**21.03.2019**
### New blockchain desynchronization detector test
* Note from  08.04.2019:  Now its work in main-net
The test network begins the test of a new detector for determining the desynchronization of the blockchain from the main chain.
If the last 10 blocks are created by their own node, then their POW should not differ more than 10 times from the previous blocks, otherwise the forced synchronization of the blockchain with the network is started.
@ -13,4 +88,6 @@ Settings can be changed-new constant added:
    "OWN_BLOCKS": 10,
    "K_POW": 10
  },
```
```

View File

@ -1,7 +1,7 @@

* [1. TERA on QBTC Exchange](https://www.qbtc.ink/trade?symbol=TERA_BTC)
* [2. TERA on Bitalong Exchange](https://www.bitalong.com/trade/index/market/tera_usdt/)
* [3. TERA on Bitmesh Exchange](https://bitmesh.com/exchange?market=btc_tera#/)
* [4. TERA on CHAOEX Exchange](https://chaoex-en-us.udesk.cn/hc/articles/83487)
* [5. TERA on CITEX Exchange](https://www.citex.co.kr/#/trade/2/37)
* [6. TERA Roadmap](/#roadmap)
* [1. TERA on QBTC Exchange](https://www.qbtc.ink/trade?symbol=TERA_BTC)
* [2. TERA on Bitalong Exchange](https://www.bitalong.com/trade/index/market/tera_usdt/)
* [3. TERA on Bitmesh Exchange](https://bitmesh.com/exchange?market=btc_tera#/)
* [4. TERA on CHAOEX Exchange](https://chaoex-en-us.udesk.cn/hc/articles/83487)
* [5. TERA on CITEX Exchange](https://www.citex.co.kr/#/trade/2/37)
* [6. TERA Roadmap](/#roadmap)

View File

@ -1,5 +1,8 @@

* [1. TERA Mining Documentation](https://sourceforge.net/p/tera/code/ci/master/tree/README.md)
* [2. TERA HASH](https://docs.google.com/document/d/18DtASGhrbRwXCAkQR1hQG0lVdrStp4CgA-pd6hicwfo/edit?usp=sharing/)
* [1. START Mining](https://sourceforge.net/p/tera/code/ci/master/tree/README.md)
* [2. TERA HASH documentation](https://docs.google.com/document/d/18DtASGhrbRwXCAkQR1hQG0lVdrStp4CgA-pd6hicwfo/edit?usp=sharing/)
* [3. Docker](https://github.com/nferro/tera-docker)

View File

@ -1,9 +1,9 @@

* [1. TERA Website](https://terafoundation.org/)
* [2. TERA EXPLORER](https://terafoundation.org/explorer.html)
* [3. TERA WALLET](https://terafoundation.org/web-wallet.html)
* [4. TERA NETWORK MAP](https://terafoundation.org/map.html)
* [5. TERA WHITE PAPER (EN)](https://terafoundation.org/files/TERA_WP_EN.pdf)
* [6. TERA WHITE PAPER (RU)](https://terafoundation.org/files/TERA_WP_RU.pdf)
* [7. TERA WHITE PAPER (DE)](https://terafoundation.org/files/TERA_WP_DE.pdf)
* [8. TERA WHITE PAPER (CN)](https://sourceforge.net/p/tera/code/ci/master/tree/Doc/Chinese/WP_chinese.pdf?format=raw)
---
* [1. TERA Website](https://terafoundation.org/)
* [2. TERA EXPLORER](https://terafoundation.org/explorer.html)
* [3. TERA WALLET](https://terafoundation.org/web-wallet.html)
* [4. TERA NETWORK MAP](https://terafoundation.org/map.html)
* [5. TERA WHITE PAPER (EN)](https://terafoundation.org/files/TERA_WP_EN.pdf)
* [6. TERA WHITE PAPER (RU)](https://terafoundation.org/files/TERA_WP_RU.pdf)
* [7. TERA WHITE PAPER (DE)](https://terafoundation.org/files/TERA_WP_DE.pdf)
* [8. TERA WHITE PAPER (CN)](https://sourceforge.net/p/tera/code/ci/master/tree/Doc/Chinese/WP_chinese.pdf?format=raw)

View File

@ -1,9 +1,11 @@

* [1. TERA ANN on BitcoinTalk](https://bitcointalk.org/index.php?topic=4573801.0)
* [2. TERA on Twitter](https://twitter.com/terafoundation)
* [3. TERA on Reddit](https://www.reddit.com/user/Terafoundation)
* [4. TERA on Discord](https://discord.gg/CvwrbeG)
* [5. TERA Telegram Chanel](https://web.telegram.org/#/im?p=@terafoundation)
* [6. TERA on QQ](https://jq.qq.com/?_wv=1027&k=5h7cMi4)
---
* [1. TERA ANN on BitcoinTalk](https://bitcointalk.org/index.php?topic=4573801.0)
* [2. TERA on Twitter](https://twitter.com/terafoundation)
* [3. TERA on Reddit](https://www.reddit.com/user/Terafoundation)
* [4. TERA on Discord](https://discord.gg/CvwrbeG)
* [5. TERA Telegram Chanel](https://web.telegram.org/#/im?p=@terafoundation)
* [6. TERA on QQ](https://jq.qq.com/?_wv=1027&k=5h7cMi4)
* [7. (German) Telegram ](https://t.me/terafoundation_germany)
* [8. (China) Telegram](https://t.me/TeraChina)

View File

@ -1,4 +1,4 @@

* [FMessenger](http://freetimes.cc/fmessenger/)

* [FMessenger](http://freetimes.cc/fmessenger/)

View File

@ -1 +1 @@
## ABOUT TERA BLOCKCHAIN
## Exchanges 

File diff suppressed because one or more lines are too long

BIN
Source/SITE/PIC/bitcola.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

220
Source/SITE/_token.html Normal file
View File

@ -0,0 +1,220 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>TERA Foundation: COIN</title>
<meta data-n-head="true" data-hid="description" name="description" content="Tera - Fast block generation, High transaction throughput, User-friendly">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Google font -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700%7CVarela+Round" rel="stylesheet">
<!-- Bootstrap -->
<link type="text/css" rel="stylesheet" href="CSS/bootstrap.min.css" />
<!-- Font Awesome Icon -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<!-- Custom stlylesheet -->
<link type="text/css" rel="stylesheet" href="CSS/style.min.css" />
{{File=./SITE/metrika.html}}
</head>
<body>
<!-- Header -->
<header id="home" class="pages-head-home">
<!-- Nav -->
<nav id="nav" class="navbar nav-transparent">
<div class="container">
<div class="navbar-header">
<!-- Logo -->
<div class="navbar-brand">
<a href="/">
<img class="logo" src="PIC/Tera_Text_gray.svg" alt="TERA Foundation: The fastest block generation Blockchain" title="TERA Foundation: The fastest block generation Blockchain" />
<img class="logo-alt" src="PIC/Tera_Text.svg" alt="TERA Foundation: The fastest block generation Blockchain" title="TERA Foundation: The fastest block generation Blockchain" />
</a>
</div>
<!-- /Logo -->
<!-- Collapse nav button -->
<div class="nav-collapse">
<span></span>
</div>
<!-- /Collapse nav button -->
</div>
<!-- Main navigation -->
{{File=./SITE/page_navigation.html}}
<!-- /Main navigation -->
</div>
</nav>
<!-- /Nav -->
<!-- Social Header -->
<div class="home-wrapper">
<div class="container">
<!-- Row -->
<div class="row">
</div>
<!-- /Row -->
</div>
</div>
<!-- /About Tera -->
</header>
<!-- /Header -->
<!-- About Tera -->
<div id="about" class="section md-padding bg-grey">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<!-- About Tera content -->
<div class="col-md-12 about-panel">
<div class="section-header text-center">
<h1>TERA COIN</h1>
</div>
<p>
TERA is a coin that provides solutions to existing cryptocurrency issues, namely de-neutralization, transaction
throughput, transaction speed, confirmation time, transaction costs and general availability, as well as the
difficulty and financial system to integrate into existing payments.<p />
TERA is pure original code, developed by the Russian core vtools.
TERA is compiled with node.js and has a separate dapp development document. node.js is one of the most widely
used languages in the programming field, which greatly reduces the development difficulty of TERA DApp, and the
development cost is extremely low, and smart contract development is only It takes 100 teras, and there is no
commission for calling the contract and completing the transaction. This lays the foundation for the massive
landing of the tera App.
</p>
</div>
<!-- /About Tera content -->
</div>
<!-- /Row -->
</div>
<!-- /Container -->
</div>
<!-- /About Tera -->
<div id="features" class="section md-padding exchanges">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<!-- Section header -->
<div class="section-header text-center">
<h2 class="title">EXCHANGES & PARTNERS</h2>
</div>
<!-- /Section header -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>QBTC</h3>
<p><a href="https://www.qbtc.ink/trade?symbol=TERA_BTC" target="_blank"><img src="PIC/qbtc.png" alt="TERA on QBTC Exchange" title="TERA on QBTC Exchange" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>Bitalong</h3>
<p><a href="https://www.bitalong.com/trade/index/market/tera_usdt/" target="_blank"><img src="PIC/bitalong.png" alt="TERA on Bitalong Exchange" title="TERA on Bitalong Exchange" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>Bitmesh</h4>
<p><a href="https://bitmesh.com/exchange?market=btc_tera#/" target="_blank"><img src="PIC/bitmesh.png" alt="TERA on Bitmesh Exchange" title="TERA on Bitmesh Exchange" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>CHAOEX</h4>
<p><a href="https://chaoex-en-us.udesk.cn/hc/articles/83487" target="_blank"><img src="PIC/chaoex.png" alt="TERA on Chaoex Exchange" title="TERA on Chaoex Exchange" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>CITEX</h4>
<p><a href="https://www.citex.co.kr/#/trade/2/37" target="_blank"><img src="PIC/citex.png" alt="TERA on Citex Exchange" title="TERA on Citex Exchange" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>FMessenger</h4>
<p><a href="http://freetimes.cc/fmessenger/" target="_blank"><img src="PIC/fm.png" alt="TERA on FMessenger Project" title="TERA on FMessenger Project" /></a></p>
</div>
</div>
<!-- /Key Feature -->
</div>
<!-- /Row -->
</div>
<!-- /Container -->
</div>
<div id="about" class="section md-padding bg-grey">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<!-- About Tera content -->
<div class="col-md-12">
<div class="section-header text-center">
<h2 class="title">TERA MINING</h2>
</div>
<p align="center">
<a href="https://sourceforge.net/p/tera/code/ci/master/tree/README.md" target="_blank">TERA documentation </a> will help you start mining today.
</p>
</div>
<!-- /About Tera content -->
</div>
<!-- /Row -->
</div>
<!-- /Container -->
</div>
<!-- Footer -->
{{File=./SITE/footer_index.html}}

View File

@ -1,7 +1,7 @@
<ul class="main-nav nav navbar-nav navbar-right white_menu">
<li><a href="/#about">ABOUT</a></li>
<!--li><a href="/changelog.html">CHANGELOG</a></li-->
<li><a href="/tera-token.html">TERA COIN</a></li>
<li><a href="/tera-coin.html">TERA COIN</a></li>
<li><a href="/blog/">BLOG</a></li>

View File

@ -0,0 +1,11 @@
{
"id":"10",
"post_url":"https://medium.com/@progr76/update-teranova-31dd3380f25c",
"title_pic":"/blog/uploads/10/title.jpg",
"post_title":"Update “TERANova”",
"post_announce":"The update will be deployed in three steps: The first part is aimed at a quick start. This will allow you to work with the blockchain almost immediately after installing the wallet - by downloading the chains from the end. ...<br /><br />",
"post_date":"04-April-2019"
}
=START=

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View File

@ -0,0 +1,12 @@
{
"id":"6",
"post_url":"https://medium.com/@Blockchainize1/how-does-tera-platform-work-cbfbeefdfc12",
"title_pic":"/blog/uploads/6/6_1.jpg",
"post_title":"How does TERA platform work",
"post_announce":"TERA is a decentralized application platform which is easy to use and friendly to those developers. Some devs from the community have developed some interesting DApps on-chain ...<br /><br />",
"post_date":"17-March-2019"
}
=START=
!!!!!

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,12 @@
{
"id":"7",
"post_url":"https://medium.com/@rossgoldberg_69609/tera-blockchain-and-dapps-54f96d6fe88c",
"title_pic":"/blog/uploads/7/7_1.jpg",
"post_title":"TERA Blockchain and Dapps",
"post_announce":"This may seem like just another link to you, but it's not. It's fundamentally different. It dynamically pulls an image from the TERA blockchain via a smart distributed app framework....<br /><br />",
"post_date":"17-March-2019"
}
=START=
!!!!!

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

View File

@ -0,0 +1,12 @@
{
"id":"8",
"post_url":"https://medium.com/@progr76/the-solution-to-the-problem-of-sharding-the-blockchain-ee90e001e22",
"title_pic":"/blog/uploads/8/8.jpg",
"post_title":"The solution to the problem of Blockchain Sharding",
"post_announce":"I propose to solve the problem in two steps: Create a clean blockchain whose task is to inform all network participants about the order of blocks and information in it. Cryptocurrencies are built on top of this Protocol and are not mandatory for its operation (although it is recommended to encourage owners of nodes to maintain the network)...<br /><br />",
"post_date":"26-March-2019"
}
=START=
!!!!!

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

View File

@ -0,0 +1,12 @@
{
"id":"9",
"post_url":"https://medium.com/@progr76/imperative-sharding-bd65e1fa4754",
"title_pic":"/blog/uploads/9/9.jpg",
"post_title":"Internal/imperative sharding",
"post_announce":"In my previous article 'The solution to the problem of Blockchain Sharding' I wrote a General direction in which you need to move when building sharding in blockchains, but did not write how to do it. In the current article, I give one example of how this can be done. We can build sharding on pow inside the nodes of each miner using this design...<br /><br />",
"post_date":"03-April-2019"
}
=START=
!!!!!

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

View File

@ -1,7 +1,7 @@
<ul class="main-nav nav navbar-nav navbar-right white_menu">
<li><a href="#about">关于</a></li>
<!--li><a href="./changelog.html">变更日志</a></li-->
<li><a href="/tera-token.html">令牌</a></li>
<li><a href="/tera-coin.html">令牌</a></li>
<li><a href="/blog/" target="_blank">博客</a></li>
<li class="dropdown2 language-panel">

View File

@ -0,0 +1,243 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta data-n-head="true" data-hid="description" name="description" content="Tera - Fast block generation, High transaction throughput, User-friendly">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>TERA Foundation: COIN</title>
<!-- Google font -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700%7CVarela+Round" rel="stylesheet">
<!-- Bootstrap -->
<link type="text/css" rel="stylesheet" href="../CSS/bootstrap.min.css" />
<!-- Font Awesome Icon -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<!-- Custom stlylesheet -->
<link type="text/css" rel="stylesheet" href="../CSS/style.min.css" />
<style>
@media all
{
.nav .open>a, .nav .open>a:focus, .nav .open>a:hover
{
background-color: rgba(250, 250, 250, .1);
border-color: #337ab7;
}
/*.dropdown2 li*/
/*{*/
/*background-color: rgba(250, 250, 250, .01);*/
/*opacity: 1;*/
/*}*/
/*.dropdown2 li a*/
/*{*/
/*background-color: rgba(250, 250, 250, .01);*/
/*opacity: 1;*/
/*}*/
#nav.nav-transparent:not(.fixed-nav) .main-nav>li>a
{
color:white;
}
}
</style>
{{File=./SITE/metrika.html}}
</head>
<body>
<!-- Header -->
<header id="home" style="background: #1C1D21; height: 80px; top: 0px; position: absolut;">
<!-- Nav -->
<nav id="nav" class="navbar nav-transparent">
<div class="container">
<div class="navbar-header">
<!-- Logo -->
<div class="navbar-brand">
<a href="index.html">
<img class="logo" src="../PIC/Tera_Text_gray.svg" alt="logo">
<img class="logo-alt" src="../PIC/Tera_Text.svg" alt="logo">
</a>
</div>
<!-- /Logo -->
<!-- Collapse nav button -->
<div class="nav-collapse">
<span></span>
</div>
<!-- /Collapse nav button -->
</div>
<!-- Main navigation -->
{{File=./SITE/cn/header.html}}
<!-- /Main navigation -->
</div>
</nav>
<!-- /Nav -->
<!-- Social Header -->
<div class="home-wrapper">
<div class="container">
<!-- Row -->
<div class="row">
</div>
<!-- /Row -->
</div>
</div>
<!-- /About Tera -->
</header>
<!-- /Header -->
<!-- About Tera -->
<div id="about" class="section md-padding bg-grey">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<!-- About Tera content -->
<div class="col-md-12">
<div class="section-header text-center">
<h2 class="title">ТОКЕН TERA</h2>
</div>
<p>
TERA 是一个货币现有加密货币在以下方面存在问题中心化、交易吞吐量、交易速度、确认时间、交易税费以及一般可用性、难以整合到现有支付系统和金融系统。TERA提供了针对以上问题的解决方案。 <br /> <br />
TERA是纯原创代码由俄罗斯Vtools大家称之为小V神核心开发。Tera使用node.js编译并有单独的dapp分布式应用开发文档。node.js是编程领域使用最广泛的语言之一它大大降低了TERA-dapp的开发难度开发成本极低智能合约开发只需要100 Teras调用合约和完成交易都没有佣金。这为Tera应用的大规模落地奠定了基础
</p>
</div>
<!-- /About Tera content -->
</div>
<!-- /Row -->
</div>
<!-- /Container -->
</div>
<!-- /About Tera -->
<div id="features" class="section md-padding">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<!-- Section header -->
<div class="section-header text-center">
<h2 class="title">交易所&伙伴</h2>
</div>
<!-- /Section header -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>QBTC</h3>
<p><a href="https://www.qbtc.ink/trade?symbol=TERA_BTC" target="_blank"><img src="../PIC/qbtc.png" style="border-radius: 16px;" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>Bitalong</h3>
<p><a href="https://www.bitalong.com/trade/index/market/tera_usdt/" target="_blank"><img src="../PIC/bitalong.png" style="border-radius: 16px;" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>Bitmesh</h4>
<p><a href="https://bitmesh.com/exchange?market=btc_tera#/" target="_blank"><img src="../PIC/bitmesh.png" style="border-radius: 16px;" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>CHAOEX</h4>
<p><a href="https://chaoex-en-us.udesk.cn/hc/articles/83487" target="_blank"><img src="../PIC/chaoex.png" style="border-radius: 16px;" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>CITEX</h4>
<p><a href="https://www.citex.co.kr/#/trade/2/37" target="_blank"><img src="../PIC/citex.png" style="border-radius: 16px;" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>FMessenger</h4>
<p><a href="http://freetimes.cc/fmessenger/" target="_blank"><img src="../PIC/fm.png" style="border-radius: 16px;" /></a></p>
</div>
</div>
<!-- /Key Feature -->
</div>
<!-- /Row -->
</div>
<!-- /Container -->
</div>
<div id="about" class="section md-padding bg-grey">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<!-- About Tera content -->
<div class="col-md-12">
<div class="section-header text-center">
<h2 class="title">矿业</h2>
</div>
<p align="center">
<a href="https://sourceforge.net/p/tera/code/ci/master/tree/README.md" target="_blank" style="font-size: 14px;">TERA文档</a> 的文档将有助于今天开始挖掘。
</p>
</div>
<!-- /About Tera content -->
</div>
<!-- /Row -->
</div>
<!-- /Container -->
</div>
<!-- Footer -->
<!-- Footer -->
{{File=./SITE/cn/footer.html}}

View File

@ -0,0 +1,493 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>TERA Foundation: COIN</title>
<meta data-n-head="true" data-hid="description" name="description" content="Tera - Fast block generation, High transaction throughput, User-friendly">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Google font -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700%7CVarela+Round" rel="stylesheet">
<!-- Bootstrap -->
<link type="text/css" rel="stylesheet" href="CSS/bootstrap.min.css" />
<!-- Font Awesome Icon -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<!-- Custom stlylesheet -->
<link type="text/css" rel="stylesheet" href="CSS/style.min.css" />
{{File=./SITE/metrika.html}}
<style>
.coin-preview {
min-height: 230px;
text-align: center;
margin: 15px 0;
border-radius: 16px;
}
.coin-preview a {
display: block;
}
.coin-preview__icon {
padding: 10px 0;
}
</style>
</head>
<body>
<!-- Header -->
<header id="home" class="pages-head-home">
<!-- Nav -->
<nav id="nav" class="navbar nav-transparent">
<div class="container">
<div class="navbar-header">
<!-- Logo -->
<div class="navbar-brand">
<a href="/">
<img class="logo" src="PIC/Tera_Text_gray.svg" alt="TERA Foundation: The fastest block generation Blockchain" title="TERA Foundation: The fastest block generation Blockchain" />
<img class="logo-alt" src="PIC/Tera_Text.svg" alt="TERA Foundation: The fastest block generation Blockchain" title="TERA Foundation: The fastest block generation Blockchain" />
</a>
</div>
<!-- /Logo -->
<!-- Collapse nav button -->
<div class="nav-collapse">
<span></span>
</div>
<!-- /Collapse nav button -->
</div>
<!-- Main navigation -->
{{File=./SITE/page_navigation.html}}
<!-- /Main navigation -->
</div>
</nav>
<!-- /Nav -->
<!-- Social Header -->
<div class="home-wrapper">
<div class="container">
<!-- Row -->
<div class="row">
</div>
<!-- /Row -->
</div>
</div>
<!-- /About Tera -->
</header>
<!-- /Header -->
<!-- About Tera -->
<div id="about" class="section md-padding bg-grey">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<!-- About Tera content -->
<div class="col-md-12 about-panel">
<div class="section-header text-center">
{{Edit=./SITE/CONTENT/en-token-about-title.md}}
</div>
{{Edit=./SITE/CONTENT/en-token-about-text.md}}
</div>
<!-- /About Tera content -->
</div>
<!-- /Row -->
</div>
<!-- /Container -->
</div>
<!-- /About Tera -->
<div id="features" class="section md-padding exchanges">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<!-- Section header -->
<div class="section-header text-center">
{{Edit=./SITE/CONTENT/en-token-exchanges-title.md}}
</div>
<!-- /Section header -->
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/gold-front.png" download="" target="_blank">
<img src="PIC/gold-front_small.png" alt="TERA coin preview. Front side. Gold" title="TERA coin preview. Front side. Gold" />
</a>
<a href="PIC/gold-front.png" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/gold-back.png" download="" target="_blank">
<img src="PIC/gold-back_small.png" alt="TERA coin preview. Back side. Gold" title="TERA coin preview. Back side. Gold" />
</a>
<a href="PIC/gold-back.png" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/silver-front.png" download="" target="_blank">
<img src="PIC/silver-front_small.png" alt="TERA coin preview. Front side. Silver" title="TERA coin preview. Front side. Silver" />
</a>
<a href="PIC/silver-front.png" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/silver-back.png" download="" target="_blank">
<img src="PIC/silver-back_small.png" alt="TERA coin preview. Back side. Silver" title="TERA coin preview. Back side. Silver" />
</a>
<a href="PIC/silver-back.png" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/gold-four-coins-1.jpg" download="" target="_blank">
<img src="PIC/gold-four-coins_small-1.jpg" alt="TERA four coin preview. Front side. Gold" title="TERA coin preview. Front side. Gold" />
</a>
<a href="PIC/gold-four-coins-1.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/gold-four-coins-2.jpg" download="" target="_blank">
<img src="PIC/gold-four-coins_small-2.jpg" alt="TERA four coin preview. Back side. Gold" title="TERA coin preview. Back side. Gold" />
</a>
<a href="PIC/gold-four-coins-2.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/silver-four-coins-1.jpg" download="" target="_blank">
<img src="PIC/silver-four-coins_small-1.jpg" alt="TERA four coin preview. Front side. Silver" title="TERA coin preview. Front side. Silver" />
</a>
<a href="PIC/silver-four-coins-1.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/silver-four-coins-2.jpg" download="" target="_blank">
<img src="PIC/silver-four-coins_small-2.jpg" alt="TERA four coin preview. Back side. Silver" title="TERA coin preview. Back side. Silver" />
</a>
<a href="PIC/silver-four-coins-2.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/stopka_monet_gold_02.jpg" download="" target="_blank">
<img src="PIC/stopka_monet_gold_02_small.jpg" alt="TERA stack of coin preview. Front side. Gold" title="TERA coin preview. Front side. Gold" />
</a>
<a href="PIC/stopka_monet_gold_02.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/stopka_monet_gold_01.jpg" download="" target="_blank">
<img src="PIC/stopka_monet_gold_01_small.jpg" alt="TERA stack of coin preview. Back side. Gold" title="TERA coin preview. Back side. Gold" />
</a>
<a href="PIC/stopka_monet_gold_01.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/stopka_monet_silver_02.jpg" download="" target="_blank">
<img src="PIC/stopka_monet_silver_02_small.jpg" alt="TERA stack of coin preview. Front side. Silver" title="TERA coin preview. Front side. Silver" />
</a>
<a href="PIC/stopka_monet_silver_02.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/stopka_monet_silver_01.jpg" download="" target="_blank">
<img src="PIC/stopka_monet_silver_01_small.jpg" alt="TERA stack of coin preview. Back side. Silver" title="TERA coin preview. Back side. Silver" />
</a>
<a href="PIC/stopka_monet_silver_01.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/fly_gold.jpg" download="" target="_blank">
<img src="PIC/fly_gold_small.jpg" alt="TERA flying coin preview. Back side. Gold" title="TERA flying coin preview. Gold" />
</a>
<a href="PIC/fly_gold.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/fly_silver.jpg" download="" target="_blank">
<img src="PIC/fly_silver_small.jpg" alt="TERA flying coin preview. Front side. Silver" title="TERA flying coin preview. Silver" />
</a>
<a href="PIC/fly_silver.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/red_velvet_1.jpg" download="" target="_blank">
<img src="PIC/red_velvet_1_small.jpg" alt="TERA coin on the red velvet preview. FrontBack side. Gold" title="TERA coin on the red velvet preview. Front side. Gold" />
</a>
<a href="PIC/red_velvet_1.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/red_velvet_2.jpg" download="" target="_blank">
<img src="PIC/red_velvet_2_small.jpg" alt="TERA coin on the red velvet preview. Back side. Silver" title="TERA coin on the red velvet preview. Back side. Silver" />
</a>
<a href="PIC/red_velvet_2.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
</div>
<!-- /Row -->
</div>
<!-- /Container -->
</div>
<div id="about" class="section md-padding bg-grey">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<!-- About Tera content -->
<div class="col-md-12">
<div class="section-header text-center">
<h2 class="title">TERA MINING</h2>
</div>
<p align="center">
<a href="https://sourceforge.net/p/tera/code/ci/master/tree/README.md" target="_blank">TERA documentation </a> will help you start mining today.
</p>
</div>
<!-- /About Tera content -->
</div>
<!-- /Row -->
</div>
<!-- /Container -->
</div>
<!-- Footer -->
{{File=./SITE/footer_index.html}}

View File

@ -91,7 +91,7 @@
<ul class="main-nav nav navbar-nav navbar-right white_menu">
<li><a href="#about">ÜBER TERA</a></li>
<!--li><a href="/changelog.html" target="_blank">CHANGELISTE</a></li-->
<li><a href="/tera-token.html" target="_blank">TERA COIN</a></li>
<li><a href="/tera-coin.html" target="_blank">TERA COIN</a></li>
<li><a href="/blog/" target="_blank">BLOG</a></li>

View File

@ -56,7 +56,7 @@
<ul class="main-nav nav navbar-nav navbar-right white_menu">
<li><a href="#about">ABOUT</a></li>
<!--li><a href="/changelog.html">CHANGELOG</a></li-->
<li><a href="/tera-token.html">TERA COIN</a></li>
<li><a href="/tera-coin.html">TERA COIN</a></li>
<li><a href="/blog/">BLOG</a></li>

View File

@ -11,9 +11,9 @@
{{Edit=./SITE/CONTENT/en-index-about-title.md}}
</div>
<p class="tera-logo-panel">
<img src="PIC/map-nodes.jpg" width="623" height="332"/>
</p>
<img src="PIC/map-nodes.jpg" width="312" height="166"/>
{{Edit=./SITE/CONTENT/en-index-about-text.md}}
</p>
<p class="tera-logo-panel">
<div class="col-md-6">
<div class="about bg-grey scheme-panel">
@ -133,7 +133,7 @@
<thead class="cf">
<tr>
<th>Max Supply</th>
<th>Issue Date</th>
<th>Launch date</th>
<th>Consensus Protocol</th>
<th>Cryptography</th>
<th>Smart contract language</th>

View File

@ -82,7 +82,7 @@
<ul class="main-nav nav navbar-nav navbar-right white_menu">
<li><a href="index.html">HOME</a></li>
<li><a href="/changelog.html">CHANGELOG</a></li>
<li><a href="/token.html">COIN</a></li>
<li><a href="/tera-coin.html">COIN</a></li>
<li><a href="/tera-content-fund.html">CONTENT FUND</a></li>
<li><a href="/blog/">BLOG</a></li>
<li><a href="/explorer.html">EXPLORER</a></li>

View File

@ -1,7 +1,7 @@
<ul class="main-nav nav navbar-nav navbar-right white_menu">
<li><a href="/#about">ABOUT</a></li>
<!--li><a href="/changelog.html">CHANGELOG</a></li-->
<li><a href="/tera-token.html">TERA COIN</a></li>
<li><a href="/tera-coin.html">TERA COIN</a></li>
<li><a href="/blog/">BLOG</a></li>

214
Source/SITE/ru/_token.html Normal file
View File

@ -0,0 +1,214 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>TERA Foundation: COIN</title>
<meta data-n-head="true" data-hid="description" name="description" content="Tera - Fast block generation, High transaction throughput, User-friendly">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Google font -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700%7CVarela+Round" rel="stylesheet">
<!-- Bootstrap -->
<link type="text/css" rel="stylesheet" href="../CSS/bootstrap.min.css" />
<!-- Font Awesome Icon -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<!-- Custom stlylesheet -->
<link type="text/css" rel="stylesheet" href="../CSS/style.min.css" />
{{File=./SITE/metrika.html}}
</head>
<body>
<!-- Header -->
<header id="home" class="pages-head-home">
<!-- Nav -->
<nav id="nav" class="navbar nav-transparent">
<div class="container">
<div class="navbar-header">
<!-- Logo -->
<div class="navbar-brand">
<a href="index.html">
<img class="logo" src="../PIC/Tera_Text_gray.svg" alt="TERA Foundation: The fastest block generation Blockchain" title="TERA Foundation: The fastest block generation Blockchain" />
<img class="logo-alt" src="../PIC/Tera_Text.svg" alt="TERA Foundation: The fastest block generation Blockchain" title="TERA Foundation: The fastest block generation Blockchain" />
</a>
</div>
<!-- /Logo -->
<!-- Collapse nav button -->
<div class="nav-collapse">
<span></span>
</div>
<!-- /Collapse nav button -->
</div>
<!-- Main navigation -->
{{File=./SITE/ru/index_navigation.html}}
<!-- /Main navigation -->
</div>
</nav>
<!-- /Nav -->
<!-- Social Header -->
<div class="home-wrapper">
<div class="container">
<!-- Row -->
<div class="row">
</div>
<!-- /Row -->
</div>
</div>
<!-- /About Tera -->
</header>
<!-- /Header -->
<!-- About Tera -->
<div id="about" class="section md-padding bg-grey">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<!-- About Tera content -->
<div class="col-md-12 about-panel">
<div class="section-header text-center">
<h1>ТОКЕН TERA</h1>
</div>
<p>
Проект TERA нацелен в первую очередь на развитие технологий с целью помочь миру развиваться и идти только вперёд. Но факт остаётся фактом: на сегодняшний день деньги являются мощной движущей силой нашей планеты. Токен TERA является решением насущных проблем в мире криптовалют. Наш проект постоянно стремится к развитию с целью улучшения показателей пропускной способности, скорости, и стоимости транзакции. <br /> <br />
TERA представляет собой чистый оригинальный код, разработанный на ядре Vtools. В основе разработки TERA лежит язык программирования Node.js, являющийся одним из наиболее широко используемых языков программирования.
</p>
</div>
<!-- /About Tera content -->
</div>
<!-- /Row -->
</div>
<!-- /Container -->
</div>
<!-- /About Tera -->
<div id="features" class="section md-padding exchanges">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<!-- Section header -->
<div class="section-header text-center">
<h2 class="title">Биржи и Партнёры</h2>
</div>
<!-- /Section header -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>QBTC</h3>
<p><a href="https://www.qbtc.ink/trade?symbol=TERA_BTC" target="_blank"><img src="../PIC/qbtc.png" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>Bitalong</h3>
<p><a href="https://www.bitalong.com/trade/index/market/tera_usdt/" target="_blank"><img src="../PIC/bitalong.png" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>Bitmesh</h4>
<p><a href="https://bitmesh.com/exchange?market=btc_tera#/" target="_blank"><img src="../PIC/bitmesh.png" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>CHAOEX</h4>
<p><a href="https://chaoex-en-us.udesk.cn/hc/articles/83487" target="_blank"><img src="../PIC/chaoex.png" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>CITEX</h4>
<p><a href="https://www.citex.co.kr/#/trade/2/37" target="_blank"><img src="../PIC/citex.png" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>FMessenger</h4>
<p><a href="http://freetimes.cc/fmessenger/" target="_blank"><img src="../PIC/fm.png" /></a></p>
</div>
</div>
<!-- /Key Feature -->
</div>
<!-- /Row -->
</div>
<!-- /Container -->
</div>
<div id="about" class="section md-padding bg-grey">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<!-- About Tera content -->
<div class="col-md-12">
<div class="section-header text-center">
<h2 class="title">МАЙНИНГ TERA</h2>
</div>
<p align="center">
<a href="https://sourceforge.net/p/tera/code/ci/master/tree/README.md" target="_blank">Документация по работе с TERA</a> поможет начать майнинг уже сегодня.
</p>
</div>
<!-- /About Tera content -->
</div>
<!-- /Row -->
</div>
<!-- /Container -->
</div>
<!-- Footer -->
<!-- Footer -->
{{File=./SITE/ru/footer.html}}

View File

@ -1,7 +1,7 @@
<ul class="main-nav nav navbar-nav navbar-right white_menu">
<li><a href="#about">О TERA</a></li>
<!--li><a href="/ru/changelog.html">CHANGELOG</a></li-->
<li><a href="/ru/tera-token.html">МОНЕТА TERA</a></li>
<li><a href="/ru/tera-coin.html">МОНЕТА TERA</a></li>
<li><a href="/blog/" target="_blank">БЛОГ</a></li>

View File

@ -0,0 +1,214 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>TERA Foundation: COIN</title>
<meta data-n-head="true" data-hid="description" name="description" content="Tera - Fast block generation, High transaction throughput, User-friendly">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Google font -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700%7CVarela+Round" rel="stylesheet">
<!-- Bootstrap -->
<link type="text/css" rel="stylesheet" href="../CSS/bootstrap.min.css" />
<!-- Font Awesome Icon -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<!-- Custom stlylesheet -->
<link type="text/css" rel="stylesheet" href="../CSS/style.min.css" />
{{File=./SITE/metrika.html}}
</head>
<body>
<!-- Header -->
<header id="home" class="pages-head-home">
<!-- Nav -->
<nav id="nav" class="navbar nav-transparent">
<div class="container">
<div class="navbar-header">
<!-- Logo -->
<div class="navbar-brand">
<a href="/ru/">
<img class="logo" src="../PIC/Tera_Text_gray.svg" alt="TERA Foundation: The fastest block generation Blockchain" title="TERA Foundation: The fastest block generation Blockchain" />
<img class="logo-alt" src="../PIC/Tera_Text.svg" alt="TERA Foundation: The fastest block generation Blockchain" title="TERA Foundation: The fastest block generation Blockchain" />
</a>
</div>
<!-- /Logo -->
<!-- Collapse nav button -->
<div class="nav-collapse">
<span></span>
</div>
<!-- /Collapse nav button -->
</div>
<!-- Main navigation -->
{{File=./SITE/ru/index_navigation.html}}
<!-- /Main navigation -->
</div>
</nav>
<!-- /Nav -->
<!-- Social Header -->
<div class="home-wrapper">
<div class="container">
<!-- Row -->
<div class="row">
</div>
<!-- /Row -->
</div>
</div>
<!-- /About Tera -->
</header>
<!-- /Header -->
<!-- About Tera -->
<div id="about" class="section md-padding bg-grey">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<!-- About Tera content -->
<div class="col-md-12 about-panel">
<div class="section-header text-center">
<h1>ТОКЕН TERA</h1>
</div>
<p>
Проект TERA нацелен в первую очередь на развитие технологий с целью помочь миру развиваться и идти только вперёд. Но факт остаётся фактом: на сегодняшний день деньги являются мощной движущей силой нашей планеты. Токен TERA является решением насущных проблем в мире криптовалют. Наш проект постоянно стремится к развитию с целью улучшения показателей пропускной способности, скорости, и стоимости транзакции. <br /> <br />
TERA представляет собой чистый оригинальный код, разработанный на ядре Vtools. В основе разработки TERA лежит язык программирования Node.js, являющийся одним из наиболее широко используемых языков программирования.
</p>
</div>
<!-- /About Tera content -->
</div>
<!-- /Row -->
</div>
<!-- /Container -->
</div>
<!-- /About Tera -->
<div id="features" class="section md-padding exchanges">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<!-- Section header -->
<div class="section-header text-center">
<h2 class="title">Биржи и Партнёры</h2>
</div>
<!-- /Section header -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>QBTC</h3>
<p><a href="https://www.qbtc.ink/trade?symbol=TERA_BTC" target="_blank"><img src="../PIC/qbtc.png" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>Bitalong</h3>
<p><a href="https://www.bitalong.com/trade/index/market/tera_usdt/" target="_blank"><img src="../PIC/bitalong.png" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>Bitmesh</h4>
<p><a href="https://bitmesh.com/exchange?market=btc_tera#/" target="_blank"><img src="../PIC/bitmesh.png" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>CHAOEX</h4>
<p><a href="https://chaoex-en-us.udesk.cn/hc/articles/83487" target="_blank"><img src="../PIC/chaoex.png" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>CITEX</h4>
<p><a href="https://www.citex.co.kr/#/trade/2/37" target="_blank"><img src="../PIC/citex.png" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>FMessenger</h4>
<p><a href="http://freetimes.cc/fmessenger/" target="_blank"><img src="../PIC/fm.png" /></a></p>
</div>
</div>
<!-- /Key Feature -->
</div>
<!-- /Row -->
</div>
<!-- /Container -->
</div>
<div id="about" class="section md-padding bg-grey">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<!-- About Tera content -->
<div class="col-md-12">
<div class="section-header text-center">
<h2 class="title">МАЙНИНГ TERA</h2>
</div>
<p align="center">
<a href="https://sourceforge.net/p/tera/code/ci/master/tree/README.md" target="_blank">Документация по работе с TERA</a> поможет начать майнинг уже сегодня.
</p>
</div>
<!-- /About Tera content -->
</div>
<!-- /Row -->
</div>
<!-- /Container -->
</div>
<!-- Footer -->
<!-- Footer -->
{{File=./SITE/ru/footer.html}}

View File

@ -16,7 +16,7 @@
<priority>0.80</priority>
</url>
<url>
<loc>https://terafoundation.org/token.html</loc>
<loc>https://terafoundation.org/tera-coin.html</loc>
<lastmod>2019-03-13T13:39:22+00:00</lastmod>
<priority>0.80</priority>
</url>
@ -141,7 +141,7 @@
<priority>0.64</priority>
</url>
<url>
<loc>https://terafoundation.org/ru/token.html</loc>
<loc>https://terafoundation.org/ru/tera-coin.html</loc>
<lastmod>2019-03-13T13:39:22+00:00</lastmod>
<priority>0.64</priority>
</url>
@ -156,7 +156,7 @@
<priority>0.64</priority>
</url>
<url>
<loc>https://terafoundation.org/cn/token.html</loc>
<loc>https://terafoundation.org/cn/tera-coin.html</loc>
<lastmod>2019-03-13T13:39:22+00:00</lastmod>
<priority>0.64</priority>
</url>

630
Source/SITE/tera-coin.html Normal file
View File

@ -0,0 +1,630 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>TERA Foundation: COIN</title>
<meta data-n-head="true" data-hid="description" name="description" content="Tera - Fast block generation, High transaction throughput, User-friendly">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Google font -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700%7CVarela+Round" rel="stylesheet">
<!-- Bootstrap -->
<link type="text/css" rel="stylesheet" href="CSS/bootstrap.min.css" />
<!-- Font Awesome Icon -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<!-- Custom stlylesheet -->
<link type="text/css" rel="stylesheet" href="CSS/style.min.css" />
{{File=./SITE/metrika.html}}
</head>
<body>
<!-- Header -->
<header id="home" class="pages-head-home">
<!-- Nav -->
<nav id="nav" class="navbar nav-transparent">
<div class="container">
<div class="navbar-header">
<!-- Logo -->
<div class="navbar-brand">
<a href="/">
<img class="logo" src="PIC/Tera_Text_gray.svg" alt="TERA Foundation: The fastest block generation Blockchain" title="TERA Foundation: The fastest block generation Blockchain" />
<img class="logo-alt" src="PIC/Tera_Text.svg" alt="TERA Foundation: The fastest block generation Blockchain" title="TERA Foundation: The fastest block generation Blockchain" />
</a>
</div>
<!-- /Logo -->
<!-- Collapse nav button -->
<div class="nav-collapse">
<span></span>
</div>
<!-- /Collapse nav button -->
</div>
<!-- Main navigation -->
{{File=./SITE/page_navigation.html}}
<!-- /Main navigation -->
</div>
</nav>
<!-- /Nav -->
<!-- Social Header -->
<div class="home-wrapper">
<div class="container">
<!-- Row -->
<div class="row">
</div>
<!-- /Row -->
</div>
</div>
<!-- /About Tera -->
</header>
<!-- /Header -->
<!-- About Tera -->
<div id="about2" class="section md-padding bg-grey">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<!-- About Tera content -->
<div class="col-md-12 about-panel">
<div class="section-header text-center">
{{Edit=./SITE/CONTENT/en-token-about-title.md}}
</div>
{{Edit=./SITE/CONTENT/en-token-about-text.md}}
</div>
<!-- /About Tera content -->
</div>
<!-- /Row -->
<div class="section-header text-center">
<script src="https://widgets.coingecko.com/coingecko-coin-ticker-widget.js"></script>
<coingecko-coin-ticker-widget currency="usd" coin-id="tera-smart-money" locale="en"></coingecko-coin-ticker-widget>
</div>
</div>
<!-- /Container -->
</div>
<!-- /About Tera -->
<div id="features" class="section md-padding exchanges">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<!-- Section header -->
<div class="section-header text-center">
{{Edit=./SITE/CONTENT/en-token-exchanges-title.md}}
</div>
<!-- /Section header -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>TERA DEX</h4>
<p><a href="https://terafoundation.org/dapp/20" target="_blank"><img src="PIC/tera.png" alt="TERA on TERA decentralized Exchange" title="TERA on TERA decentralized Exchange" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>QBTC</h4>
<p><a href="https://www.qbtc.ink/trade?symbol=TERA_BTC" target="_blank"><img src="PIC/qbtc.png" alt="TERA on QBTC Exchange" title="TERA on QBTC Exchange" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>Bitalong</h4>
<p><a href="https://www.bitalong.com/trade/index/market/tera_usdt/" target="_blank"><img src="PIC/bitalong.png" alt="TERA on Bitalong Exchange" title="TERA on Bitalong Exchange" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>Bitmesh</h4>
<p><a href="https://bitmesh.com/exchange?market=btc_tera#/" target="_blank"><img src="PIC/bitmesh.png" alt="TERA on Bitmesh Exchange" title="TERA on Bitmesh Exchange" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>CHAOEX</h4>
<p><a href="https://chaoex-en-us.udesk.cn/hc/articles/83487" target="_blank"><img src="PIC/chaoex.png" alt="TERA on Chaoex Exchange" title="TERA on Chaoex Exchange" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>CITEX</h4>
<p><a href="https://www.citex.co.kr/#/trade/2/37" target="_blank"><img src="PIC/citex.png" alt="TERA on Citex Exchange" title="TERA on Citex Exchange" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>FMessenger</h4>
<p><a href="http://freetimes.cc/fmessenger/" target="_blank"><img src="PIC/fm.png" alt="TERA on FMessenger Project" title="TERA on FMessenger Project" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>Bitcola</h4>
<p><a href="https://www.bitcola.io/exchange?coinPair=TERA_USDT" target="_blank"><img src="PIC/bitcola.png" alt="TERA on Bitcola Exchange" title="TERA on Bitcola Exchange" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>Vbitex</h4>
<p><a href="https://www.vbitex.com/Home/Trade/index?id=14" target="_blank"><img src="PIC/vbitex.png" alt="TERA on Vbitex Exchange" title="TERA on Vbitex Exchange" /></a></p>
</div>
</div>
<!-- /Key Feature -->
<!-- Key Feature -->
<div class="col-md-4">
<div class="about bg-grey">
<h4>MXC</h4>
<p><a href="https://www.mxc.com/trade.html?symbol=TERA_BTC" target="_blank"><img src="PIC/mxc.png" alt="TERA on MXC Exchange" title="TERA on MXC Exchange" /></a></p>
</div>
</div>
<!-- /Key Feature -->
</div>
<!-- /Row -->
</div>
<!-- /Container -->
</div>
<div id="features2" class="section md-padding exchanges">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<!-- Section header -->
<div class="section-header text-center">
{{Edit=./SITE/CONTENT/en-token-design-title.md}}
</div>
{{Edit=./SITE/CONTENT/en-token-design-text.md}}
<!-- /Section header -->
<!-- Coin Picture -->
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/gold-front.png" download="" target="_blank">
<img src="PIC/gold-front_small.png" alt="TERA coin preview. Front side. Gold" title="TERA coin preview. Front side. Gold" />
</a>
<a href="PIC/gold-front.png" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<!-- /Coin Picture -->
<!-- Coin Picture -->
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/gold-back.png" download="" target="_blank">
<img src="PIC/gold-back_small.png" alt="TERA coin preview. Back side. Gold" title="TERA coin preview. Back side. Gold" />
</a>
<a href="PIC/gold-back.png" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<!-- /Coin Picture -->
<!-- Coin Picture -->
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/silver-front.png" download="" target="_blank">
<img src="PIC/silver-front_small.png" alt="TERA coin preview. Front side. Silver" title="TERA coin preview. Front side. Silver" />
</a>
<a href="PIC/silver-front.png" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<!-- /Coin Picture -->
<!-- Coin Picture -->
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/silver-back.png" download="" target="_blank">
<img src="PIC/silver-back_small.png" alt="TERA coin preview. Back side. Silver" title="TERA coin preview. Back side. Silver" />
</a>
<a href="PIC/silver-back.png" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<!-- /Coin Picture -->
<!-- Coin Picture -->
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/gold-four-coins-1.jpg" download="" target="_blank">
<img src="PIC/gold-four-coins_small-1.jpg" alt="TERA four coin preview. Front side. Gold" title="TERA coin preview. Front side. Gold" />
</a>
<a href="PIC/gold-four-coins-1.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<!-- /Coin Picture -->
<!-- Coin Picture -->
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/gold-four-coins-2.jpg" download="" target="_blank">
<img src="PIC/gold-four-coins_small-2.jpg" alt="TERA four coin preview. Back side. Gold" title="TERA coin preview. Back side. Gold" />
</a>
<a href="PIC/gold-four-coins-2.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<!-- /Coin Picture -->
<!-- Coin Picture -->
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/silver-four-coins-1.jpg" download="" target="_blank">
<img src="PIC/silver-four-coins_small-1.jpg" alt="TERA four coin preview. Front side. Silver" title="TERA coin preview. Front side. Silver" />
</a>
<a href="PIC/silver-four-coins-1.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<!-- /Coin Picture -->
<!-- Coin Picture -->
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/silver-four-coins-2.jpg" download="" target="_blank">
<img src="PIC/silver-four-coins_small-2.jpg" alt="TERA four coin preview. Back side. Silver" title="TERA coin preview. Back side. Silver" />
</a>
<a href="PIC/silver-four-coins-2.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<!-- /Coin Picture -->
<!-- Coin Picture -->
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/stopka_monet_gold_02.jpg" download="" target="_blank">
<img src="PIC/stopka_monet_gold_02_small.jpg" alt="TERA stack of coin preview. Front side. Gold" title="TERA coin preview. Front side. Gold" />
</a>
<a href="PIC/stopka_monet_gold_02.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<!-- /Coin Picture -->
<!-- Coin Picture -->
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/stopka_monet_gold_01.jpg" download="" target="_blank">
<img src="PIC/stopka_monet_gold_01_small.jpg" alt="TERA stack of coin preview. Back side. Gold" title="TERA coin preview. Back side. Gold" />
</a>
<a href="PIC/stopka_monet_gold_01.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<!-- /Coin Picture -->
<!-- Coin Picture -->
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/stopka_monet_silver_02.jpg" download="" target="_blank">
<img src="PIC/stopka_monet_silver_02_small.jpg" alt="TERA stack of coin preview. Front side. Silver" title="TERA coin preview. Front side. Silver" />
</a>
<a href="PIC/stopka_monet_silver_02.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<!-- /Coin Picture -->
<!-- Coin Picture -->
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/stopka_monet_silver_01.jpg" download="" target="_blank">
<img src="PIC/stopka_monet_silver_01_small.jpg" alt="TERA stack of coin preview. Back side. Silver" title="TERA coin preview. Back side. Silver" />
</a>
<a href="PIC/stopka_monet_silver_01.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<!-- /Coin Picture -->
<!-- Coin Picture -->
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/fly_gold.jpg" download="" target="_blank">
<img src="PIC/fly_gold_small.jpg" alt="TERA flying coin preview. Back side. Gold" title="TERA flying coin preview. Gold" />
</a>
<a href="PIC/fly_gold.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<!-- /Coin Picture -->
<!-- Coin Picture -->
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/fly_silver.jpg" download="" target="_blank">
<img src="PIC/fly_silver_small.jpg" alt="TERA flying coin preview. Front side. Silver" title="TERA flying coin preview. Silver" />
</a>
<a href="PIC/fly_silver.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<!-- /Coin Picture -->
<!-- Coin Picture -->
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/red_velvet_1.jpg" download="" target="_blank">
<img src="PIC/red_velvet_1_small.jpg" alt="TERA coin on the red velvet preview. FrontBack side. Gold" title="TERA coin on the red velvet preview. Front side. Gold" />
</a>
<a href="PIC/red_velvet_1.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<!-- /Coin Picture -->
<!-- Coin Picture -->
<div class="col-md-4 col-lg-3">
<div class="bg-grey coin-preview">
<a href="PIC/red_velvet_2.jpg" download="" target="_blank">
<img src="PIC/red_velvet_2_small.jpg" alt="TERA coin on the red velvet preview. Back side. Silver" title="TERA coin on the red velvet preview. Back side. Silver" />
</a>
<a href="PIC/red_velvet_2.jpg" download="" target="_blank" class="coin-preview__icon" title="Download image in high resolution">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 29.978 29.978" xml:space="preserve" width="20" height="20" fill="#777">
<g>
<path d="M25.462,19.105v6.848H4.515v-6.848H0.489v8.861c0,1.111,0.9,2.012,2.016,2.012h24.967c1.115,0,2.016-0.9,2.016-2.012
v-8.861H25.462z" />
<path d="M14.62,18.426l-5.764-6.965c0,0-0.877-0.828,0.074-0.828s3.248,0,3.248,0s0-0.557,0-1.416c0-2.449,0-6.906,0-8.723
c0,0-0.129-0.494,0.615-0.494c0.75,0,4.035,0,4.572,0c0.536,0,0.524,0.416,0.524,0.416c0,1.762,0,6.373,0,8.742
c0,0.768,0,1.266,0,1.266s1.842,0,2.998,0c1.154,0,0.285,0.867,0.285,0.867s-4.904,6.51-5.588,7.193
C15.092,18.979,14.62,18.426,14.62,18.426z" />
</g>
</svg>
</a>
</div>
</div>
<!-- /Coin Picture -->
</div>
<!-- /Row -->
</div>
<!-- /Container -->
</div>
<div id="about" class="section md-padding bg-grey">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<!-- About Tera content -->
<div class="col-md-12">
<div class="section-header text-center">
<h2 class="title">TERA MINING</h2>
</div>
<p align="center">
<a href="https://sourceforge.net/p/tera/code/ci/master/tree/README.md" target="_blank">TERA documentation </a> will help you start mining today.
</p>
</div>
<!-- /About Tera content -->
</div>
<!-- /Row -->
</div>
<!-- /Container -->
</div>
<!-- Footer -->
{{File=./SITE/footer_index.html}}

View File

@ -5,7 +5,7 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/
"use strict";

View File

@ -5,7 +5,7 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/
"use strict";

View File

@ -5,7 +5,7 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/
global.PERIOD_GET_BLOCK = 300, global.COUNT_HISTORY_BLOCKS_FOR_LOAD = 600, global.COUNT_BLOCKS_FOR_CHECK_POW = 50, global.MAX_DELTA_COUNT_SUM_FOR_LOAD = 10,

View File

@ -5,7 +5,7 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/
"use strict";

View File

@ -5,7 +5,7 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/

View File

@ -5,7 +5,7 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/
"use strict";
@ -114,7 +114,7 @@ module.exports = class CCode extends require("./base")
fs.writeSync(file_handle, data, 0, data.length)
fs.closeSync(file_handle)
var SignArr = arr2(Hash, GetArrFromValue(Data.VersionNum));
var Sign = secp256k1.sign(shabuf(SignArr), PrivateKey).signature;
var Sign = secp256k1.sign(SHA3BUF(SignArr), PrivateKey).signature;
global.CODE_VERSION = Data
global.CODE_VERSION.Hash = Hash
global.CODE_VERSION.Sign = Sign

View File

@ -5,7 +5,7 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/
"use strict";
@ -951,7 +951,7 @@ module.exports = class CConnect extends require("./transfer-msg")
if(!this.SignCurrentTimeDev)
{
var SignArr = GetArrFromHex(SERVER.addrStr);
this.SignCurrentTimeDev = secp256k1.sign(shabuf(SignArr), WALLET.KeyPair.getPrivateKey('')).signature
this.SignCurrentTimeDev = secp256k1.sign(SHA3BUF(SignArr), WALLET.KeyPair.getPrivateKey('')).signature
}
var Time = GetCurrentTime() - 0;
ToLog("Send time: " + Time + " to " + NodeInfo(Node))

View File

@ -5,10 +5,10 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/
global.UPDATE_CODE_VERSION_NUM = 1013;
global.UPDATE_CODE_VERSION_NUM = 1019;
global.MIN_CODE_VERSION_NUM = 992;
global.MINING_VERSION_NUM = 3;
global.InitParamsArg = InitParamsArg;
@ -131,6 +131,7 @@ if(global.LOCAL_RUN)
var Num = Date.now() - 300 * 1000;
global.START_NETWORK_DATE = Math.trunc(Num / 1000) * 1000;
}
global.NEW_SIGN_TIME = 25500000;
InitParamsArg();
if(global.LOCAL_RUN)
{
@ -151,6 +152,7 @@ if(global.LOCAL_RUN)
NETWORK = "LOCAL";
global.ALL_VIEW_ROWS = 1;
global.COUNT_NODE_PROOF = 1;
global.NEW_SIGN_TIME = 0;
}
else
if(global.TEST_NETWORK)
@ -177,6 +179,7 @@ else
global.NEW_BLOCK_REWARD1 = 1905000;
global.COUNT_NODE_PROOF = 8;
global.REST_START_COUNT = 10000;
global.NEW_SIGN_TIME = 4859000;
}
if(global.LOCAL_RUN)
{

View File

@ -5,7 +5,7 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/
require("./library.js");
@ -81,23 +81,9 @@ global.GetPublicKeyFromAddres = function (Arr)
RetArr[i] = Arr[i - 1];
return RetArr;
};
global.GetSign = function (Context,Msg)
{
var hash = shabuf(Msg);
var sigObj = secp256k1.sign(hash, Context.KeyPair.getPrivateKey());
return sigObj.signature;
};
global.GetVerifySign = function (ContextAddr,Msg,Sign)
{
var hash = shabuf(Msg);
if(ContextAddr.publickey === undefined)
ContextAddr.publickey = GetPublicKeyFromAddres(ContextAddr.addrArr);
var Result = secp256k1.verify(hash, Sign, ContextAddr.publickey);
return Result;
};
global.CheckDevelopSign = function (SignArr,Sign)
{
var hash = shabuf(SignArr);
var hash = SHA3BUF(SignArr);
for(var i = 0; i < DEVELOP_PUB_KEY_ARR.length; i++)
{
var Result = secp256k1.verify(hash, Buffer.from(Sign), DEVELOP_PUB_KEY_ARR[i]);

View File

@ -5,7 +5,7 @@
* @copyright: Yuriy Ivanov (Vtools) 2017-2019 [progr76@gmail.com]
* Web: https://terafoundation.org
* Twitter: https://twitter.com/terafoundation
* Telegram: https://web.telegram.org/#/im?p=@terafoundation
* Telegram: https://t.me/terafoundation
*/
"use strict";

Some files were not shown because too many files have changed in this diff Show More