Author

Topic: [DVC]DevCoin - Official Thread - Moderated - page 290. (Read 1058949 times)

hero member
Activity: 742
Merit: 500
Its as easy as 0, 1, 1, 2, 3
December 26, 2013, 11:10:09 PM
Someone delete this ^.
eeh
full member
Activity: 185
Merit: 100
December 26, 2013, 10:56:42 PM
Think of referrals as a way to permanently tip another user that has helped you. You can earn a minute percentage of fees/points for folks you refer, but they must use your referral code when they sign up.

1. Cryptsy.

If anyone would like to trade DVC at Cryptsy and hasn't signed up yet, please consider using my referral code https://www.cryptsy.com/users/register?refid=46 to sign up.

You can also enter my referral ID ceb9475ab6f51ade79b2fbee2dcbc059fe0b9159 if you don't have anyone filled in to that field yet.

Disclosure: I would ideally receive a Cryptsy Points for trading activity that you perform. I'm not sure how much or even if they can be used for anything yet.

2. Vircurex.

My referral URL is https://vircurex.com/welcome/index?referral_id=991-14430. Please consider signing up for Vircurex if you have not done so thus far. In my opinion, it is the best place to buy and sell DVC.

3. Crypto-Trade.

My personal referral link is https://crypto-trade.com/ref/eeharris.

I would encourage everyone to share their information or perhaps unthinkingbit would allow us to post our referral links on our Devtome pages under the Tips section.

EDIT: I apologize if this is considered panhandling or hoboing. I think all the Devtomers should be supporting each other with this feature.
legendary
Activity: 2940
Merit: 1090
December 26, 2013, 10:53:15 PM
We have always had free transactions, I think, haven't we?

Or maybe it was just taking a fee without telling me?

I have had sends to Vircurex take many hours to get confirmations, I had always figured that was because they included no fee.

Dust protection is supposed to force a few on tiny tiny transactions, not slap on a tiny fee on all transactions.

I am not positive though.

But I routinely all along have sent transactions of millions of coins at a time without seeing any mention of any fees.

-MarkM-
legendary
Activity: 2044
Merit: 1005
December 26, 2013, 10:04:42 PM
Anyways for now the pushed version 1.0.6 (WINDOWS 32  Tongue) is the one we should test with... min fee is 1 coin and seems 0.2 fees to send coins back and forth (the normal 225-230 bytes) peer to peer transactions.

IsDust picks up transactions smaller than 546.00 uDVC and doesn't allow them to be sent (value too low).
legendary
Activity: 2044
Merit: 1005
December 26, 2013, 09:42:10 PM
So GetMinFee does the following:
Code:
int64 nMinFee = (1 + (int64)nBytes / 1000) * nBaseFee;

and then allowfree which resets nMinFee back to 0 if its a small transaction (I commented this out for now)

and then   

Code:
// DEVCOIN: To limit dust spam, require an additional one tenth of CTransaction::nMinTxFee/CTransaction::nMinRelayTxFee for each output
    BOOST_FOREACH(const CTxOut& txout, vout)
         nMinFee += nBaseFee / 10;


Which adds  a small dust fee protection. SO there can never be any free transactions.

For my tests regardless if I try to send myself 1 coin or 50k coins I get the same transaction size of about 225-227 bytes... thus my fee is always a little over 1 coin since basefee is 1 coin. However the above minfee calculation truncates values so that minfee will jump to 2 coins once nBytes is > 1000 and less than 1499 (the normal c++ round would round up at 1500). So you get jumps... however if we do:

Code:
int64 nMinFee = roundint64((1.0 + (double)nBytes / 1000.0) * nBaseFee);

then we get a smooth fee increase as bytes increase. so for 225 bytes this now prints out 1.427 dvc fee as opposed to 1.2 dvc fee for the code that truncates. If nBytes fluctuates quite often then we might want to use the one I changed it to, the double casting and roundint64...

Wekkel, since your transaction was 2k the fee would jump so this confused me still as I don't know how its getting 6 dvc from nBytes of 2000 and nBaseFee of 5 coins.

Anyways now as nBaseFee is 1 coin and nBytes is 2000 then we should get 3*nBaseFee or 3 coins for a transaction with 2000 bytes. I think that is fair? I dont know what a common huge transaction is that would make the fee higher?

legendary
Activity: 2940
Merit: 1090
December 26, 2013, 09:01:06 PM
Re fees, remember that "coin age" is part of the fee calculations too, so if one time that you send an amount you had old coins adding up to that amount you will get one fee but then if next time you try to send the same amount and the only coins you have left to use are new ones (such as when you only had about enough and the only reason you have it again to send it again is the other person testing with you sent it back to you) the fee could well be higher because part of the anti=spam concept is to discourage sending the same coins back and forth back and forth back and forth like you might be doing in your testing if you didn't have much in the wallet that you are testing with in the first place.

That is part of why I tried to suggest lookign what the fee would be using one version of the client - an old one already in use for a long long time - then look what the new client would say the fee would be for the same amount sent using the same wallet. In other words don't actually send the coins since that would change the contents of the wallet. Just look what the client says the fee would be, then try the other client to see what it says the fee would be.

Once you actualyl send the wallet changes, and if you send most of what you have then the other tester sends it back it has become new coins, each send consumes "coin age", the newer the coins you want to send the more it looks like you are spamming the blockchain by sending back and forth or around in circles, which, taken to extremes, is one method of spamming blockchains thus one thing the anti spam stuff is trying to discourage aka make expensive.

However if I understand the posts-so-far correctly I get the impression the problem has actually been that one of the testers was not downloading what they thought they were downloading due to some"placeholder" concept confusing which files are which versions for what platforms.

...

Re the volatility not knowing how much a share is does increase the unpredictability. It does not really seem all that hard to figure out that a devcoin is worth usually somewhere between 30 and 230 satoshis, nor that is as been more usual lately to be between 30 and 130 than between 130 and 230. SO I think a lot of that side of the uinpredictability is easily solved by not placing "market orders" but instead simply placing a sell offer at a a price of your choosing, such as at the price your budget or business plan assmed.

e.g. If your business plan calls for being able to get 100 satoshis of bitcoin per devcoin, place your order at that price. It might take a while, but there does not seem to really be much doubt that one can get that much per devcoin even though we did go through a longer dry spell than hoped/expected lately between one time offers to sell at 100 were gobbled up and the previous period in which such offers were gobbled up.

It is a queue, really. Everyone who wants to dump their devcoins is in a first in first out queue at any particular price. The delay in getting your offers to sell at 100 accepted by a buyer is partly due to all the people who placed their offer to sell at that price before you did. Then also by all the people who got impatient and decided to place their offer at 99 so it would get acted upon before all of the offers to sell at 100. Then some folk get even more impatient and decide they won't wait for 99, they will wait for 98 which will come sooner, so a queue starts to build up at 98. And so on.

I have orders placed way up over 300, I only recall seeing such orders gobbled up once but I plan to have it happen again so I have offers up there so as to be first in line to sell at those prices when the time does come that they start being acted upon.

-MarkM-
member
Activity: 218
Merit: 10
December 26, 2013, 08:33:39 PM
Hello Everyone,

I am new to devcoin and I just started adding content to Devtome today.  I noticed that I needed to link my articles to the "most recent" page, but I am having difficulty doing so.  I would really appreciate if someone could point me in the right direction.  Thanks.

edit- It really helps if you log in....lol!
legendary
Activity: 2044
Merit: 1005
December 26, 2013, 06:38:45 PM
It does not punish a payment of 1 DVC (payment fee is 0.2 DVC).

hmm it does here maybe cause im sending it to myself? Ill try sending to my vircurex account

Whats the smallest value you can send before it says its too small?
legendary
Activity: 3108
Merit: 1531
yes
December 26, 2013, 06:33:04 PM
It does not punish a payment of 1 DVC (payment fee is 0.2 DVC).
legendary
Activity: 2044
Merit: 1005
December 26, 2013, 06:27:06 PM
i've been around for long enough to experience volatility in all its forms.

I'm totally ok with it now. I do not want total predictable reliable price stability.

I want to get a fair amount of value for open source projects funded.
The coin says that '90% of miners profits' are given away to fund those projects, right?

Maybe you can try to guarantee a minimum payout expressed in a more stable currency and then offer the payout in DVC. That would require store DVC in large quantities that could become a problem.  But it is still feasible.

When and if the price stabilize then you can offer random payouts, but now... it doesn't make much sense.  Not only the price of 1DVC is volatile, but even the number of coins per shares :\


I agree, the only way that someone is going to make a very expensive Devcoin ATM is if the business model of making the ATM is feasible. The 96 share bounty will simply be a bonus or a thank-you for a job well done.

My guess is there will be some company out there who makes an ATM at can accept a wide variety of crypto and Devcoin will simply be one of them.

~2 cents~



Something like a coinpayments with a logo saying wr accept coinpayments! Meaning any alts like dvc can be used to fund your account.. We should talk to coinpayments and push for people to accept coinpayments not just dvc.. and work with coinpayments to get more marketing exposure on their website so that people will start to prefer dvc as the defacto payment on their system..

That way if atm accepted coin payments it wiuld be a win win for dvc.

We have to be careful with this. We might end up with an ATM that has 6500 different logos of currency/crypto/card types that are accepted. One could spend 15 minutes trying to find the right logo to see if they can use the machine or not.  Smiley


Yeah, it will probably be a company like Coinpayments and some specilized ATM maker that get together and squirt out some type of  hybrid ATM that can accept cryptos. Making it might be the easy part. The hard part will be trying to convince store owners to put this machine somewhere.

Leverage the share system put them on the receiver list.. we can pay for extra exposure.. give shares to store owners for x rounds to give incentive to use ones that support devcoin.
legendary
Activity: 2044
Merit: 1005
December 26, 2013, 06:24:04 PM
Updated to 1.0.6 (v0.8.5.1-g25a7d46-beta). Still got the 6 DVC payment fee message.
Therefore, I threw away the block chain files (except wallet.dat of course) and synched again. Still the same problem.

Then I thought of installing the 32 bit wallet instead of the 64 bit I installed each time. Voila, I can send 10 DVC with a 0.20 DVC fee.
A 1 DVC payment also takes only 0.2 DVC fee instead of 1.2 DVC fee.

I will remain with the 32 bit version for now.

This mirrors my results as well. The 32 bit version is a bit quicker on my Windows PC too.

Omg lol
 My bad but I did say that all other files were placeholders.. there is no w64 version until someone builds it.

So you have been installing older version probably with the allowfree commented out.. Anyway please test this version and tell me if you like the fee structure and the way it punishes dust payments (under 400dvc) aswell as not allowing payments under 1mDVC at all.
hero member
Activity: 720
Merit: 500
December 26, 2013, 06:22:39 PM
Also, on the topic of the ATM: Would an ATM where you exchange bitcoins for devcoins be eligible?  It would be easier so the bounty could be lowered.  e.g. you get a cheap e reader or use a rasp pi, show a user qr code to send bitcoins, once tx has enough confirms we send DVC to their address?
Wouldn't that basically just encompass 'the mobile internet' in a box, although making devcoin mobile would be a good step.
sr. member
Activity: 308
Merit: 250
December 26, 2013, 06:19:09 PM
Updated to 1.0.6 (v0.8.5.1-g25a7d46-beta). Still got the 6 DVC payment fee message.
Therefore, I threw away the block chain files (except wallet.dat of course) and synched again. Still the same problem.

Then I thought of installing the 32 bit wallet instead of the 64 bit I installed each time. Voila, I can send 10 DVC with a 0.20 DVC fee.
A 1 DVC payment also takes only 0.2 DVC fee instead of 1.2 DVC fee.

I will remain with the 32 bit version for now.

This mirrors my results as well. The 32 bit version is a bit quicker on my Windows PC too.
legendary
Activity: 3108
Merit: 1531
yes
December 26, 2013, 06:07:45 PM
Updated to 1.0.6 (v0.8.5.1-g25a7d46-beta). Still got the 6 DVC payment fee message.
Therefore, I threw away the block chain files (except wallet.dat of course) and synched again. Still the same problem.

Then I thought of installing the 32 bit wallet instead of the 64 bit I installed each time. Voila, I can send 10 DVC with a 0.20 DVC fee.
A 1 DVC payment also takes only 0.2 DVC fee instead of 1.2 DVC fee.

I will remain with the 32 bit version for now.
legendary
Activity: 1008
Merit: 1005
December 26, 2013, 06:00:13 PM
On my entry in the devtome lists, it says I have 0 popularity and my rating for the round is 1, is that correct?  Apparently my multiplier is 0, so I get nothing.
It says the same for me, because we haven't submitted anything this round to apply any multiplier to. And I'd guess the rest of the stats can't be updated until the round ends.

Ok, thanks!

Do you know what the value of a share last round was? (round 30)

EDIT: I found it on devtome stats
hero member
Activity: 720
Merit: 500
December 26, 2013, 05:58:41 PM
On my entry in the devtome lists, it says I have 0 popularity and my rating for the round is 1, is that correct?  Apparently my multiplier is 0, so I get nothing.
It says the same for me, because we haven't submitted anything this round to apply any multiplier to. And I'd guess the rest of the stats can't be updated until the round ends.
EDIT: think it was about 800 lines
legendary
Activity: 1008
Merit: 1005
December 26, 2013, 05:52:01 PM
Thanks for the heads up. I will be sure to email before I place any orders with them.
You're on the devtome lists now: http://d.evco.in/charity/devtome_31.csv

On my entry in the devtome lists, it says I have 0 popularity and my rating for the round is 1, is that correct?  Apparently my multiplier is 0, so I get nothing.

Also, on the topic of the ATM: Would an ATM where you exchange bitcoins for devcoins be eligible?  It would be easier so the bounty could be lowered.  e.g. you get a cheap e reader or use a rasp pi, show a user qr code to send bitcoins, once tx has enough confirms we send DVC to their address?
hero member
Activity: 720
Merit: 500
December 26, 2013, 05:49:42 PM
I agree, the only way that someone is going to make a very expensive Devcoin ATM is if the business model of making the ATM is feasible. The 96 share bounty will simply be a bonus or a thank-you for a job well done.

My guess is there will be some company out there who makes an ATM at can accept a wide variety of crypto and Devcoin will simply be one of them.

~2 cents~
Exactly, the example of a devcoin atm will occur when either there's either money in it to do so (and I reckon if one was made and installed in  few major town centres the dvc awareness and price rise would more than cover them, but it's a risk), or a natural market exists to demand them (at which point the cost would already be reasonable because there's competiton to make one as dvc by that point would have to have attained a stability/value that made that demand exist). As to which comes first, demand or supply - that's a risk/return balance - and today's tipping point is why there's not yet a devcoin atm.
legendary
Activity: 1176
Merit: 1019
I do not give financial advice .. do your own DD
December 26, 2013, 05:47:21 PM
i've been around for long enough to experience volatility in all its forms.

I'm totally ok with it now. I do not want total predictable reliable price stability.

I want to get a fair amount of value for open source projects funded.
The coin says that '90% of miners profits' are given away to fund those projects, right?

Maybe you can try to guarantee a minimum payout expressed in a more stable currency and then offer the payout in DVC. That would require store DVC in large quantities that could become a problem.  But it is still feasible.

When and if the price stabilize then you can offer random payouts, but now... it doesn't make much sense.  Not only the price of 1DVC is volatile, but even the number of coins per shares :\


I agree, the only way that someone is going to make a very expensive Devcoin ATM is if the business model of making the ATM is feasible. The 96 share bounty will simply be a bonus or a thank-you for a job well done.

My guess is there will be some company out there who makes an ATM at can accept a wide variety of crypto and Devcoin will simply be one of them.

~2 cents~



Something like a coinpayments with a logo saying wr accept coinpayments! Meaning any alts like dvc can be used to fund your account.. We should talk to coinpayments and push for people to accept coinpayments not just dvc.. and work with coinpayments to get more marketing exposure on their website so that people will start to prefer dvc as the defacto payment on their system..

That way if atm accepted coin payments it wiuld be a win win for dvc.

We have to be careful with this. We might end up with an ATM that has 6500 different logos of currency/crypto/card types that are accepted. One could spend 15 minutes trying to find the right logo to see if they can use the machine or not.  Smiley


Yeah, it will probably be a company like Coinpayments and some specilized ATM maker that get together and squirt out some type of  hybrid ATM that can accept cryptos. Making it might be the easy part. The hard part will be trying to convince store owners to put this machine somewhere.
legendary
Activity: 2044
Merit: 1005
December 26, 2013, 05:43:13 PM
i've been around for long enough to experience volatility in all its forms.

I'm totally ok with it now. I do not want total predictable reliable price stability.

I want to get a fair amount of value for open source projects funded.
The coin says that '90% of miners profits' are given away to fund those projects, right?

Maybe you can try to guarantee a minimum payout expressed in a more stable currency and then offer the payout in DVC. That would require store DVC in large quantities that could become a problem.  But it is still feasible.

When and if the price stabilize then you can offer random payouts, but now... it doesn't make much sense.  Not only the price of 1DVC is volatile, but even the number of coins per shares :\


I agree, the only way that someone is going to make a very expensive Devcoin ATM is if the business model of making the ATM is feasible. The 96 share bounty will simply be a bonus or a thank-you for a job well done.

My guess is there will be some company out there who makes an ATM at can accept a wide variety of crypto and Devcoin will simply be one of them.

~2 cents~



Something like a coinpayments with a logo saying wr accept coinpayments! Meaning any alts like dvc can be used to fund your account.. We should talk to coinpayments and push for people to accept coinpayments not just dvc.. and work with coinpayments to get more marketing exposure on their website so that people will start to prefer dvc as the defacto payment on their system..

That way if atm accepted coin payments it wiuld be a win win for dvc.
Jump to: