Bitcoin Forum
May 14, 2024, 09:14:36 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 [26] 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 »
501  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: September 13, 2015, 12:46:26 AM
could someone help me how to make script on this case?

loss
switch
loss
loss
switch


thanks

   You could easily do that.  But you don't have it completely described.    If your just planning to lose all of the bets that's easy...

I think your asking to switch hi/lo each time you lose 1 more then the last time. 

What happens when you win?  Reset back to switch on the first loss?

You would need two counters.

lossstreak = 0 -- How many loses in the current streak
lossswitch = 1  -- When to switch


if (win) then   --  Bet won

   lossstreak = 0  -- reset
   lossswitch = 1 -- reset

else   -- Bet lost

   lossstreak += 1  -- increase lossstreak

   if (lossstreak == lossswitch) then
      bethigh = !bethigh
      lossswitch += 1  -- increase switch count
      lossstreak = 0  -- start streak again
   end 
   
end

   Hopefully that helps. 



 

 

hey chilly

what i mean is i want to use chance in example 90%

 if i got 1 loss bet then it will switch, then if next 2 bet are loss too then it will switch again..not on every loss it will switched..
reset on win. this only for 4 streaks only..

  So are you switching hi/lo?  Or changing the chance?

   If I understand you correctly, I think that the above, with addition stuff would do it.  lossstreak is a counter of loses before a switch.  lossswitch is when it will switch.
So the first loss lossstreak will go from 0 to 1 and loss switch will be 1 so it will switch.  It resets lossstreak to 0 and lossswitch to 2.  If you lose again, lossstreak will be 1 and switch is 2, and another loss and it will be streak 2 switch 2, so it should switch. 

Another easier to code way to go would be

if (math.random() < .5) then bethigh = !bethigh end

That line will switch randomly about 50% of the time.   random gives a random number between 0 and 1.  so you can change the .5 to whatever value you like.  .75 for 75% switch or .25 for 25% or any other number between 0 and 1.

Just add that to the else part of your script. 
502  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: September 12, 2015, 01:20:22 PM
could someone help me how to make script on this case?

loss
switch
loss
loss
switch


thanks

   You could easily do that.  But you don't have it completely described.    If your just planning to lose all of the bets that's easy...

I think your asking to switch hi/lo each time you lose 1 more then the last time. 

What happens when you win?  Reset back to switch on the first loss?

You would need two counters.

lossstreak = 0 -- How many loses in the current streak
lossswitch = 1  -- When to switch


if (win) then   --  Bet won

   lossstreak = 0  -- reset
   lossswitch = 1 -- reset

else   -- Bet lost

   lossstreak += 1  -- increase lossstreak

   if (lossstreak == lossswitch) then
      bethigh = !bethigh
      lossswitch += 1  -- increase switch count
      lossstreak = 0  -- start streak again
   end 
   
end

   Hopefully that helps. 



 

 
503  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: September 09, 2015, 01:06:07 AM
A beta version of the bot is available for testing that includes some new features:

A new form for getting user input from within the programmer mode using the read(string prompt, int type) method
added a loadstrategy(string file) method to programmer mode to dynamically load strategies from the programmer mode
added a simpleswap form for exchanging deposits and withdrawals
added a max and minimum bet value

A full list of changes can be found by following the link below.

The beta also supports coinmillions.com with btc, xrp and ltc betting. To log in to coinmillions, you need your api key found in your account settings. NOT your password. (it looks something like a.11162.182.MRrobot5xxxXxXxXXXxxXXxxXXXxx3yMwZ3eo)

Download it here: https://bot.seuntjie.com/botpage.aspx?id=13

Hello Seuntjie, the bot is very good. Do you have any strategy to recommend? You have much more experience than me in this bot. Of course thanks and greetings from Argentina

I'm glad you like the bot. Unfortunately I do not have a "magical winning strategy" since it doesn't exist. The bot is only for entertainment purposes, so ultimately, how good a strategy is, is up to you.



    Just downloaded the 3.0.3 beta.  I was unable to log onto PRC and Just-dice.  PRC updated the balance and then said logon failed.  Just-dice just failed.  Went back to 3.0.2 and logged onto both sites fine.  

I am able to log in and bet with 3.0.3 beta on both the sites without problem. Is it possible you miss-typed your password or 2fa code or something?
Either way, I'll take another look at it and see if I can find the problem.

   I tried again, and got the failure, but the balance was updated correctly.  Figured I would delete the info in the roaming folder.  no I get an unhandled exception.

See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.Runtime.Serialization.SerializationException: There was an error deserializing the object of type DiceBot.pdlogin. Encountered unexpected character 'U'. ---> System.Xml.XmlException: Encountered unexpected character 'U'.
   at System.Xml.XmlExceptionHelper.ThrowXmlException(XmlDictionaryReader reader, XmlException exception)
   at System.Runtime.Serialization.Json.XmlJsonReader.ReadAttributes()
   at System.Runtime.Serialization.Json.XmlJsonReader.ReadNonExistentElementName(StringHandleConstStringType elementName)
   at System.Runtime.Serialization.Json.XmlJsonReader.Read()
   at System.Xml.XmlBaseReader.IsStartElement()
   at System.Xml.XmlBaseReader.IsStartElement(XmlDictionaryString localName, XmlDictionaryString namespaceUri)
   at System.Runtime.Serialization.XmlReaderDelegator.IsStartElement(XmlDictionaryString localname, XmlDictionaryString ns)
   at System.Runtime.Serialization.XmlObjectSerializer.IsRootElement(XmlReaderDelegator reader, DataContract contract, XmlDictionaryString name, XmlDictionaryString ns)
   at System.Runtime.Serialization.Json.DataContractJsonSerializer.InternalIsStartObj ect(XmlReaderDelegator reader)
   at System.Runtime.Serialization.Json.DataContractJsonSerializer.InternalReadObject(XmlReaderDelegator xmlReader, Boolean verifyObjectName)
   at System.Runtime.Serialization.XmlObjectSerializer.InternalReadObject(XmlReaderDelegator reader, Boolean verifyObjectName, DataContractResolver dataContractResolver)
   at System.Runtime.Serialization.XmlObjectSerializer.ReadObjectHandleExceptions(XmlReaderDelegator reader, Boolean verifyObjectName, DataContractResolver dataContractResolver)
   --- End of inner exception stack trace ---
   at DiceBot.json.JsonDeserialize[T](String jsonString)
   at DiceBot.PD.Login(String Username, String Password, String otp)
   at DiceBot.cDiceBot.btnLogIn_Click(Object sender, EventArgs e)
   at System.Windows.Forms.Control.OnClick(EventArgs e)
   at System.Windows.Forms.Button.OnClick(EventArgs e)
   at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
   at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
   at System.Windows.Forms.Control.WndProc(Message& m)
   at System.Windows.Forms.ButtonBase.WndProc(Message& m)
   at System.Windows.Forms.Button.WndProc(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Loaded Assemblies **************
mscorlib
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18444 built by: FX451RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
----------------------------------------
DiceBot
    Assembly Version: 3.0.0.2
    Win32 Version: 0.0.0.0
    CodeBase: file:///C:/Users/Bob/bitcoin/Bots/DiceBot-3.0.3%20Beta/DiceBot.exe
----------------------------------------
System.Windows.Forms
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34251 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System.Drawing
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34238 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
SharpLua
    Assembly Version: 2.0.4696.34005
    Win32 Version: 2.0.0.0
    CodeBase: file:///C:/Users/Bob/bitcoin/Bots/DiceBot-3.0.3%20Beta/SharpLua.DLL
----------------------------------------
System.Windows.Forms.DataVisualization
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18408
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms.DataVisualization/v4.0_4.0.0.0__31bf3856ad364e35/System.Windows.Forms.DataVisualization.dll
----------------------------------------
System.Configuration
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34234 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
System.Data.SQLite
    Assembly Version: 1.0.94.0
    Win32 Version: 1.0.94.0
    CodeBase: file:///C:/Users/Bob/bitcoin/Bots/DiceBot-3.0.3%20Beta/System.Data.SQLite.DLL
----------------------------------------
System.Data
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.Data/v4.0_4.0.0.0__b77a5c561934e089/System.Data.dll
----------------------------------------
System.Core
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------
System.Transactions
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.Transactions/v4.0_4.0.0.0__b77a5c561934e089/System.Transactions.dll
----------------------------------------
System.EnterpriseServices
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.EnterpriseServices/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll
----------------------------------------
System.Numerics
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Numerics/v4.0_4.0.0.0__b77a5c561934e089/System.Numerics.dll
----------------------------------------
System.Net.Http
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Net.Http/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Net.Http.dll
----------------------------------------
PresentationCore
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/PresentationCore/v4.0_4.0.0.0__31bf3856ad364e35/PresentationCore.dll
----------------------------------------
WindowsBase
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/WindowsBase/v4.0_4.0.0.0__31bf3856ad364e35/WindowsBase.dll
----------------------------------------
System.Runtime.Serialization
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34234 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Serialization/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll
----------------------------------------
SMDiagnostics
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34234 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/SMDiagnostics/v4.0_4.0.0.0__b77a5c561934e089/SMDiagnostics.dll
----------------------------------------
System.ServiceModel.Internals
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.34234 built by: FX452RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.ServiceModel.Internals/v4.0_4.0.0.0__31bf3856ad364e35/System.ServiceModel.Internals.dll
----------------------------------------

************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

<configuration>
    <system.windows.forms jitDebugging="true" />
</configuration>

When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.

Went back to 3.0.1 and logged into PRC fine.  Logged out and tried 3.0.3 and still getting the "failure to login or register".  Weird thing is it correctly updates my balance.  That shouldn't happen if the password or userid was invalid.     
  
504  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: September 08, 2015, 07:12:08 PM

    Just downloaded the 3.0.3 beta.  I was unable to log onto PRC and Just-dice.  PRC updated the balance and then said logon failed.  Just-dice just failed.  Went back to 3.0.2 and logged onto both sites fine. 
505  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake on: September 03, 2015, 01:36:05 PM
it's very hard and expensive to stake your coins guys!
I don't know wheather it's worth to invest in CLAMs just for mine them..
PLEASE DO NOT ASSAULT ME IT'S JUST MY OPINION I'M OPEN TO THINK OTHERWISE

   It's not "Hard" at all.  "expensive" is relative. 

Only you can decided if it's worth investing in. 

Once this dig whale finishes I'm guessing we'll have around 1.2 Mil clams. 

Assuming all are staking that's 1440 / 1200000 =   .12% inflation daily.  .12 * 365 = 43.8% yearly

Those are just the staking assumptions.   There is much more to consider before investing in a coin.  anticipated price, long term value, stability, etc etc.  And I'll leave that up to you..  Cheesy
506  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake on: August 31, 2015, 07:39:34 PM
and after the digger send the outputs to poloniex they remain separate in thos addresses?

   I took a quick look, and I'm no expert by a long shot.  I selected one of the 4.6 clam inputs, and that wallet had several 4.6 clam inputs, looking back at one of those, they came from the digger.  So it almost looks like the digger has several accounts on Poloniex.  That's one way around the withdrawal limits...    

   Depending on the system load on Poloniex, your deposit could be used to fund someones withdrawal, with out being merged into another address.  So just because you see a lot of 4.6 input's doesn't mean Poloniex is digging.  it only means Poloniex has a lot of clams broken up into 4.6 clam piles.  Which make sense since the digger is using Poloniex to unload.  


    This is not to say it could not be Poloniex, Just that based on them giving away clams in the beginning (via a dig???) and the fact the digger is using poloniex, makes it more unlikely.  
507  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake on: August 31, 2015, 05:13:28 PM
I just bought clams to bet on jd and this is my withdrawal from poloniex to jd. how is this possible?

http://blocktree.io/transaction/CLAM/9578cfb913a27d2d39a3616bdd184a51e71de674bfc81c80755e2ecb9b62f474

Can you elaborate on what the issue is or what you are concerned about in this transaction?

Did you have issues receiving your coins?

it looks like poloniex is digging for clams and also it sells it on the market. Imo this is a huge conflict of interests... Maybe they are the misterious digger.

   Or...   The digger is sending his 4.6 clam outputs to poloniex...  Poloniex was the first exchange to have clams,  They had a large clam giveaway.  I thought it had to do with them digging their clams at that time. 
508  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: August 30, 2015, 04:14:55 PM

   Hey Seuntjie,

   Can you take a peek at the tip function for JD.  Doesn't seem to be working correctly.  Not sure exactly what the problem is, but I think the tip gets kicked off, but doesn't complete.  Then my script keeps retrying it and eventually gets muted.  I don't know for sure it's the script retrying, but that's my guess.

            Thanks 

Hmm I assume it's because dooglus added the confirm tip thing. I'll make sure it works for the next version


   Oh that would make sense.  OK, Will wait for your update.  Thanks
509  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: August 30, 2015, 02:10:24 PM

   Hey Seuntjie,

   Can you take a peek at the tip function for JD.  Doesn't seem to be working correctly.  Not sure exactly what the problem is, but I think the tip gets kicked off, but doesn't complete.  Then my script keeps retrying it and eventually gets muted.  I don't know for sure it's the script retrying, but that's my guess.

            Thanks 
510  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake on: August 29, 2015, 12:26:48 PM
thank you !
im trying to earn some clams but im stuck at this site http://clamcoin.science
this site is giving some clam to just-dice.com users(a dice site)
but site says "user not found" what should i do ?

   That site only works for Just dice users.  You have to have a userid on just-dice, and it has to be registered with the faucet.  The faucet tips the clams to the user instead of sending via the blockchain. 
511  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Just-Dice.com : now with added CLAMs : Play or Invest on: August 28, 2015, 07:41:41 PM
Actually just in that screen shot, he lost around 37 clams to make 100.  That's not bad. of course that's just one screen shot.   

I did a quick run-down and I came up with ~450-500 CLAM of profit through that screenshot. A far cry from your result.

Looks to me like you're both wrong.

Summing the profit-per-bet:

(+ 1.5 2.2 3.4 -10.1
   2.8 4.2 -12.5
   3.4 5.3 -15.4
   -8.2
   2.2 3.4 5.3 -15.4
   4.2 -12.5
   3.4 -10.1
   2.8 -8.2
   2.2 3.4 5.2 8.0 12.2 18.7 28.5 43.4 66.1 100.7 -1.0) = 239.1

ie. a net profit of around 240 CLAMs.

   Yup, I missed the -8.2 bet and forgot he would keep all of the profit on the last streak. 

That's still to risky for me.  You have to wade through all of those loses, hoping to hit that 10 green streak.   He is betting 60% or was it 65% (can't see the screen shot while typing this).  Even then he could go quite a while...
512  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Just-Dice.com : now with added CLAMs : Play or Invest on: August 28, 2015, 02:33:40 PM
Here's an unusual strategy:


Seems like some kind of reverse martingale to me, with 50% or so increase on win.

   It is really weird.  His starting bets are not always the same (as far as I can tell).  But it looks like he takes his starting bet and adds the winnings for the next bet.  So he won around 100 clams risking around 4.  It looks like he's actually losing quite a bit to get that 100 clam win...    

   Actually just in that screen shot, he lost around 37 clams to make 100.  That's not bad. of course that's just one screen shot.    

I did a quick run-down and I came up with ~450-500 CLAM of profit through that screenshot. A far cry from your result.

   Try it again.  If you start at the bottom.  He bets 2.869 and wins 1.501.  He's not taking that profit.  His next bet is for 4.370 (2.869 + 1.501) So he's still risking his original bet (2.869) and now the profit he made (1.501).  He won that and tries again (6.656).  And then he busted (10.137)  

   He didn't lose 10.137 he lost 2.869, and the time to make the other bets.  If you look, the only streak he stopped increasing and locked in his profit, was the one he won 100 on.  

   So he lost every other streak.  But you only count the initial bet in each streak (because that's the actual lose)
2.869 5.393 6.654 4.368 8.210 6.652 5.390 (4.363)

He lost 39.536 ( + all profit) before his winning streak started.  
513  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Just-Dice.com : now with added CLAMs : Play or Invest on: August 27, 2015, 06:02:32 PM
Here's an unusual strategy:


Seems like some kind of reverse martingale to me, with 50% or so increase on win.

   It is really weird.  His starting bets are not always the same (as far as I can tell).  But it looks like he takes his starting bet and adds the winnings for the next bet.  So he won around 100 clams risking around 4.  It looks like he's actually losing quite a bit to get that 100 clam win...    

   Actually just in that screen shot, he lost around 37 clams to make 100.  That's not bad. of course that's just one screen shot.   
514  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake on: August 27, 2015, 04:57:13 PM
Coinwallet.co is legit but it's a online wallet.

I can stake in pool there

It looks like they will stake your CLAMs for you and only take 1% of your profits as commission, unlike some other site that I won't mention which gouges you for a whopping 10% of your profit!

   Now that, there is funny, I don't care who you are....  Smiley 
515  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake on: August 25, 2015, 09:10:08 PM
I don't think the digging should be changed.

Me and creative discussed this with each other before we launched CLAM and made the conscious decision to not end the digging. We wanted to include as many people as possible and we wanted them to always be able to redeem their CLAM.

I think its frustrating for current clam investors to see someone with potentially so many CLAMs (including myself) but ultimately I feel these issues will work themselfs out over time as the available distribution amount increases.

As CLAM's inflates the potential effect further large digs could have will diminish even without doing anything other then waiting.

So while in the short term its annoying to deal with the uncertainty.. getting more dug clams on the market will ultimately improve the situation in the future without making any changes to consensus.

This is of course all just my opinion
What do you mean by potential many clams? Are you saying that u own alot of btc address where u can digg clams out off?

Regards,
Joust

   He is including himself in the current clam investors, not as a whale/digger.   
516  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake on: August 25, 2015, 02:47:56 PM
Just found this list on Just-Dice:

biggest cumulative amount wagered in last 12 hours

+---------+-----------------+
| uid     | wagered         |
+---------+-----------------+
|  986902 | 26,766.11726771 |
| 1192330 |  4,826.64010714 |
| 1208485 |  4,048.47193957 |
| 1159336 |  2,286.08000000 |
| 1192465 |  1,410.33322550 |
|     120 |  1,176.11407621 |
| 1125335 |    844.62820072 |
| 1131019 |    710.79843750 |
| 1209281 |    701.37071454 |
|  777777 |    648.37109375 |

Seems like the guy who is digging up all these Clams likes to take a risk  Cheesy

  No...  He's running a bot.

10:37:11 *** (986902) <botox> [#783773238] bet 1.08584688 CLAM at 80% and won 0.25788863 CLAM ***
517  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake on: August 25, 2015, 02:18:27 PM
I don't think changes to the coin should be considered. It's no surprise that there are some people with access to a Satoshi-level supply.

With a half million clams, someone can crash the price temporarily. However, as has been mentioned, this isn't the most profitable move.

Compare it to the block reward. With 1 clam reward being produced roughly every minute, there are roughly half a million clams produced every year. If the new big holder decides to sell his supply over the course of a year, it's similar (in terms of supply) to the block reward doubling. In that case it's reasonable for the price to drop by half. If the new big holder decides to sell his supply over the course of a month, it's similar to the block reward increasing to roughly 13 clams per minute. In that case it's reasonable for the price to drop to roughly the 1 mbit level.

Incidentally, while this is obviously bad for the price, it may ultimately cause Clams to climb higher on coinmarketcap.com, since for some reason coinmarketcap.com does not count still-buried clams in the supply.

Both creative and xploited remember me arguing with them long ago about maybe suspending "digging" at some point in the future. I have no recollection of the argument, but apparently my position was that it would be unfair to suspend digging, and I convinced them both of that point of view.

I can see both sides: it's understandable that the people who already "dug" their CLAMs would want to suspend future digging so that their own share of the CLAM supply isn't diluted by newcomers. But it's also great for CLAM that we can tell newcomers "hey, check CLAM out - you probably already have some". We've seen people come to Just-Dice to dig their CLAM and stick around as part of the community, purely because they were able to claim "free money" to get started with. I don't think there's any doubt that CLAM is only as well known as it is today because of the widespread initial distribution. Shutting that off now turns CLAM into "just another shitcoin" in some ways. As I see it, the initial distribution is really what sets CLAM apart from the crowd.

I'd be interested to hear what others have to say. I've seen quite a few people in the Just-Dice chat arguing that the 15 million "undug" CLAM is a huge liability, and makes people hold back from investing in the coin.

IS the sky falling?  Again!!!   Cheesy

    As long as this is not an exploit, I have no problems with the clams being dug.  We shouldn't change the rules in the middle of the game.  

I would bet 80% of clam holders would want to freeze digging, just to hold their stake and value.  I'm in the 20% club, that says let it ride....

Once this person finishes digging/dumping, the price will stabilize for a little and then continue to rise.  But there should then be more clams on the market to help the growth without it getting to out of hand, to quick.          

   Now's the chance to by fresh clams, cheap....  
518  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake on: August 23, 2015, 02:53:21 AM
This is not working for me why?
Just click file -> import wallet!
Then password, is that my bitcoin QT wallet pass?
and i get Error: Error parsing JSON:password
Just a guess, if a JSON parser is failing, maybe the deal is that you need quotes around your password.  This is only a guess.
Thanks for trying but that did not work, wonder what is fuking it up for me....

Yes, it isn't telling the passphrase is wrong; but that there is an error parsing what the interface pulls in.

Try using the console tab and the importwallet command.
Use "help" in the console to get information about the command for formatting.
Error: Please enter the wallet passphrase with walletpassphrase first. (code -13)
What?
   Try walletpassphrase=your wallet pass phrase. 
519  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] QIBUCK COIN - X13 - POS/POBH - 1st Proof of Baghold on: August 21, 2015, 01:58:41 PM

   Happy belated Birthday to QiBucks. 

My first transaction to my wallet was 8/11/14.   A bit late, but 1 year + and still going strong.   Way to go.... 
520  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] QIBUCK COIN - X13 - POS/POBH - 1st Proof of Baghold on: August 17, 2015, 12:42:50 AM

how many qibuck can i get if im holding 10..000 QBK ?

   Staking is a very modest 5% per year, so your looking at 1.36 QBK per day staking 10,000.

Bag bonus for someone with just a little more then 10,000 last month was 0.0121875 BTC.  The bonus varies, But that gives you an idea what it could be. 
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 [26] 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!