Bitcoin Forum

Bitcoin => Project Development => Topic started by: IdiotCoder on January 16, 2017, 08:56:51 PM



Title: Laravel and On-site Bitcoin payment library
Post by: IdiotCoder on January 16, 2017, 08:56:51 PM
i am looking for a Bitcoin payment system library that can handle Bitcoin payments on-site and not relying on a third-partry payment processors. Any Laravel-compatable packages that can accept payments directly to the site's wallet would be good. The more documented the better. i have done some research on Laravel API's and I can't find a system that uses an on-site processor. Any help is greatly appreciated!


Title: Re: Laravel and On-site Bitcoin payment library
Post by: BuySomeBitcoins on January 16, 2017, 09:04:42 PM
I have a better solution for you, actually it is a solution I will use myself on my current code.


Use Armory :

.Create a Secure Offline Wallet
.Generate bitcoin addresses and export them, you can generate on demand.
.Use this list of generated addresses, either link them to orders or accounts.


If you ever need to spend the coins, you can use a Watch-Only btc version of that offline wallet to make offline transactions, and broadcast them, and sign them with the Offline Armory version.

you do not need to use any library or 3rd party API.


Title: Re: Laravel and On-site Bitcoin payment library
Post by: IdiotCoder on January 16, 2017, 09:46:08 PM
I have a better solution for you, actually it is a solution I will use myself on my current code.


Use Armory :

.Create a Secure Offline Wallet
.Generate bitcoin addresses and export them, you can generate on demand.
.Use this list of generated addresses, either link them to orders or accounts.


If you ever need to spend the coins, you can use a Watch-Only btc version of that offline wallet to make offline transactions, and broadcast them, and sign them with the Offline Armory version.

you do not need to use any library or 3rd party API.

The only problem with that is my partner wants unique addresses for each user of my site (eg. a unique address per user). i'm not quite sure how to achieve that.


Title: Re: Laravel and On-site Bitcoin payment library
Post by: BuySomeBitcoins on January 16, 2017, 10:04:06 PM
And my suggestion will solve your problem.

Every user will have a unique address, and the wallet that will receive all the incoming transactions will be offline and secure.

You can also use Bitgo.com - they have a NODE SDK, not sure about PHP.


Title: Re: Laravel and On-site Bitcoin payment library
Post by: IdiotCoder on January 16, 2017, 10:10:06 PM
And my suggestion will solve your problem.

Every user will have a unique address, and the wallet that will receive all the incoming transactions will be offline and secure.

You can also use Bitgo.com - they have a NODE SDK, not sure about PHP.


Ah, my apologies, i didn't read the part about generating different addresses. Thanks. I will also look into Bitgo.