Pages:
Author

Topic: [ANN] Exclusive Coin EXCL 2.0 - MasterNodes, ProofOfStake, 4 years old, Android! - page 34. (Read 116929 times)

sr. member
Activity: 854
Merit: 264
Crypto is not a religion but i like it
excl looking good , good job dev Cheesy
legendary
Activity: 1526
Merit: 1000
the grandpa of cryptos
Slack added to OP + website. Twitter looks adujested.
Buys looking good, we have more and more MasterNodes now too so network is secured.

Edited OPs numbers:
Algorithm: 100% PoS
Block reward: 0.5 EXCL
MasterNode:5 000 EXCL to start, 0.5 EXCL Reward per Block
40 confirms to maturity
24 hour stake min age

WOW thanks for this great updates.

i have been with this coin since day one, and now i feel how its great!
full member
Activity: 195
Merit: 100
EXCL Coin Official Developer
Slack added to OP + website. Twitter looks adujested.
Buys looking good, we have more and more MasterNodes now too so network is secured.

Edited OPs numbers:
Algorithm: 100% PoS
Block reward: 0.5 EXCL
MasterNode:5 000 EXCL to start, 0.5 EXCL Reward per Block
40 confirms to maturity
24 hour stake min age
sr. member
Activity: 854
Merit: 264
Crypto is not a religion but i like it
sr. member
Activity: 642
Merit: 292
Dump slowly and will end up to the original price.

direct opposite at the moment. Price and demand slowly rising, available coins decreasing. Cheesy
legendary
Activity: 1638
Merit: 1036
bumba you're a god, thanks boss.

heh i hope it works Smiley i havent actually tried it on windows but it looks ok. lol
full member
Activity: 147
Merit: 100
bumba you're a god, thanks boss.
legendary
Activity: 1638
Merit: 1036
this is going to be a quick and slightly messy post Smiley i'm not going in depth to how you do each step, so hopefully you can work it out or someone else can expand it
it uses the exclusivecoind.exe which is the command line wallet, no gui, so you send it rpc calls to interact with it.

a basic method to address the seeming issue where running multiple masternode with a single exclusivecoin instance is problematic, they stop after a while.

i use a workaround in linux where i setup a cronjob to restart them every 15 minutes.
the basic format is

Code:
*/15 * * * * * exclusivecoind masternode start-many

to replicate this in windows you need a couple basic steps, not to mention setting up yr actual masternodes.

1) you need the exclusivecoind.exe available here https://github.com/exclfork/ExclusiveCoin/tree/master/releases
to run the coind the exclusivecoin.conf file will need
Code:
rpcuser=yourusername
rpcpassword=youruserpassword
2) a bat file to run.
in the bat file, will be a simple loop to send a command to the exclusivecoind.exe

1- download the file,
make sure you added rpcuser/rpcpassword to your .conf file
to run you will need a command prompt, cd to where file is located
Code:
start /b exclusivecoind.exe
using "start" means it will run in background so you can interface with it eg. "exclusivecoind.exe getinfo"
2- in a windows explorer navigate to where you want the bat file to run (mine is in same location as coind.exe),
right click > create new text file
rename to "whatever.bat"
right click file > edit
Code:
:loop
exclusivecoind.exe masternode start-many
timeout /t 900 /nobreak
goto :loop
open another command terminal, navigate to where the bat file is then start it.
Code:
whatever.bat

done.
now you can send rpc commands to the coind in the first command window while the second just loops until you close it.
if yr masternodes stop due to the "issue", then every 15 minutes (900 seconds) the command to start-many should kick them back into life.

NOTE.
you cannot run the qt-wallet and teh coind at the same time unless you use seperate datadirectories.
full member
Activity: 147
Merit: 100
We should get a nice graphic with all the information to put on the first post to help show a high level of quality of our coin. Are there any graphic artists  that might be willing to do it ? I could do a mock up, but im an amateur photoshopper at most.

yes, agreed. there are so many small improvements we can do to make excl better, let's keep it up guys things are starting to look really bullish.
sr. member
Activity: 392
Merit: 250
We should get a nice graphic with all the information to put on the first post to help show a high level of quality of our coin. Are there any graphic artists  that might be willing to do it ? I could do a mock up, but im an amateur photoshopper at most.


i can help with graphics for some free coins Wink
sr. member
Activity: 378
Merit: 250
We should get a nice graphic with all the information to put on the first post to help show a high level of quality of our coin. Are there any graphic artists  that might be willing to do it ? I could do a mock up, but im an amateur photoshopper at most.
legendary
Activity: 1638
Merit: 1036
How many coins do i get with a masternode in 1 month?

1 minute blocks
~1440 blocks/day @ 0.5excl masternode reward

apparently 49 masternodes atm.
1440/49 = ~29 blocks each masternode/day

as masternode count changes so does avg reward.


edit.
mn count just went to 50 Smiley no idea how many there really are
hero member
Activity: 531
Merit: 500
How many coins do i get with a masternode in 1 month?
full member
Activity: 221
Merit: 100

try using this for a bootstrap. (possibly won't be compatible).
it needs to be called "bootstrap.dat" and put in your datadirectory

if it bugs out before finishing,
rename it back to "bootstrap.dat" and try again.

it's up to around block 352000

https://drive.google.com/open?id=0B5j8d4FSc7dreVhzb2ljbW9kdWs




Thanks bumba, just to be clear, it goes in the exclivecoin file in appdata/roaming where the config, wallet, ect is right?

absolutely Smiley
you dont' need to delete the old chain or anything, it'll continue from where it is up to.

i just noticed there's also a bootstrap available here, http://cryptochainer.com/dir/?page_id=881
but i dont see any info's on how old/current it is.


also..If we are going to do a hardfork then we should consider uping the masternode rewards to somewhere near 50% to encourage ppl to create more masternode?

I agree, I think a 7500 requirement and a 50% masternode reward is a good incentive for people to invest in the network long term while also incentivizing buying the currency.

it is actually 50% atm, seems a incorrect amount in OP
https://github.com/exclfork/ExclusiveCoin/blob/master/src/main.cpp#L4675

Someone should update this in the OP then!
full member
Activity: 147
Merit: 100
hey!

TehMoonwalker from the slack channel is planning to make an EXCL infographic (PIVX vs EXCL) + (Dash vs EXCL), similar to the one PIVX made which helped make them get so popular. Checkout the link below, we're getting one of these for EXCL!

https://pivx.org/2017/03/08/infographic-pivx-vs-dash/

legendary
Activity: 1638
Merit: 1036
hey bumba, I was wondering if you could help me out. I have a stuck transaction that hasnt been confirmed for a while now with a fee. I sent it to another address in my own wallet and it is just sitting with zero confirmations doing nothing. it was for a little over 15k

hopefully just a matter of resendtx via the debug/console.

hope my PM helps Smiley
sr. member
Activity: 378
Merit: 250
hey bumba, I was wondering if you could help me out. I have a stuck transaction that hasnt been confirmed for a while now with a fee. I sent it to another address in my own wallet and it is just sitting with zero confirmations doing nothing. it was for a little over 15k
full member
Activity: 147
Merit: 100
I just got my first EXCL masternode running! Many thanks to bumbacoin who wrote an extremely helpful article on the process. http://bumbacoin.blogspot.com.au/2016/07/how-to-setup-exclusive-coin-master-node.html

I have read some people stating a proposed increase to the masternode minimum from 5000 to 7500 coins. I would gladly purchase more at this stage in development but as the demand increases, the high buyin will phase new investors out. With so many coins adopting the masternode system, it would be wise to keep the amount lower to be in the same space as say DASH for instance.

great work Smiley sometimes they're painful. but mostly they're just a bit time consuming as you wait for confirms etc.

wow, awesome!

thanks bumba, i'll be using this tutorial tomorrow Smiley
legendary
Activity: 1638
Merit: 1036
I just got my first EXCL masternode running! Many thanks to bumbacoin who wrote an extremely helpful article on the process. http://bumbacoin.blogspot.com.au/2016/07/how-to-setup-exclusive-coin-master-node.html

I have read some people stating a proposed increase to the masternode minimum from 5000 to 7500 coins. I would gladly purchase more at this stage in development but as the demand increases, the high buyin will phase new investors out. With so many coins adopting the masternode system, it would be wise to keep the amount lower to be in the same space as say DASH for instance.

great work Smiley sometimes they're painful. but mostly they're just a bit time consuming as you wait for confirms etc.
Pages:
Jump to: