Author

Topic: How can I implement this on a page? (Read 156 times)

hero member
Activity: 1582
Merit: 759
July 23, 2018, 07:33:12 PM
#4
It really depends, you can build it natively using a library that would interact with a bitcoin wallet. Just be advised, you'd be kind of re-inventing the wheel here though.

What I'd recommend, is to use an existing wallet API, like the BlockChain.com(.info) api: https://www.blockchain.com/en/api

If you have a budget, and are willing to hire a developer, I can help you out with that. But feel free to ask me any quick questions (even over PM).
jr. member
Activity: 152
Merit: 4
Bet you won't click the signature link.
July 22, 2018, 11:46:05 AM
#3
very good day everyone, I'm starting to work on a new project, I do not have much experience in the field but I'm learning, finally I want to implement the system of unique wallets per user as exchange houses or web wallets but I do not have idea of how to do it any video, page, book that can help me?
Thanks in advance


something like that



Check out block.io if you need to assign addresses to your users, or localbitcoins merchant API if you want to accept btc for services/products customers order from you (as users or not).

I don't know of any solution that requires no programming experience at all, but the above solutions are rather easy to implement. Although, not the best-practice solutions.
copper member
Activity: 85
Merit: 122
July 22, 2018, 07:36:51 AM
#2
Do you need addresses on per-user basis (like on exchanges, with withdrawals), or per-order basis (like in online stores)?

For example, for per-user scheme start from here:

1. When a user wants to make a deposit, send an ajax request to the server
2. The server will try to look up the user's bitcoin address. If there's none, it will generate a new one, write it into the database for this user
Note that you need to have access to the generated address somehow, either you save the private key locally, or your own bitcoin node does it for you.
3. Return the address from the server to show to the user on the client side (browser)

That's step one.
newbie
Activity: 2
Merit: 0
July 20, 2018, 05:04:51 PM
#1
very good day everyone, I'm starting to work on a new project, I do not have much experience in the field but I'm learning, finally I want to implement the system of unique wallets per user as exchange houses or web wallets but I do not have idea of how to do it any video, page, book that can help me?
Thanks in advance


something like that

Jump to: