Pages:
Author

Topic: [ANN][ENT] Eternity - X11 - No Premine - page 43. (Read 83895 times)

hero member
Activity: 727
Merit: 501
Hello everybody. Very soon will be an updated version of the wallet.

The 27th of April the published this, and also posted the preann of a new coin:

https://bitcointalk.org/index.php?topic=1889977.0&utm_source=dlvr.it&utm_medium=twitter

Not very promising, true...

legendary
Activity: 1148
Merit: 1001
other question:

is there still somebody working on this project, last commit dez 2016 on github, team area on website empty and 3 vacant places?
dev(s) mia?

edit: and production timeline empty since september 2016, hmm not looking good i guess ...

hero member
Activity: 727
Merit: 501
If I find time I will try to write a local node setup guide in windows, Smokeyw.
legendary
Activity: 1148
Merit: 1001


any guide/script for masternode setup on vps maybe mutliple nodes with ipv6?

btw link on op to website shows 404 page not found error:
http://ent.eternity-group.org/en/

not very trustworthy for new people  Wink
Not exactly the most active dev team out there. Well, not active since may or so XD

I tried to make a IPv6 multiple installation with the help of mersmsxn (sorry, I know I always write horribly wrong your nick  Cry ) but there is something inherently wrong with the wallet which avoid us of getting it.

Salute

ahh ok thanks, will wait a bit until wallet is fixed and Marsmensch aka mxnsch ‏is fine again  Cheesy
https://twitter.com/Marsmensch/status/886160081389314049
full member
Activity: 228
Merit: 100
Guide to put a remote EN in a VPS server like Vultr or VPS.ag in Ubuntu 16.04 x64

I know that put this in root should be avoided, but don't have time to make users and so on for all the nodes I have.

After looging for the first time in the VPS follow this instructions. VPS is refered to the remote wallet. Controller wallet is the one with your ENT in your computer. If yo have installed masternodes of other coins, this is quite similar, but wording is always eternitynode.

Change default pass for security:
Quote
passwd root

Some simple firewall rules to improve security a bit:
Quote
ufw default deny
ufw logging on
ufw allow 22/tcp
ufw allow 4854/tcp
ufw allow 4855/tcp
ufw limit OpenSSH
ufw --force enable


Install the repo:
Quote

Wallet first start to create folders and files:
Quote
./eternityd

After the error message we create our eternity.conf file:
Quote
cd
cd .eternity/
nano eternity.conf

Write in it and save:
Quote
rpcuser=long random username
rpcpassword=longer random password
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
logtimestamps=1
maxconnections=256
eternitynode=1
eternitynodeprivkey=XXXX
addnode=176.65.120.174
addnode=176.65.120.5
addnode=2.95.220.18
addnode=46.119.117.105
addnode=5.19.241.85


In the controller wallet, open console and:
Quote
eternitynode genkey
You get the EN private_key
Quote
getaccountaddress
Associated address to the EN.

Send the collateral (exactly 1000 ENT in one trasaction) to the address generated before.

Back in the VPS:
Quote
cd
cd .eternity/
nano eternity.conf

Put your private_key obtained with enternitynode genkey before in the place XXXX and save.

Then:
Quote
cd
cd eternity-0.12.0/bin
./eternityd

In the wallet:
Quote
eternitynode getoutputs
We get the collateral TX_ID and TX_INDEX(0 or 1) (85898ae7956757657ced9689687687a 1 for example)

We open eternitynode.conf in our controller wallet and put a new line as:
Quote
Node-alias VPS_IP:4855 Private_key TX_ID TX_INDEX
Save the file
Close and reopen controller wallet

In VPS, check the wallet is already synced:
Quote
./eternity-cli getinfo
And take a look at block number to be sure EN is synced.

Check node creation transaction has already at least 16 confirmations. In the console:

Quote
Eternitynode start-alias

Message : eternitynode succesfully started blablablablabla...

Back in the VPS:
Quote
./eternity-cli eternitynode status

   "status" : "Eternitynode successfully started"

And done. My nodes have the bad habit to fall down every 10-15 days, take a look sometimes to their status with:
Quote
eternitynode list-conf

Donation address (give me a bit of your returns, I'm a poor man Wink ) : EenLewAUJNYR2EWVd4qRCyq7vrzysLkpRb

Salute, and any correction will be appreciated.

thanks alot this only work for Linux ? because i only have windows
hero member
Activity: 727
Merit: 501


any guide/script for masternode setup on vps maybe mutliple nodes with ipv6?

btw link on op to website shows 404 page not found error:
http://ent.eternity-group.org/en/

not very trustworthy for new people  Wink
Not exactly the most active dev team out there. Well, not active since may or so XD

I tried to make a IPv6 multiple installation with the help of mersmsxn (sorry, I know I always write horribly wrong your nick  Cry ) but there is something inherently wrong with the wallet which avoid us of getting it.

Salute
hero member
Activity: 727
Merit: 501
Guide to put a remote EN in a VPS server like Vultr or VPS.ag in Ubuntu 16.04 x64

I know that put this in root should be avoided, but don't have time to make users and so on for all the nodes I have.

After looging for the first time in the VPS follow this instructions. VPS is refered to the remote wallet. Controller wallet is the one with your ENT in your computer. If yo have installed masternodes of other coins, this is quite similar, but wording is always eternitynode.

Change default pass for security:
Quote
passwd root

Some simple firewall rules to improve security a bit:
Quote
ufw default deny
ufw logging on
ufw allow 22/tcp
ufw allow 4854/tcp
ufw allow 4855/tcp
ufw limit OpenSSH
ufw --force enable


Install the repo:
Quote

Wallet first start to create folders and files:
Quote
./eternityd

After the error message we create our eternity.conf file:
Quote
cd
cd .eternity/
nano eternity.conf

Write in it and save:
Quote
rpcuser=long random username
rpcpassword=longer random password
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
logtimestamps=1
maxconnections=256
eternitynode=1
eternitynodeprivkey=XXXX
addnode=176.65.120.174
addnode=176.65.120.5
addnode=2.95.220.18
addnode=46.119.117.105
addnode=5.19.241.85


In the controller wallet, open console and:
Quote
eternitynode genkey
You get the EN private_key
Quote
getaccountaddress
Associated address to the EN.

Send the collateral (exactly 1000 ENT in one trasaction) to the address generated before.

Back in the VPS:
Quote
cd
cd .eternity/
nano eternity.conf

Put your private_key obtained with enternitynode genkey before in the place XXXX and save.

Then:
Quote
cd
cd eternity-0.12.0/bin
./eternityd

In the wallet:
Quote
eternitynode getoutputs
We get the collateral TX_ID and TX_INDEX(0 or 1) (85898ae7956757657ced9689687687a 1 for example)

We open eternitynode.conf in our controller wallet and put a new line as:
Quote
Node-alias VPS_IP:4855 Private_key TX_ID TX_INDEX
Save the file
Close and reopen controller wallet

In VPS, check the wallet is already synced:
Quote
./eternity-cli getinfo
And take a look at block number to be sure EN is synced.

Check node creation transaction has already at least 16 confirmations. In the console:

Quote
Eternitynode start-alias

Message : eternitynode succesfully started blablablablabla...

Back in the VPS:
Quote
./eternity-cli eternitynode status

   "status" : "Eternitynode successfully started"

And done. My nodes have the bad habit to fall down every 10-15 days, take a look sometimes to their status with:
Quote
eternitynode list-conf

Donation address (give me a bit of your returns, I'm a poor man Wink ) : EenLewAUJNYR2EWVd4qRCyq7vrzysLkpRb

Salute, and any correction will be appreciated.
full member
Activity: 228
Merit: 100


any guide/script for masternode setup on vps maybe mutliple nodes with ipv6?

btw link on op to website shows 404 page not found error:
http://ent.eternity-group.org/en/

not very trustworthy for new people  Wink

yes im looking to for a masternode guide
or the dev is death ?
legendary
Activity: 1148
Merit: 1001


any guide/script for masternode setup on vps maybe mutliple nodes with ipv6?

btw link on op to website shows 404 page not found error:
http://ent.eternity-group.org/en/

not very trustworthy for new people  Wink
newbie
Activity: 2
Merit: 0
Hi there!

I bought ENT to make a node also. I saw that the community doesnt have a facebook and I did one https://www.facebook.com/groups/1926495864238631/
I have just created a Slack for the tutorials to make the nodes. https://eternitycoin.slack.com/
Thanks
hero member
Activity: 727
Merit: 501
how many coin will we need to create masternode? do you have a slack channel?
1000 ENT
No
how many masternodes can you run on a single ip ?
Only one. Repo has some bugs to avoid marschmen scrypt to be adapted to ENT
sr. member
Activity: 812
Merit: 256
how many masternodes can you run on a single ip ?
I have same question about masternodes and any more info about run map!
Thnaks
full member
Activity: 228
Merit: 100
how many masternodes can you run on a single ip ?
newbie
Activity: 54
Merit: 0
Hi guys,

How can i set a masternode?
I am new in this cryptocurrency, right now i have my ENTs

Thank you for any help

Regards
newbie
Activity: 42
Merit: 0
i try to mine this coin but it doesn't work for me
newbie
Activity: 42
Merit: 0
how many coin will we need to create masternode? do you have a slack channel?
legendary
Activity: 1638
Merit: 1036

out of interest i pointed some hash at the pool
http://p2p.eternity-group.org/workers

currently there are two workers, i am the top one.
it's a rental quoted at 450mhs, and it's history during the rental looks pretty consistent.

ETtckQXQqjW2ccfMQT86LnM7SofNkfJF3G   43   0   100%   620.92 MH
EPqJCYbEiN4iFvwSfCWC2adNrgJNvBiMuv   10   0   100%   157.09 MH

there's some curious stuff going on

humorously i am consistently getting paid out less than the lower address.
it's certainly strange.



sample transactions
https://chainz.cryptoid.info/ent/tx.dws?207785.htm
https://chainz.cryptoid.info/ent/block.dws?156813.htm
I have been mining there a lot of time and usually payments lags a lot. I found payments 24-48 after I stop mining.

Btw, take a look to the chainz explorer expiration date...

indeed i do see i've been getting payments since i stopped mining.
thanks for mentioning that


Hosting   Expires 2019-05-09 (in 22 months) (log)
hero member
Activity: 727
Merit: 501

out of interest i pointed some hash at the pool
http://p2p.eternity-group.org/workers

currently there are two workers, i am the top one.
it's a rental quoted at 450mhs, and it's history during the rental looks pretty consistent.

ETtckQXQqjW2ccfMQT86LnM7SofNkfJF3G   43   0   100%   620.92 MH
EPqJCYbEiN4iFvwSfCWC2adNrgJNvBiMuv   10   0   100%   157.09 MH

there's some curious stuff going on

humorously i am consistently getting paid out less than the lower address.
it's certainly strange.



sample transactions
https://chainz.cryptoid.info/ent/tx.dws?207785.htm
https://chainz.cryptoid.info/ent/block.dws?156813.htm
I have been mining there a lot of time and usually payments lags a lot. I found payments 24-48 after I stop mining.

Btw, take a look to the chainz explorer expiration date...
member
Activity: 106
Merit: 10
yah. totally.  How do we start that process going!?  done right with the community here we can make this one happen!
sr. member
Activity: 414
Merit: 250
Sounds good Bumpacoin. i just pointed my miner on ENT pool as well.  let's see how it goes.  This is strange coin, something inside the code is inherently wrong, but this has potential if dev's come back or someone knows how to fix it. 

> masternodes
> dark send
> 10% dev fund
> started september 2016 - not alot of [bad] history
> not on lot of exchanges
> unknown to most
> low market cap.

......... this is NOT investment advice!

But compelling...   Grin
...with a better wallet...
Pages:
Jump to: