Bitcoin Forum
May 08, 2024, 11:30:57 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 [90] 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 ... 147 »
1781  Economy / Games and rounds / Re: ☆☆☆ LuckyBit Red Raffle ☆☆☆ on: May 13, 2016, 05:00:30 AM
https://blockchain.info/tx/bbf4f419e99b41571427e8f726dd91486f74b9ef6b6df6685da5f7ca3d6c1fa0

My first 50 entries.   Thanks!
1782  Other / Off-topic / Re: Floyd Mayweather vs. Conor McGregor Predictions ,if that ever happens! :) on: May 12, 2016, 06:35:44 AM
I say Conor wins 9 times out of 10 assuming we are talking about an MMA fight.   If we are talking boxing only, mayweather wins 100% of the time. 
1783  Economy / Collectibles / Re: Lucky coin Idea on: April 29, 2016, 05:01:13 PM
Mine is out for delivery today.  Any winners yet?   I have my fingers crossed.  Good luck. 
1784  Economy / Digital goods / Re: [WTS] Bitcoin Slot Machine Script - Now Provably Fair!!! on: April 29, 2016, 12:49:54 AM
I am super happy to announce that I have implemented a provably fair system in the script as many people have asked about that.

It currently functions like this:

Use an hmac hash function using the server seed and Clientseed-BetID

Take the first 5 characters and convert from hex to decimal.

Apply a modulus of 10,000

Divide by 10,000 to get a random number between 0 and 1,

The result will be matched up to the paytable in the database.

Server hashes will be displayed and seeds will be revealed at 00:00 UTC.  Click on any bet you have made to display the provably fair data, or pass a get parameter to the bet API.

http://satoshibitco.in/

http://satoshibitco.in/slots/checkBet.php?bet=1232
1785  Economy / Scam Accusations / Re: Mining sweden is a scam on: April 27, 2016, 03:33:39 PM
I have been investin in Mining Sweden since last february and they have changed their profit 70% less. I will not reach the ROI. They have expensive investment renting GH. I think they have sold their vip shares and now only they have benefits. I doubt I earn which I invested with them.
A very bad experience.


I disagree.  They are one of the few legit sites there.  I have had many other dealings with Tommy and can tell you with 100% certainty that the actually have the hash power they claim as opposed to many other sites.   They cannot control the rise in Bitcoin difficulty. 
1786  Economy / Digital goods / Re: [WTS] Bitcoin Slot Machine Script on: April 18, 2016, 05:10:53 PM
I am in the process of adding a provably fair system to the slots script.  If anyone is interested it will be complete in 1-2 weeks. 
1787  Economy / Auctions / Re: [Auction] Twitter account 2800 followers (.008 starting bid) on: March 22, 2016, 12:04:52 PM
I bid .02
1788  Economy / Auctions / Re: [Auction] Twitter account 2800 followers (.008 starting bid) on: March 22, 2016, 05:54:33 AM
I bid .008
1789  Economy / Digital goods / Re: [WTS] Bitcoin Slot Machine Script on: March 20, 2016, 06:54:22 AM

You didn't find anything.   Because there aren't too many people that have this script.    So anyone that buys from a satoshi box link is just asking to get ripped off.    I think I'm going to be mentioning this to the manager of your sig campaign.

what? I bought it for 0.09BTC now!
how install it?


You seem to be confused, if you bought it for .09, it wasn't from me.   And I most certainly am not going to help you install it.

And FYI, my script is about 7mb zipped.  So you probably got ripped off.

why don't you help to me? we can be joint campaign

Because I am selling it.  Feel free to buy it.
1790  Economy / Digital goods / Re: [WTS] Bitcoin Slot Machine Script on: March 17, 2016, 05:07:23 PM

You didn't find anything.   Because there aren't too many people that have this script.    So anyone that buys from a satoshi box link is just asking to get ripped off.    I think I'm going to be mentioning this to the manager of your sig campaign.

what? I bought it for 0.09BTC now!
how install it?


You seem to be confused, if you bought it for .09, it wasn't from me.   And I most certainly am not going to help you install it.

And FYI, my script is about 7mb zipped.  So you probably got ripped off.
1791  Bitcoin / Bitcoin Technical Support / Re: Bitcoin Daemon / Bitcoin-QT -Is it possible to show what block a tx confirmed in on: March 17, 2016, 04:48:44 PM
I guess I would have to do something like $currentblock - $numConfirmations to be sure it was confirmed in time.  

That depends on what information you want.

For example, if you want the block height of the block where the transaction was first confirmed, you could use a combination of getrawtransaction and getblock.

Here's an example using transaction ID 584955e07e3b87bb23446e704c73ce2332ce21adca1798ca1b8590d414a87bd7:

Command:
Code:
getrawtransaction 584955e07e3b87bb23446e704c73ce2332ce21adca1798ca1b8590d414a87bd7 1
Result:
Quote
{
- snip -
"blockhash" : "000000000000000000c38b7591b174ca4915ced5ff5dc8d9b1883df56899139d",
"confirmations" : 11,
- snip -
}

Command:
Code:
getblock 000000000000000000c38b7591b174ca4915ced5ff5dc8d9b1883df56899139d
Result:
Quote
{
- snip -
"confirmations" : 11,
"size" : 737575,
"height" : 401460,
- snip -

As you can see, the transaction was first confirmed in the block at height 401460 in the block with hash 000000000000000000c38b7591b174ca4915ced5ff5dc8d9b1883df56899139d

Therefore, if 401460 is less than your target block height, the transaction had at least one confirmation at the time of the target block.

How do you plan on handling re-orgs (where transactions that were confirmed with only 1 or 2 confirmations may become unconfirmed)?

Does it matter how many confirmations the transaction has, or do you just need ot know that it has at least 1?

Thanks Danny!   This actually seems like the perfect solution.

As far as reorgs, I won't pay out until 4-6 confirmations, however I just need to know that the transaction was confirmed in or before the target block.   It does not need to get calculated at the time of the target block.   It can happen just before payout.   Any opinion as to what a safe time to do that is?   I was thinking 6, but would 4 confirmations be enough to calculate the results?

Having the correct block height and hash for the target is crucial as each team will have a chance of winning proportional to the amount each team has wagered and since it is provably fair, I will be using a blockhash + server secret method.


EDIT: Looks like I need to build a tx index with this method.   Will report back.   Thanks again Danny.
1792  Bitcoin / Bitcoin Technical Support / Re: Bitcoin Daemon / Bitcoin-QT -Is it possible to show what block a tx confirmed in on: March 17, 2016, 03:53:26 PM
You can use  gettransaction or getrawtransaction to get the details of a transaction and see how many confirmations it has.


I guess I would have to do something like $currentblock - $numConfirmations to be sure it was confirmed in time. 
1793  Bitcoin / Bitcoin Technical Support / Bitcoin Daemon / Bitcoin-QT -Is it possible to show what block a tx confirmed in on: March 17, 2016, 03:44:31 PM
So, I am in development of a Lotto type game.   It is round based, and the rounds end on a certain block number.

I only want to count transactions that have 1 confirmation by the time the target block hits.    However I am not sure how to accomplish this given the current list of Bitcoin RPC commands as shown here: https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_calls_list

It is team based as well, so each team will have a new address for each round.

I know it is possible to do using the blockchain API but I would really like to figure out a way to do it with the daemon so I can expand to other coins in the future.

Any suggestions?
1794  Economy / Digital goods / Re: [WTS] Bitcoin Slot Machine Script on: March 17, 2016, 05:10:57 AM

You didn't find anything.   Because there aren't too many people that have this script.    So anyone that buys from a satoshi box link is just asking to get ripped off.    I think I'm going to be mentioning this to the manager of your sig campaign.
1795  Economy / Digital goods / Re: [WTS] Bitcoin Slot Machine Script on: March 17, 2016, 03:48:42 AM
bump
1796  Economy / Collectibles / Re: Lucky coin Idea on: March 13, 2016, 04:03:27 AM
Congrats to Operatr for winning Round 4.
I have marked you at position 4 for Round 5.
We still have 1 spot left!!! Tell your friends Cheesy

http://imgur.com/iZ4LVQ4


I'll take the last slot please.   Thanks!
1797  Economy / Digital goods / Re: casino script + new way to pay on: March 12, 2016, 07:10:06 AM
we accept valorbit now


Are you still here actually trying to sell the script that you refuse to prove you even own?  You figured you would give up by now. 
1798  Economy / Web Wallets / Re: Blockchain.info Receive payments API V2, xpub keys, and gap limit woes. on: March 08, 2016, 11:51:46 PM
https://docs.google.com/document/d/1-2l6xOqcbjs9QWEqSh72RD1d8EEdvG_hQuEXw_f_o6w/edit

^^I received this from a zendesk representative when I was attempting to retrieve my xpriv key of my HD blockchain.info wallet. 


Do you know of any programs that allow adjusting of the gap limit so that I can continue using this method?   Id like to not have to recode the payments receiving function in the script.   The v1 API was fine.   I didn't even mind paying the Tx fee. 
1799  Economy / Web Wallets / Blockchain.info Receive payments API V2, xpub keys, and gap limit woes. on: March 08, 2016, 03:44:51 PM
So, I am wondering if anyone has faced this issue before or if anyone can think of a solution or alternative as I am slightly stumped.

I am using the blockchain.info receive payments API V2 for a script of mine.   It uses a BIP32 xpub key to generate receiving addresses.   However, it seems like blockchain.info uses the standard gap limit of 20.   There are a lot of addresses generated for the site that uses the xpub key, so having 20 addresses in a row where there is no payments, is not all that uncommon.   Once that magic number of 20 passes, addresses are still generated but they are no longer monitored for payments. 

Currently, I work my way back and send a small amount of BTC to an earlier address to get it to "see" payments to later generated addresses.

Other than programatically sending dust when there have been x number of receiving addresses without payments, is there any other way to make this more manageable?
1800  Economy / Digital goods / Re: [WTS] Bitcoin Slot Machine Script on: March 08, 2016, 03:47:55 AM
This looks pretty nice, did you code it yourself or?

At this point, 3 people have contributed a good amount of code to the script.  The slots engine is this: http://slotmachinescript.com/

But the accounts, bitcoin integration and other features were my team.

I have been coding the patches and updates personally.  I just updated the deposit system to the receive payments API V2 as the V1 API was deprecated.  I also released a fix this week for the email based password resets.

Design is simple and clean. But I am afraid that either you lower your price a little or develop some additional features.
I am not talking about 2FA here because this is not that important feature imo, but rather about implementation of Provably Fair system.


As I do have provably fair on the agenda, it is still a while away from being released.  There are currently 2 slot machine scripts that I know of, neither are provably fair, and this one is 1/3rd of the cost of the other.  But, it is in the works.
Pages: « 1 ... 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 [90] 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 ... 147 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!