Bitcoin Forum
May 06, 2024, 07:23:25 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 [189] 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 ... 312 »
  Print  
Author Topic: [TEK] TEKcoin Hi-PoS hybrid pos/pow no premine/ipo/ico  (Read 446023 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
clockuniverse
Legendary
*
Offline Offline

Activity: 1231
Merit: 1001


View Profile WWW
May 12, 2015, 02:59:10 AM
 #3761

I am a little confused by the "you will get the rate of 60 days."
If you don't stake 1000 coins for 60 days at 10% you will get 30 day rate of 1100, and the 1210 for the second month all in one go?
How about partial months?
Let's say I wait out 40 days because the difficulty is too high, then it drops down so I start staking.  How is my extra 10 days paid out to me?

Also, if we all want to wait for a low difficulty, can the next release of the wallet have an auto-stake at the lowest difficulty?

.    Implemented!    .
. DASH’s Decentralized Governance, 
  MASTERNODES, and Instant Send.
.
████
  ██

  ██
████

       ████
  ██

  ██
████

       WEBSITE
   REDDIT
   TWITTER

       ANN THREAD
   MATTERMOST
   BTC GARDEN

1715023405
Hero Member
*
Offline Offline

Posts: 1715023405

View Profile Personal Message (Offline)

Ignore
1715023405
Reply with quote  #2

1715023405
Report to moderator
1715023405
Hero Member
*
Offline Offline

Posts: 1715023405

View Profile Personal Message (Offline)

Ignore
1715023405
Reply with quote  #2

1715023405
Report to moderator
1715023405
Hero Member
*
Offline Offline

Posts: 1715023405

View Profile Personal Message (Offline)

Ignore
1715023405
Reply with quote  #2

1715023405
Report to moderator
If you want to be a moderator, report many posts with accuracy. You will be noticed.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715023405
Hero Member
*
Offline Offline

Posts: 1715023405

View Profile Personal Message (Offline)

Ignore
1715023405
Reply with quote  #2

1715023405
Report to moderator
1715023405
Hero Member
*
Offline Offline

Posts: 1715023405

View Profile Personal Message (Offline)

Ignore
1715023405
Reply with quote  #2

1715023405
Report to moderator
1715023405
Hero Member
*
Offline Offline

Posts: 1715023405

View Profile Personal Message (Offline)

Ignore
1715023405
Reply with quote  #2

1715023405
Report to moderator
Biomech
Legendary
*
Offline Offline

Activity: 1372
Merit: 1022


Anarchy is not chaos.


View Profile
May 12, 2015, 03:01:33 AM
 #3762

I am a little confused by the "you will get the rate of 60 days."
If you don't stake 1000 coins for 60 days at 10% you will get 30 day rate of 1100, and the 1210 for the second month all in one go?
How about partial months?
Let's say I wait out 40 days because the difficulty is too high, then it drops down so I start staking.  How is my extra 10 days paid out to me?

Also, if we all want to wait for a low difficulty, can the next release of the wallet have an auto-stake at the lowest difficulty?

I can't recall exactly how it's coded, but the interest rate is approximately 500% per annum (with variation from Novacoin code). If you go past the initial maturity, there's no upper limit. If you held out for a full year, and hit the difficulty correctly, you'd get ~500 %. Some POS coins have a "window" where it stops gaining weight after a time. TEK doesn't.

EDIT, I hit post too soon Tongue

It should be relatively trivial to write a script that monitors difficulty and unlocks your wallet via RPC command. Personally, I'm along for the ride. It stakes at whatever it stakes at. I know that's not optimal, but it's my game.
4x13
Legendary
*
Offline Offline

Activity: 1078
Merit: 1011


View Profile
May 12, 2015, 03:53:01 AM
 #3763

Any possibility of adding S4C/S4E into the wallet?? Like the one in NETcoin wallet?
presstab
Legendary
*
Offline Offline

Activity: 1330
Merit: 1000


Blockchain Developer


View Profile
May 12, 2015, 06:18:56 AM
 #3764

Some POS coins have a "window" where it stops gaining weight after a time. TEK doesn't.

As far as I can see TEK has the standard PPC stake protocol including max weight

Code:
unsigned int nStakeMinAge = 60 * 60 * 24 * 30; // minimum age for coin age
unsigned int nStakeMaxAge = 60 * 60 * 24 * 90; // stake age of full weight
unsigned int nStakeTargetSpacing = 1 * 60; // 60 seconds block spacing
https://github.com/noise23/TEK/blob/master/src/main.cpp#L46

Projects I Contribute To: libzerocoin | Veil | PIVX | HyperStake | Crown | SaluS
Biomech
Legendary
*
Offline Offline

Activity: 1372
Merit: 1022


Anarchy is not chaos.


View Profile
May 12, 2015, 07:39:56 AM
 #3765

Some POS coins have a "window" where it stops gaining weight after a time. TEK doesn't.

As far as I can see TEK has the standard PPC stake protocol including max weight

Code:
unsigned int nStakeMinAge = 60 * 60 * 24 * 30; // minimum age for coin age
unsigned int nStakeMaxAge = 60 * 60 * 24 * 90; // stake age of full weight
unsigned int nStakeTargetSpacing = 1 * 60; // 60 seconds block spacing
https://github.com/noise23/TEK/blob/master/src/main.cpp#L46

Hmm. I wonder if that's part of Noise23's update? Or was I just wrong?
kiklo
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000



View Profile
May 12, 2015, 08:25:13 AM
 #3766

Some POS coins have a "window" where it stops gaining weight after a time. TEK doesn't.

As far as I can see TEK has the standard PPC stake protocol including max weight

Code:
unsigned int nStakeMinAge = 60 * 60 * 24 * 30; // minimum age for coin age
unsigned int nStakeMaxAge = 60 * 60 * 24 * 90; // stake age of full weight
unsigned int nStakeTargetSpacing = 1 * 60; // 60 seconds block spacing
https://github.com/noise23/TEK/blob/master/src/main.cpp#L46

Hmm. I wonder if that's part of Noise23's update? Or was I just wrong?

My understanding was only the weight was limited at 90 days, limiting block weight competing for stake but the interest continues to accrue until it does stake. Does anywhere in the tekcoin code say different.
Basically the staking weight is capped but the interest earned is not, meaning you would earn more interest the longer it takes to stake.

 Cool
presstab
Legendary
*
Offline Offline

Activity: 1330
Merit: 1000


Blockchain Developer


View Profile
May 12, 2015, 02:54:04 PM
 #3767

Some POS coins have a "window" where it stops gaining weight after a time. TEK doesn't.

As far as I can see TEK has the standard PPC stake protocol including max weight

Code:
unsigned int nStakeMinAge = 60 * 60 * 24 * 30; // minimum age for coin age
unsigned int nStakeMaxAge = 60 * 60 * 24 * 90; // stake age of full weight
unsigned int nStakeTargetSpacing = 1 * 60; // 60 seconds block spacing
https://github.com/noise23/TEK/blob/master/src/main.cpp#L46

Hmm. I wonder if that's part of Noise23's update? Or was I just wrong?

It would have been a hard fork not a simple update. Pretty sure that its always been this way, but not positive.

Been a while since I have thought about TEK Tongue Looks like the community has stayed strong here Smiley

Projects I Contribute To: libzerocoin | Veil | PIVX | HyperStake | Crown | SaluS
dickwhite
Full Member
***
Offline Offline

Activity: 225
Merit: 100


View Profile
May 12, 2015, 09:59:49 PM
 #3768

Some POS coins have a "window" where it stops gaining weight after a time. TEK doesn't.

As far as I can see TEK has the standard PPC stake protocol including max weight

Code:
unsigned int nStakeMinAge = 60 * 60 * 24 * 30; // minimum age for coin age
unsigned int nStakeMaxAge = 60 * 60 * 24 * 90; // stake age of full weight
unsigned int nStakeTargetSpacing = 1 * 60; // 60 seconds block spacing
https://github.com/noise23/TEK/blob/master/src/main.cpp#L46

Hmm. I wonder if that's part of Noise23's update? Or was I just wrong?

As long as i can remember it has always been this way.
Biomech
Legendary
*
Offline Offline

Activity: 1372
Merit: 1022


Anarchy is not chaos.


View Profile
May 13, 2015, 04:33:00 AM
 #3769

Some POS coins have a "window" where it stops gaining weight after a time. TEK doesn't.

As far as I can see TEK has the standard PPC stake protocol including max weight

Code:
unsigned int nStakeMinAge = 60 * 60 * 24 * 30; // minimum age for coin age
unsigned int nStakeMaxAge = 60 * 60 * 24 * 90; // stake age of full weight
unsigned int nStakeTargetSpacing = 1 * 60; // 60 seconds block spacing
https://github.com/noise23/TEK/blob/master/src/main.cpp#L46

Hmm. I wonder if that's part of Noise23's update? Or was I just wrong?

As long as i can remember it has always been this way.

Ah well. Not the first time I've been wrong Tongue

I guess my understanding was off because it does continue to accrue "interest", but not weight. I thought it was both. Never had a TEK block take more than a couple days to stake, so I didn't care, but it's better to be correct.
thundertoe (OP)
Legendary
*
Offline Offline

Activity: 938
Merit: 1000



View Profile
May 15, 2015, 02:35:33 PM
 #3770

stake it up  Shocked

pos diff is back to .0000x now and paying 40%
ryanb
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
May 15, 2015, 02:40:41 PM
 #3771

stake it up  Shocked

pos diff is back to .0000x now and paying 40%

I staked 4 blocks this morning at 40%
I have one more to go

https://bitcoinfundingteam.com/ref/SatoshiTeam
turn 0.1 BTC to 80BTC week after week!!!
dickwhite
Full Member
***
Offline Offline

Activity: 225
Merit: 100


View Profile
May 15, 2015, 10:22:54 PM
 #3772

stake it up  Shocked

pos diff is back to .0000x now and paying 40%

Cha-Ching!
thundertoe (OP)
Legendary
*
Offline Offline

Activity: 938
Merit: 1000



View Profile
May 19, 2015, 06:00:29 PM
 #3773

getting close to 20btc volume at cryptsy in last 24hours  Smiley
ryanb
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
May 19, 2015, 07:56:27 PM
 #3774

getting close to 20btc volume at cryptsy in last 24hours  Smiley

that is awesome

https://bitcoinfundingteam.com/ref/SatoshiTeam
turn 0.1 BTC to 80BTC week after week!!!
clockuniverse
Legendary
*
Offline Offline

Activity: 1231
Merit: 1001


View Profile WWW
May 26, 2015, 03:02:05 AM
 #3775

You guys should update the information on Crypsty.  It says 100 million coins, but it really is unlimited, right?

https://www.cryptsy.com/currencies/view/TEK

.    Implemented!    .
. DASH’s Decentralized Governance, 
  MASTERNODES, and Instant Send.
.
████
  ██

  ██
████

       ████
  ██

  ██
████

       WEBSITE
   REDDIT
   TWITTER

       ANN THREAD
   MATTERMOST
   BTC GARDEN

Biomech
Legendary
*
Offline Offline

Activity: 1372
Merit: 1022


Anarchy is not chaos.


View Profile
May 26, 2015, 03:29:56 AM
 #3776

You guys should update the information on Crypsty.  It says 100 million coins, but it really is unlimited, right?

https://www.cryptsy.com/currencies/view/TEK
I just talked to thundertoe to clarify (and make him aware of this). Yes the information is incorrect. 100 million is the transaction limit, but there is currently nothing in the code that ends POW.
4x13
Legendary
*
Offline Offline

Activity: 1078
Merit: 1011


View Profile
May 26, 2015, 04:00:41 AM
 #3777

Has there been any discussion, or plans to get Tek on to coinpayments.com??
mmfiore
Hero Member
*****
Offline Offline

Activity: 808
Merit: 502



View Profile
May 29, 2015, 02:02:27 AM
Last edit: May 29, 2015, 02:24:15 AM by mmfiore
 #3778

anyone having trouble connecting to the network. My wallet is suddenly dropping on and off the network. I think I need a new set of nodes please.
Thanks in advance...

Is there a way to figure out good nodes to use. I find that every so many months I have to get new nodes. It would be nice to know how to discover new nodes on my own.



        ▄██▄            ▄██▄
       ██  ███████████ ██  ██
        ▀██▀            ▀███▌
       ▄                  ▐██
     ▄██▀   ▄▄▄▄▄▄▄        ▐██▄
    ▄██    ██▀ ▄▄▄▄         ▀▀
 ▄███▀     █ ▄█▀ ▄▄▄           ▄██▄
██  ██     █ █  █████  █ ▄    ██  ██
 ▀██▀            ▀▀▀ ▄██ █     ███▀
     ▄            ▄▄██▀ ▄█   ▄██▌
    ▀██▄          ▄▄▄▄▄█▀   ▄██
      ██▄                   ▀▀
       ▀███▄            ▄██▄
       ██  ██  ██████████  ██
        ▀██▀            ▀██▀


        ▄██▄            ▄██▄
       ██  ███████████ ██  ██
        ▀██▀            ▀███▌
       ▄                  ▐██
     ▄██▀   ▄▄▄▄▄▄▄        ▐██▄
    ▄██    ██▀ ▄▄▄▄         ▀▀
 ▄███▀     █ ▄█▀ ▄▄▄           ▄██▄
██  ██     █ █  █████  █ ▄    ██  ██
 ▀██▀            ▀▀▀ ▄██ █     ███▀
     ▄            ▄▄██▀ ▄█   ▄██▌
    ▀██▄          ▄▄▄▄▄█▀   ▄██
      ██▄                   ▀▀
       ▀███▄            ▄██▄
       ██  ██  ██████████  ██
        ▀██▀            ▀██▀
.
PRE-REGISTER NOW FOR
THE MAIN TOKENSALE


██
██
██ ██
██ ██
██ ██
██ ██
██ ██
██ ██
   ██
   ██
.MONETIZE YOUR IOT DATA!.

Telegram
Twitter
▄▄███████████████████████████████████▄▄
██████████▀▀▀▀███████████▀▀▀▀██████████
█████████▌ ██          █▌ ██  █████████
██████████▄▄▄▄███████████▄▄  ▐█████████
█████████▀▀█████████████████  ▀████████
████████  ▄███▀ ▄▄▄▄█████████▌ ▀███████
██████▀  ▄██▀ ▄█▀ ▄▄██████████▄▄███████
███▀▀▀  ███▌ ▄█ ▄█▀▀▀███████████▀▀▀▀███
██▌ ██ ▐███▌ █▌ █ ▐█▌ █▌ █ ▐███  ██ ▐██
███▄▄▄▄███████████▄▄▄█▀ ▄█ ▐███▌  ▄▄███
███████▀▀██████████▄▄▄▄█▀ ▄███▀  ██████
███████▄  █████████▄▄▄▄▄▄████▀  ███████
████████▄  ▀█████████████████▄▄████████
██████████    ▀██████████▀▀▀▀██████████
██████████▌ ██ ▐█         ██ ▐█████████
███████████▄▄▄▄██████████▄▄▄▄██████████
▀▀███████████████████████████████████▀▀
Biomech
Legendary
*
Offline Offline

Activity: 1372
Merit: 1022


Anarchy is not chaos.


View Profile
May 29, 2015, 02:39:07 AM
 #3779

anyone having trouble connecting to the network. My wallet is suddenly dropping on and off the network. I think I need a new set of nodes please.
Thanks in advance...

Is there a way to figure out good nodes to use. I find that every so many months I have to get new nodes. It would be nice to know how to discover new nodes on my own.

Here's what I do. Not just with Tek, where I rarely have problems.

First run getpeerinfo, and copy all of your current peers to a text file. Just in case. Stop the client or daemon.

Then, go into .tekcoin folder (or users\<username>\appdata\roaming\tekcoin if windoze) and edit tekcoin.conf to remove or better comment out your addnodes. All of them. (#addnode= makes it invisible to the client).

Now, delete peers.dat and restart the client or daemon.

Wait about ten minutes. usually it will find good peers.
mmfiore
Hero Member
*****
Offline Offline

Activity: 808
Merit: 502



View Profile
May 29, 2015, 11:01:46 AM
 #3780

Thanks Biomech I did manage to find some new nodes and that worked and I am solidly connected to the network. Now I am back to the original problem where the wallet is freezing a lot. It stops for several moments and then resumes. I think it needs to have some maintenance done. What do you recommend for the freezing problem. Maybe I have too many small blocks or something like that.



        ▄██▄            ▄██▄
       ██  ███████████ ██  ██
        ▀██▀            ▀███▌
       ▄                  ▐██
     ▄██▀   ▄▄▄▄▄▄▄        ▐██▄
    ▄██    ██▀ ▄▄▄▄         ▀▀
 ▄███▀     █ ▄█▀ ▄▄▄           ▄██▄
██  ██     █ █  █████  █ ▄    ██  ██
 ▀██▀            ▀▀▀ ▄██ █     ███▀
     ▄            ▄▄██▀ ▄█   ▄██▌
    ▀██▄          ▄▄▄▄▄█▀   ▄██
      ██▄                   ▀▀
       ▀███▄            ▄██▄
       ██  ██  ██████████  ██
        ▀██▀            ▀██▀


        ▄██▄            ▄██▄
       ██  ███████████ ██  ██
        ▀██▀            ▀███▌
       ▄                  ▐██
     ▄██▀   ▄▄▄▄▄▄▄        ▐██▄
    ▄██    ██▀ ▄▄▄▄         ▀▀
 ▄███▀     █ ▄█▀ ▄▄▄           ▄██▄
██  ██     █ █  █████  █ ▄    ██  ██
 ▀██▀            ▀▀▀ ▄██ █     ███▀
     ▄            ▄▄██▀ ▄█   ▄██▌
    ▀██▄          ▄▄▄▄▄█▀   ▄██
      ██▄                   ▀▀
       ▀███▄            ▄██▄
       ██  ██  ██████████  ██
        ▀██▀            ▀██▀
.
PRE-REGISTER NOW FOR
THE MAIN TOKENSALE


██
██
██ ██
██ ██
██ ██
██ ██
██ ██
██ ██
   ██
   ██
.MONETIZE YOUR IOT DATA!.

Telegram
Twitter
▄▄███████████████████████████████████▄▄
██████████▀▀▀▀███████████▀▀▀▀██████████
█████████▌ ██          █▌ ██  █████████
██████████▄▄▄▄███████████▄▄  ▐█████████
█████████▀▀█████████████████  ▀████████
████████  ▄███▀ ▄▄▄▄█████████▌ ▀███████
██████▀  ▄██▀ ▄█▀ ▄▄██████████▄▄███████
███▀▀▀  ███▌ ▄█ ▄█▀▀▀███████████▀▀▀▀███
██▌ ██ ▐███▌ █▌ █ ▐█▌ █▌ █ ▐███  ██ ▐██
███▄▄▄▄███████████▄▄▄█▀ ▄█ ▐███▌  ▄▄███
███████▀▀██████████▄▄▄▄█▀ ▄███▀  ██████
███████▄  █████████▄▄▄▄▄▄████▀  ███████
████████▄  ▀█████████████████▄▄████████
██████████    ▀██████████▀▀▀▀██████████
██████████▌ ██ ▐█         ██ ▐█████████
███████████▄▄▄▄██████████▄▄▄▄██████████
▀▀███████████████████████████████████▀▀
Pages: « 1 ... 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 [189] 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 ... 312 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!