Author

Topic: Processor for bitcoins (Read 609 times)

sr. member
Activity: 616
Merit: 263
September 29, 2017, 02:30:55 PM
#13
Quote
Sure.What else can you lie about ? Oh wait you will do it for cheap like 3k per hour right ? Idiot.

It's you idiot. I can do all this job for 300$ and have previous jobs like this done.
sr. member
Activity: 555
Merit: 251
September 29, 2017, 01:20:56 PM
#12
I am launching a poker room very soon and was wondering if someone could assist me with which service to use for processing deposits/withdrawals with bitcoins.
Send me a message I'll help you plan out the entire architecture for free.
If you are going to process a large number of transactions on a daily basis,you shouldn't be relying on third party resources.Write your own API's.

I am aware that many wallets, like blockchain.info have APIs, but if any of you have experience with online gaming, especially poker and could assist me with best possible processor for such transactions, and what are the benefits in using the aforementioned company.
Don't use any,write your own.Those 'companies' have limitations which you don' want.Moreover,you cannot rely on those API's as the data grows.


I can develop for you site your own independent from 3rd parties processor and WITHOUT bitcoind needed or similar. Just pure php.  Smiley
Sure.What else can you lie about ? Oh wait you will do it for cheap like 3k per hour right ? Idiot.

I too need a payment processor for eth and burst. Can you help me out?
legendary
Activity: 1750
Merit: 1115
Providing AI/ChatGpt Services - PM!
September 28, 2017, 03:35:53 PM
#11
I am launching a poker room very soon and was wondering if someone could assist me with which service to use for processing deposits/withdrawals with bitcoins.
Send me a message I'll help you plan out the entire architecture for free.
If you are going to process a large number of transactions on a daily basis,you shouldn't be relying on third party resources.Write your own API's.

I am aware that many wallets, like blockchain.info have APIs, but if any of you have experience with online gaming, especially poker and could assist me with best possible processor for such transactions, and what are the benefits in using the aforementioned company.
Don't use any,write your own.Those 'companies' have limitations which you don' want.Moreover,you cannot rely on those API's as the data grows.


I can develop for you site your own independent from 3rd parties processor and WITHOUT bitcoind needed or similar. Just pure php.  Smiley
Sure.What else can you lie about ? Oh wait you will do it for cheap like 3k per hour right ? Idiot.
copper member
Activity: 2856
Merit: 3071
https://bit.ly/387FXHi lightning theory
September 28, 2017, 01:09:52 PM
#10
It will never work because of trust and lack of security. You have nowhere near the amount of funds to back the system up and that is why you want a third party to handle the TX's. If there is a bad run for you, then you will never be able to pay the winners and that is why there is no one that is going to touch a third party amateur poker room.

Exactly OP, do everything in-house.

I don't think anyone'll care if you have to send out the payments on say a daily or even weekly basis if your site is good enough also. Don't rely on a third party, as, if it goes down or gets hacked then it'll be impossible to pay back the people your money was stored from.
legendary
Activity: 1190
Merit: 1024
September 28, 2017, 11:26:39 AM
#9
It will never work because of trust and lack of security. You have nowhere near the amount of funds to back the system up and that is why you want a third party to handle the TX's. If there is a bad run for you, then you will never be able to pay the winners and that is why there is no one that is going to touch a third party amateur poker room.
sr. member
Activity: 616
Merit: 263
September 25, 2017, 05:30:51 AM
#8
I can develop for you site your own independent from 3rd parties processor and WITHOUT bitcoind needed or similar. Just pure php.  Smiley
copper member
Activity: 2856
Merit: 3071
https://bit.ly/387FXHi lightning theory
September 24, 2017, 01:34:41 PM
#7
~


Thank you so much for your help.

No I'm not a developer myself, I have  devs working on this project. I just wanted to know what my options were.

Thank again.


If you want a different insight into this without using an API as it may be less secure to ue a web wallet. You can do everything from an installation of bitcoin core and use that to recieve and sign transactions and get that to update to the service you need. It's worth noting that unless you prune the wallet, it'll download a 160GB blockchain.

Blockchain.info also has a 10 second delay that you have to abide by otherwise you'll get your server blocked for a while (or you can apply for a token to get a faster update time - but they might ask you to pay for that if you're running a company from it).
legendary
Activity: 1512
Merit: 1218
Change is in your hands
September 24, 2017, 12:43:21 PM
#6
Well you can choose any of the payment Processors, it doesn't matter which one you choose, almost all of them have the basic "Receive" and "Send" Capability. Just make sure you don't give access to your "access-Token" to the client and you shouldn't face any problems. Personally i have used blocktrail for my projects but i don't see why blockchain.info won't work for you. Good Luck.

Thank you.

Is there anyway on blockchain or any other processor to automatically process a withdrawal upon user request.
For example, if the minimum withdrawal is lets say 10 mbtc, can I set that as a minimum and have automatic withdrawals or are all withdrawals manually done?

Well looks like you aren't a programmer yourself (I am Not being Rude), usually you would check user balance before you call out the "send api", A simple "if" statement will do the job for you, as for these api's having a minimum withdrawal, i don't think so. You can make a script which will do this for you. You have to check the user balance from the database and when ever the user requests a "withdrawal" just check if his balance is > minimumWithdrawAmount.

A Sample Code will look like this.

$balance;
$minimumWithdrawAmount;

if($balance > $minimumWithdrawAmount) {
    //Call the Send API Below.
}


Thank you so much for your help.

No I'm not a developer myself, I have  devs working on this project. I just wanted to know what my options were.

Thank again.



Gotcha! You are welcome dude. Just letting you know, Any dev who has worked with any sort of api's before, this task should be a walk in the park for them, the things are so simplified that all it takes is twenty lines of code at max to set up a function, which will "Check" then "Deduct" and finally Send the Payment to user who requested the withdrawal. Anyway Good Luck with this project. Smiley
full member
Activity: 140
Merit: 100
September 24, 2017, 12:35:33 PM
#5
Well you can choose any of the payment Processors, it doesn't matter which one you choose, almost all of them have the basic "Receive" and "Send" Capability. Just make sure you don't give access to your "access-Token" to the client and you shouldn't face any problems. Personally i have used blocktrail for my projects but i don't see why blockchain.info won't work for you. Good Luck.

Thank you.

Is there anyway on blockchain or any other processor to automatically process a withdrawal upon user request.
For example, if the minimum withdrawal is lets say 10 mbtc, can I set that as a minimum and have automatic withdrawals or are all withdrawals manually done?

Well looks like you aren't a programmer yourself (I am Not being Rude), usually you would check user balance before you call out the "send api", A simple "if" statement will do the job for you, as for these api's having a minimum withdrawal, i don't think so. You can make a script which will do this for you. You have to check the user balance from the database and when ever the user requests a "withdrawal" just check if his balance is > minimumWithdrawAmount.

A Sample Code will look like this.

$balance;
$minimumWithdrawAmount;

if($balance > $minimumWithdrawAmount) {
    //Call the Send API Below.
}


Thank you so much for your help.

No I'm not a developer myself, I have  devs working on this project. I just wanted to know what my options were.

Thank again.
legendary
Activity: 1512
Merit: 1218
Change is in your hands
September 24, 2017, 12:32:47 PM
#4
Well you can choose any of the payment Processors, it doesn't matter which one you choose, almost all of them have the basic "Receive" and "Send" Capability. Just make sure you don't give access to your "access-Token" to the client and you shouldn't face any problems. Personally i have used blocktrail for my projects but i don't see why blockchain.info won't work for you. Good Luck.

Thank you.

Is there anyway on blockchain or any other processor to automatically process a withdrawal upon user request.
For example, if the minimum withdrawal is lets say 10 mbtc, can I set that as a minimum and have automatic withdrawals or are all withdrawals manually done?

Well looks like you aren't a programmer yourself (I am Not being Rude), usually you would check user balance before you call out the "send api", A simple "if" statement will do the job for you, as for these api's having a minimum withdrawal, i don't think so. You can make a script which will do this for you. You have to check the user balance from the database and when ever the user requests a "withdrawal" just check if his balance is > minimumWithdrawAmount.

A Sample Code will look like this.

$balance;
$minimumWithdrawAmount;

if($balance > $minimumWithdrawAmount) {
    //Call the Send API Below.
}
full member
Activity: 140
Merit: 100
September 24, 2017, 12:26:03 PM
#3
Well you can choose any of the payment Processors, it doesn't matter which one you choose, almost all of them have the basic "Receive" and "Send" Capability. Just make sure you don't give access to your "access-Token" to the client and you shouldn't face any problems. Personally i have used blocktrail for my projects but i don't see why blockchain.info won't work for you. Good Luck.

Thank you.

Is there anyway on blockchain or any other processor to automatically process a withdrawal upon user request.
For example, if the minimum withdrawal is lets say 10 mbtc, can I set that as a minimum and have automatic withdrawals or are all withdrawals manually done?
legendary
Activity: 1512
Merit: 1218
Change is in your hands
September 24, 2017, 12:17:22 PM
#2
Well you can choose any of the payment Processors, it doesn't matter which one you choose, almost all of them have the basic "Receive" and "Send" Capability. Just make sure you don't give access to your "access-Token" to the client and you shouldn't face any problems. Personally i have used blocktrail for my projects but i don't see why blockchain.info won't work for you. Good Luck.
full member
Activity: 140
Merit: 100
September 24, 2017, 10:31:40 AM
#1
Hello.

I am launching a poker room very soon and was wondering if someone could assist me with which service to use for processing deposits/withdrawals with bitcoins.

I am aware that many wallets, like blockchain.info have APIs, but if any of you have experience with online gaming, especially poker and could assist me with best possible processor for such transactions, and what are the benefits in using the aforementioned company.

Thank you for the help.

I apologize ahead of time if this post is under the wrong category, I wasn't sure where to post this.


Jump to: