Author

Topic: deleted (Read 710 times)

copper member
Activity: 4
Merit: 0
October 03, 2022, 02:20:52 PM
#14
Latest 124 peer node :

Code:
addnode=199.68.104.50
addnode=20.114.43.55
addnode=146.59.18.4
addnode=72.68.67.27
addnode=198.211.45.20
addnode=178.162.148.167
addnode=37.187.27.180
addnode=82.66.41.87
addnode=51.161.117.115
addnode=5.135.136.12
addnode=51.79.177.216
addnode=192.227.193.69
addnode=141.94.192.217
addnode=66.70.182.1
addnode=78.186.117.161
addnode=176.183.225.92
addnode=66.94.102.152
addnode=183.107.241.136
addnode=185.9.254.151
addnode=140.82.38.71
addnode=180.74.226.1
addnode=104.0.66.254
addnode=45.92.110.196
addnode=161.97.101.255
addnode=161.97.101.255
addnode=31.187.74.53
addnode=77.172.73.31
addnode=116.203.189.59
addnode=94.212.254.124
addnode=80.11.59.26
addnode=81.133.36.219
addnode=193.122.136.18
addnode=78.186.117.161
addnode=192.210.203.202
addnode=166.173.250.131
addnode=37.192.138.15
addnode=76.98.145.15
addnode=95.111.233.107
addnode=167.235.151.105
addnode=68.229.6.92
addnode=188.236.240.75
addnode=178.54.179.77
addnode=115.88.60.53
addnode=124.223.201.142
addnode=150.136.60.139
addnode=37.79.34.46
addnode=194.187.136.250
addnode=124.120.84.71
addnode=96.30.128.43
addnode=31.131.73.8
addnode=188.233.4.137
addnode=190.221.50.118
addnode=97.108.219.183
addnode=161.29.176.36
addnode=95.30.34.6
addnode=5.189.185.62
addnode=183.69.207.242
addnode=77.201.74.13
addnode=66.205.89.40
addnode=45.248.79.109
addnode=104.249.173.69
addnode=153.156.190.222
addnode=144.126.157.226
addnode=5.37.239.107
addnode=82.65.198.148
addnode=38.242.217.32
addnode=188.193.97.28
addnode=89.105.247.238
addnode=174.207.56.98
addnode=78.154.160.98
addnode=139.47.122.139
addnode=82.4.251.134
addnode=85.131.28.18
addnode=208.78.42.12
addnode=79.132.253.140
addnode=45.77.172.239
addnode=216.196.80.230
addnode=77.34.74.115
addnode=71.236.196.206
addnode=213.67.49.106
addnode=150.143.207.38
addnode=75.154.166.166
addnode=212.26.236.89
addnode=49.234.159.14
addnode=100.35.6.235
addnode=189.6.14.217
addnode=185.224.103.103
addnode=173.249.15.154
addnode=73.245.40.185
addnode=81.91.189.241
addnode=186.22.16.137
addnode=67.248.168.6
addnode=65.30.14.111
addnode=212.44.157.50
addnode=61.227.83.128
addnode=204.237.50.109
addnode=94.132.44.75
addnode=73.126.245.220
addnode=108.247.243.211
addnode=86.98.19.134
addnode=98.97.42.243
addnode=188.233.20.127
addnode=92.184.107.25
addnode=182.137.60.219
addnode=173.249.35.225
addnode=155.4.216.206
addnode=86.213.142.221
addnode=82.170.164.16
addnode=103.214.142.148
addnode=37.30.100.62
addnode=107.11.77.94
addnode=103.77.107.138
addnode=120.239.120.200
addnode=79.113.219.68
addnode=93.24.110.45
addnode=31.38.30.59
addnode=62.181.51.158
addnode=85.225.168.27
addnode=31.162.217.114
addnode=46.149.95.111
addnode=113.88.158.164
addnode=101.128.127.114
addnode=95.27.198.179
addnode=80.244.121.57
copper member
Activity: 4
Merit: 0
October 03, 2022, 02:18:34 PM
#13
how can I launch SmartNode, I haven't found any clear and working documentation when you release your document to launch SmartNode???

Here’s the tutorial on how to create a smartnode.

To create a smartnode, you’ll need a synced wallet (>600K FITA), a Linux VPS (2core+2gig ram with network, more resources are welcomed. But for now it’s fine.), and 600K FITA as collateral (as of 3rd Oct 2022).

1.Enable UFW & Open Ports
SSH to your VPS, I’m using Xshell and my VPS is running Ubuntu 20.04 under the root user.
After connected, type or copy/paste these commands and press ENTER.


Code:
apt install ufw -y

Code:
ufw default deny incoming 

Code:
ufw default allow outgoing 

Code:
ufw allow ssh

Code:
ufw allow 9933/tcp 

Code:
ufw allow 9932/tcp 

Code:
ufw enable
Press y and ENTER


Now type
Code:
wget https://github.com/thetaspere/theta/releases/download/1.3.17.01/Thetacore-ubuntu20-1.3.17.01.tar.gz 

Code:
tar -xzvf Thetacore-ubuntu20-1.3.17.01.tar.gz 

Code:
screen -S thenameyouwant 

Code:
./thetad --daemon 
(This step is letting the node sync with the network.)

Code:
CRTL+A+D to detach
(to return to the last screen you created, type screen -r thenameyouwant)

2.Head back to your computer.
Make sure your wallet is fully synced, encrypted and backup-ed. Generate a new address as the “receiving address”.
Go to Tools > Debug console, type walletpassphrase yourpasswordhere 600, this will unlock your wallet for 600 seconds. Or you just can unlock the wallet by go to Settings/ Unlock wallet.

Type dumpprivkey “receiving address”, this will dump the private key for your receiving address (this should be printed and stored offline in multiple locations).
Now, send 600K FITA collateral to your receiving address.
Wait for at least 2 confirmations.


3.Build protx command
It might be a little bit difficult.
An example protx quick_setup command from GitHub.
Code:
protx quick_setup d7898f44c6bdc39a49b0917d5c6bcb61455270ddb9e7eb1168a6b745434daf26 1 194.113.73.87:9932 16xwCzA8pZD5poCWnAaRZjjxdVg5HwZctu

d7898f44c6bdc39a49b0917d5c6bcb61455270ddb9e7eb1168a6b745434daf26 stands for the Transaction ID for the 600K FITA you sent. This can be viewed in Transactions, right click on the transaction, show details and you’ll see.

1 or 0 depends on the result from debug console. Type smartnode outputs, and it’ll show the 600K Transaction ID with a 1 or 0 after.

Follow-up is your VPS’ IP and port.

The last part is your fee address, this is any address in your wallet that contains enough FITA to pay the fee (less than 1 FITA is required), it CAN’T be your receiving address!

Now enter the protx quick_setup command in Debug console. This will create a .conf file for that node in the same directory you ran the wallet from. Open it and copy the contents.

4.Return to your VPS

Code:
./theta-cli stop
(to stop the Theta core)

You can use Xftp or just edit the .conf file in the server.

Code:
nano ~/.thetacore/theta.conf 
(The .thetacore folder should be under the root directory)

Paste the .conf content and save.

Type
Code:
screen -r thenameyouwant

Code:
./thetad

Wait for a few minutes, get yourself a coffee or a nice cold beer.

Code:
CTRL+A+D
Code:
./theta-cli smartnode status 

This should return:

Ready
Ready

Your node is ready.


How to check node’s current block height:
Code:
./theta-cli getblockcount

Code:
./theta-cli -getinfo

For linux screen’s usage:

Starting Named Session
Code:
screen -S session_name

Reattach to a Linux Screen
Code:
screen -r session_name

Detach from Linux Screen Session
Code:
CTRL+A+D

Detach from Specific Linux Screen Session
Code:
screen -d session_name


Writen by : HawxGT (Discord : HawxGT#7708)
Hope this tutorial can help you out, feel free to donate!
HawxGT Theta(FITA) Address:
Quote
14DXVJUQxEkCYGpGqm2dEPnSiTAKogBTQE
newbie
Activity: 2
Merit: 0
April 30, 2023, 12:30:18 PM
#11
Hello, Does anyone have any solutions for wallet node not syncing?
member
Activity: 1022
Merit: 19
October 09, 2022, 08:36:27 AM
#10
 
You can mine Theta at autoexchange mining pool Zergpool.com at 0.5% fee. Please use following commands for different mining options
 
Option 1 Auto coin switch mining by profitability within algorithm with autoexchange to specified coin wallet(BTC in example below)
Code:
-a gr -o stratum+tcp://ghostrider.mine.zergpool.com:5354 -u -p c=BTC

Option 2 Direct coin mining with payout to coin wallet
Code:
-a gr -o stratum+tcp://ghostrider.mine.zergpool.com:5354 -u -p c=FITA,mc=FITA

Option 3 Direct coin mining with autoexchange to specified coin wallet(BTC in example below)
Code:
-a gr -o stratum+tcp://ghostrider.mine.zergpool.com:5354 -u -p c=BTC,mc=FITA

Please note mc stands for mining coin symbol, c stand for payout coin symbol

SOLO and PARTY mining
Set m=solo, or m=party.YourPartyPassword to your password field to use this feature. No extra fees.

Autoexchange to BTC, LTC, DASH, DOGE, ETH, BCH or any other currency we mine
Happy mining,
 cheers pinpin
copper member
Activity: 337
Merit: 5
October 02, 2022, 02:25:34 PM
#9
how can I launch SmartNode, I haven't found any clear and working documentation when you release your document to launch SmartNode???
copper member
Activity: 2072
Merit: 1809
฿itcoin for all, All for ฿itcoin.
October 01, 2022, 07:59:17 PM
#8
ANN - THETA FITA - It is never too late
Yep shitcoiners!, you saw that right!
Hurry up and load them bags, it's never too late to lose your money.

With SHITA FITA, You will not only see the moon by Mars by the end of this year. What are you waiting for, folks?
legendary
Activity: 3388
Merit: 6887
Top Crypto Casino
October 01, 2022, 07:57:44 PM
#7
Who tell you to invest ? did we ?
The simple fact that you created an ANN thread to promote your shitcoin shows that you're suggesting (at the very least) that people should invest in/mine/use your coin.  So yes, you did tell me and anyone else reading this thread to invest.

Theta shita ? can you read a name ?
I surely can; can you understand an insult when it is written?  More to the point: could you possibly have come up with a worse name for an altcoin than this?  There's already a Theta, and on miningpoolstats they even link to the wrong coin on coinpaprika.

41907880 Coin in circulation and only 5% in our hand, dumped ?
I never made that claim, so I'm not sure why you wrote that.

The innovation : Who said we are focus only on the blockchain ? our innovation at a service for the theta core, where it will support the core wallet. an example, a payment gateway.
In other words, your big innovation is the wallet, which allows people to pay for things using cryptocurrency?

legendary
Activity: 3122
Merit: 1102
Leading Crypto Sports Betting & Casino Platform
October 01, 2022, 07:36:28 PM
#6
Since when did bitcointalk thread become a must for innovation? if no user told me to write this, there probably wouldn't be this thread
Your shitcoin wouldn't ever have gotten any publicity after you dumped a bunch of coins onto the market if you hadn't created a thread here.  

That second sentence makes no sense.  Who told you to create this thread?  Also, you know damn well why announcing the newest shitcoin via an ANN thread is of utmost importance, hence the thread we're having this nice little conversation in now.

Speaking of innovation, theta shita has none.  These are your main selling points from your website:



So please tell me how theta is any different from other coins using the ghostrider algo and why anyone should invest in it over other gr coins or any other altcoins for that matter.  Seriously, tell me.

don't worry, at the end of the day, those who will invest on this project will know real fast what they are getting into. if a crypto user has been here for quite some time, they already know what a crap coin looks like. i have the impression that this will not even survive one year, and if they are, the remaining years will be barely surviving up until they abandon this project. what's the likelihood that such situation will happen here?
legendary
Activity: 3388
Merit: 6887
Top Crypto Casino
October 01, 2022, 06:35:42 PM
#5
Since when did bitcointalk thread become a must for innovation? if no user told me to write this, there probably wouldn't be this thread
Your shitcoin wouldn't ever have gotten any publicity after you dumped a bunch of coins onto the market if you hadn't created a thread here. 

That second sentence makes no sense.  Who told you to create this thread?  Also, you know damn well why announcing the newest shitcoin via an ANN thread is of utmost importance, hence the thread we're having this nice little conversation in now.

Speaking of innovation, theta shita has none.  These are your main selling points from your website:



So please tell me how theta is any different from other coins using the ghostrider algo and why anyone should invest in it over other gr coins or any other altcoins for that matter.  Seriously, tell me.
member
Activity: 259
Merit: 13
September 26, 2022, 03:49:06 PM
#4
https://xeggex.com/market/FITA_USDT

Go mine fellas, exchange listing on 21st, btc thread on 24th.

Already dumped their bags.
newbie
Activity: 83
Merit: 0
September 25, 2022, 07:26:37 AM
#3
I would like to solo mine wallet, does anyone have a sample bat file for xmrig or wildrig?
newbie
Activity: 1
Merit: 0
September 24, 2022, 05:27:09 AM
#2
I SEE $$$$$$$$$$$$$$$$
copper member
Activity: 4
Merit: 0
September 24, 2022, 05:23:06 AM
#1
deleted
Jump to: