Bitcoin Forum
May 19, 2024, 01:45:17 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Check transactions at telegram  (Read 111 times)
BitPuzzle (OP)
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
January 24, 2024, 11:43:10 AM
 #1

Morning guys, im just making a bot at telegram that will sell things with payment only in crypto. Im making it on Javascrit, gonna run in nodejs. Do you guys know any tools that can help me with a faster validation of the transactions?
OmegaStarScream
Staff
Legendary
*
Offline Offline

Activity: 3486
Merit: 6142



View Profile
January 24, 2024, 01:38:41 PM
 #2

Could you give more details on what is it you're trying to build though?

If you're planning to build something so that the user could past a TXID and in exchange, he would receive the amount, addresses involved, fees, etc. of that transactions, then the easiest way to achieve that would be to simply use the API of a blockexplorer like Blockchain.com, Blockchair, etc. There are a few options for you out there.

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
PX-Z
Hero Member
*****
Online Online

Activity: 1456
Merit: 851


Top Crypto Casino


View Profile WWW
January 24, 2024, 02:02:13 PM
 #3

Do you guys know any tools that can help me with a faster validation of the transactions?
On what coin are you using, if bitcoin you can you it using Mempool.space api like this one below,
Code:
https://mempool.space/api/address/btc_address/txs
Get the latest transaction of the address, make sure you only give unique address to each user, you can check the status of the tx (true or false).

But if you're talking about using other crpyto, i guess you need crypto payment gateways api instead which usually are paid.

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
BitPuzzle (OP)
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
January 24, 2024, 02:35:24 PM
Last edit: May 01, 2024, 08:32:21 PM by Mr. Big
 #4

Could you give more details on what is it you're trying to build though?

If you're planning to build something so that the user could past a TXID and in exchange, he would receive the amount, addresses involved, fees, etc. of that transactions, then the easiest way to achieve that would be to simply use the API of a blockexplorer like Blockchain.com, Blockchair, etc. There are a few options for you out there.

Sorry, i cant. But im looking for a API to help me generate and validate adresses and transactions. Im a programmer but not familiar to blockchain, so im not secure on what tool to use.



Do you guys know any tools that can help me with a faster validation of the transactions?
On what coin are you using, if bitcoin you can you it using Mempool.space api like this one below,
Code:
https://mempool.space/api/address/btc_address/txs
Get the latest transaction of the address, make sure you only give unique address to each user, you can check the status of the tx (true or false).

But if you're talking about using other crpyto, i guess you need crypto payment gateways api instead which usually are paid.


im looking at first to receive only in BTC, but in the future others coins would be accepted. Do you think, even with taxes, would be better to use a gateway?
PX-Z
Hero Member
*****
Online Online

Activity: 1456
Merit: 851


Top Crypto Casino


View Profile WWW
January 24, 2024, 03:31:39 PM
 #5

im looking at first to receive only in BTC, but in the future others coins would be accepted. Do you think, even with taxes, would be better to use a gateway?
If using bitcoin, the one i mentioned is only for checking an address if there's a new transaction and if the transaction is confirmed (1 confirmation), generating the address is another thing.

Unfortunately, i never used crypto payments that accepts multiple crypto before, i only used bitcoin with blockonomics and one with a local exchange in my area. So i can't tell bout taxes, the one with local exchange, only requires me my business docs and fixed fee per tx.

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
BitPuzzle (OP)
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
January 24, 2024, 04:39:02 PM
 #6

im looking at first to receive only in BTC, but in the future others coins would be accepted. Do you think, even with taxes, would be better to use a gateway?
If using bitcoin, the one i mentioned is only for checking an address if there's a new transaction and if the transaction is confirmed (1 confirmation), generating the address is another thing.

Unfortunately, i never used crypto payments that accepts multiple crypto before, i only used bitcoin with blockonomics and one with a local exchange in my area. So i can't tell bout taxes, the one with local exchange, only requires me my business docs and fixed fee per tx.

So, some gateways doesnt charge you to integrate, but they taxes every transaction. So, if i want to accept multiple coins, i would have to let go with some of the profit.
Thank you for the interaction, im gonna do a better research and move on with the project. I will update it soon!
OmegaStarScream
Staff
Legendary
*
Offline Offline

Activity: 3486
Merit: 6142



View Profile
January 24, 2024, 06:14:24 PM
 #7

So, some gateways doesnt charge you to integrate, but they taxes every transaction. So, if i want to accept multiple coins, i would have to let go with some of the profit.
Thank you for the interaction, im gonna do a better research and move on with the project. I will update it soon!

In that case, my suggestion above won't be of too much help. You can start from this list: https://bitcointalk.org/index.php?topic=5444578.0

The only way to go would be to choose something that offers a good API, otherwise it's not going to serve your purpose.

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
BitPuzzle (OP)
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
January 24, 2024, 07:30:38 PM
 #8

So, some gateways doesnt charge you to integrate, but they taxes every transaction. So, if i want to accept multiple coins, i would have to let go with some of the profit.
Thank you for the interaction, im gonna do a better research and move on with the project. I will update it soon!

In that case, my suggestion above won't be of too much help. You can start from this list: https://bitcointalk.org/index.php?topic=5444578.0

The only way to go would be to choose something that offers a good API, otherwise it's not going to serve your purpose.

Thats perfect for me. If i had merits i would give them all for you. Helped a lot. Thank you!!!!
Pmalek
Legendary
*
Offline Offline

Activity: 2772
Merit: 7148



View Profile
January 30, 2024, 04:56:53 PM
 #9

Hi BitPuzzle,

I think the title of your thread might be a bit confusing and misleading. You are talking about checking transactions on Telegram. That made me think of a blockchain explorer that would work in Telegram. But then in the discussion, you explain how you want a tool to create new addresses, validate transactions, and make BTC payments. Perhaps you should make some changes to the subject, so readers know what it is that you want.

I don't use Telegram, but read some news recently that there is now a bot that allows you to buy Bitcoin, Ethereum, and some other coins. Try to look it up. Maybe it will give you some new ideas.

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
Yamane_Keto
Sr. Member
****
Offline Offline

Activity: 476
Merit: 487



View Profile WWW
January 30, 2024, 05:48:40 PM
 #10

Thats perfect for me. If i had merits i would give them all for you. Helped a lot. Thank you!!!!
If you are still searching, this solution is simple and provides almost what you are looking for https://github.com/HeroMiningLabs/BTCPay_Greed



You can integrate it with your store bot. When client wants to make payments, the BTCpayServer URL is set up then clicks on it to show him the deposit address. After completion, he is redirected again to the bot.


.BEST.CHANGE..███████████████
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
███████████████
..BUY/ SELL CRYPTO..
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!