Bitcoin Forum
June 21, 2024, 08:23:14 PM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 [802] 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 »
16021  Bitcoin / Electrum / Re: Linux Electrum Daemon Generating Bitcoin Addresses For Payment on: January 19, 2018, 12:27:00 PM
Thanks Abdussamad

Well about running multiple daemons on one server, I will skip that. Since an instance is so cheap I will run separate bitcoin and litecoin daemons and learn along the way. I will not run any ecommerce stores on servers running daemons and will keep them separate. 1x btc daemon, 1xltc daemon and 1x ecommerce store/database

I am exporting addresses to an ecommerce store database so when an address is dislayed in checkout it is stored and associated specifically for that customers order (a new address for each order). Having an address in the database allows the amounts and confirmations to be stored too so if there any disputes with customers they can be sorted out quickly. Also in some cases it will be important to give an address to a customer upon sign up without the need to create a payment request (or order).

Also having prepopulated addresses helps if there are problems connecting with electrum for any reason at least addresses are available while the issue can be looked at.

If I have it on demand (http://docs.electrum.org/en/latest/merchant.html#) I think I have to have the ecommerce store and electrum on the same server?
16022  Bitcoin / Electrum / Re: Linux Electrum Daemon Generating Bitcoin Addresses For Payment on: January 19, 2018, 03:45:16 AM
I got the export of addresses to the database tables figured out. Just need to make a transaction to see if the confirmations get populated too.

Does anyone know if Electrum Litecoin uses the same file and folder structure as Electrum (bitcoin). I want to use the same files for addresses and confirmations export to database if possible. Can I do that without tinkering the code?

Ideally I will run 2 servers, one with electrum and another with electrum litecoin both exporting addresses to the same remote database (wallet_litecoin and wallet_bitcoin) but can electrum litecoin and electrum daemons run on the same server?
16023  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN] [EXCHANGE] Bitmora - Digital Asset Exchange in Development on: January 18, 2018, 05:32:17 PM
Cryptocurrency Software development is the latest trading option for the traders. Today max trader is going to their own open source bitcoin trading platform because of bitcoin is the very very famous coin in today era and growing very fast toward the high price. Many of people want to develop their own trading software and BR softech giving the solution of Bitcoin trading software.

https://www.brsoftech.com/crypto-exchange-software-development.html

What is this? Why have "ask for a quote" for an exchange? And who on earth is there no demo? Looks like a very unprofessional site and outfit.
16024  Bitcoin / Electrum / Re: Linux Electrum Daemon Generating Bitcoin Addresses For Payment on: January 14, 2018, 02:35:19 PM
Apologies. Yes writing "wallets" instead of "addresses" was an oversight on my part.
16025  Bitcoin / Electrum / Re: Linux Electrum Daemon Generating Bitcoin Addresses For Payment on: January 14, 2018, 11:16:43 AM
I am seeing 20 addresses in my desktop wallet. I am seeing the same 20 addresses plus 6 extra addresses in my putty console for my ubuntu daemon after using the MPK.

If I generate extra wallets on my desktop, say for example make it 30 instead of 20 by using wallet.change_gap_limit(30). The putty command console command still shows the same 20 + 6 addresses no matter what I do (reboot, stop/start daemon, delete wallet and use MPK again etc).

Is this supposed to happen?

16026  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: ShapeShift.io - Instant Coin Exchange - No Account Needed on: January 13, 2018, 06:25:44 PM
friendly interface & it's very easy to use, but i think service support is not good. Hope improve it.

Agree. Their rates are much higher than Changelly.com
16027  Bitcoin / Electrum / Re: Linux Electrum Daemon Generating Bitcoin Addresses For Payment on: January 13, 2018, 06:18:08 PM
Abdussamad thank you so much for your help. I installed the Electrum daemon on an Ubuntu EC2 instance and restored the wallet using the MPK. The 'electrum' commands are so eay to use. Everything went smooth and everything is going well except one problem.

I generated 40 wallets on my desktop electrum wallet using: wallet.change_gap_limit(50)

On my instance when I use 'electrum listaddresses' in the command line it lists the first 20 addresses correctly in order and then ignores addresses 21-40. Instead it then shows a further 5 addresses, none of which are on my desktop wallet. Any idea why this happens? I stopped/restarted the daemon and alsorestored the wallet again but it shows the same thing.

On my desktop even when I reduce the wallet addresses back to the default 20, the instance daemon command line shows 20 identical to desktop wallet addresses and then those extra unknown 5 addresses.

Please advise if I am doing something wrong or if this is the way it is supposed to work.
16028  Bitcoin / Electrum / Re: Linux Electrum Daemon Generating Bitcoin Addresses For Payment on: January 13, 2018, 11:40:48 AM
Great information, thank you so much.

It seems the function of what I want to achieve are all available. The advantage here with electrum seems to be that instead of running a aws instance server with a massive HD for the bitcoin blockchain I can in theory run this on a nano instance for less than $5 a month. I will try and check it out this weekend.

As I never used electrum much was in the dark. Thank you for the help Abdussamad Smiley
16029  Economy / Currency exchange / Re: WLTB: LYNX coin (forked from Kittehcoin) on: January 12, 2018, 07:26:32 PM
I am listening to all offers. I know what rate they stopped trading and I know Cryptopia has not added it yet.
16030  Bitcoin / Electrum / Re: Linux Electrum Daemon Generating Bitcoin Addresses For Payment on: January 12, 2018, 12:24:41 PM
If you only need to receive and not spend on the server create a watch only wallet on your server and then use the addrequest command with the --force switch to get new addresses. You can give it any dummy amount. See `electrum help addrequest` on the command line for more info. This command can also be used over a JSON RPC interface.

Alternatively you can use pybitcoin tools or some other implementation of bip32 in python to generate addresses from your wallet's master public key aka xpub.

I will look in to this, thank you for the reply. In the end if it can be done then whichever is easier will be used but I will find it a struggle as I have never used electrum before.

As long as a new unique address is generated at the checkout whenever a customer wants to pay then it works. The balance will be sent to a desktop wallet after reaching a pre-configured amount. That is what I am doing using my python script for my bitcoind. I hope to replicate it with electrum.
16031  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN] [EXCHANGE] Bitmora - Digital Asset Exchange in Development on: January 12, 2018, 12:17:35 PM
I wanted to see and know the rating of your ICO. I can't found your ICO on ICOVoting.com. Users wanted to know a full and reliable rating about you.


They are fundraising like crowdfunding using cryptos. They are not having an ICO.

Bitmora is based in the US, operated by US citizens so if they operate an ICO or accept FIAT then they will have to conform to various rules and regulations that could mean financial penalties and even jail for those that fall foul of it. I doubt the S.E.C will give a small start-up accredited status so they only option they have is crowdfund using using cryptos.
16032  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: ShapeShift.io - Instant Coin Exchange - No Account Needed on: January 11, 2018, 09:57:12 PM
Dear shapeshift team, I tried to use your service and 3 my transaction has been lost, I opened 3 ticket and got refund on 2 transactions. My third ticket was ignored and I havent recieve refund for this transaction!

https://blockchain.info/tx/38a213536273bda34be88ec54ecc500704a85bd091cca6bb812e674a007512bd
https://blockchain.info/tx/0ba3aa81cf15830613c5db19d65946b94a67f2f7a90538303bc48973d19a3553
https://blockchain.info/tx/c4a96cf29342e671a97f646600fa4c09d4983f2b9ce42e11507f1ae555c2aa9c

My requests - № 114578, 114580, 114584
3 amount x 0.35 btc . I paid ( 1 eth - 0.025 btc) and lost about 25 eth on your wrong, but I wait for refund almost a month!!!!
I WAIT MORE THAN MONTH AND I START THINK THAT I HAS BEEN SCAMED BY YOUR SITE! Please solve the problem as soon as possible!

Sincerely,Alex

Use Changelly.com in future. Their exchange rates are better than ShapeShift and their customers do not complain
16033  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CAGE] CAGECOIN REVIVAL: New difficulty algorithm, network moving again! on: January 11, 2018, 12:04:27 PM
yes it is alive
16034  Bitcoin / Electrum / Re: Linux Electrum Daemon Generating Bitcoin Addresses For Payment on: January 11, 2018, 11:31:36 AM
Please any advice?
16035  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MEOW] KittehCoin - UPDATED 2017 on: January 10, 2018, 08:55:31 PM
SCAM!!

Don't send your wallet.dat to this guy.

What proof have you got this is a scam?
16036  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MEOW] KittehCoin - UPDATED 2017 on: January 10, 2018, 08:54:29 PM
If anyone missed the Lynx swap their Kitteh is dead.

PM me if you want a chance to get your Kitteh back. My idea has probably not been tried before but just may work. In return I want to negotiate a large percentage of your MEOW if successful.

There is no swap, copy and paste old wallet.dat file and when the wallet syncs it will be all there.

Where are you getting this swap information? Lynx and Kittehcoin share the same transaction ledger it was just ported to new Litecoin version!


I am talking about for those with Kitteh stuck on exchanges such as Nova.
16037  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 🚀 [ANN] ColossusCoinXT COLX - Coin Swap - Fair Launch, no ICO/ IPO! 🚀 Released on: January 10, 2018, 07:14:39 PM
What happened to COL v2?

It's still on coinmarketcap

Are the wallets still syncing? Are people still using it if they didn't want the upgrade or missed it?
16038  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MEOW] KittehCoin - UPDATED 2017 on: January 10, 2018, 06:53:39 PM
If anyone missed the Lynx swap their Kitteh is dead.

PM me if you want a chance to get your Kitteh back. My idea has probably not been tried before but just may work. In return I want to negotiate a large percentage of your MEOW if successful.
16039  Bitcoin / Electrum / Linux Electrum Daemon Generating Bitcoin Addresses For Payment on: January 10, 2018, 03:09:11 PM
I am testing an ecommerce store that allows bitcoins as a form of payment. I successfully coded python and added it to a server running bitcoind. Whenever a customer gets to the checkout and chooses to pay using bitcoin a new address along with grand total on a qrcode is generated. The bitcoin daemon is pre-populating the database with 10 addresses. When the number falls below 3 the daemon generates and pre-populates the database to top up to 10 addresses again. Everything works but before exploring it further with a view to taking it live I would like to know about electrum. I heard of it but never used it.

If I run electrum on a server effectively can it do the same thing the bitcoind is doing? If I modify the python scripts can electrum generate bitcoin addresses and populate the database whenever the top is needed? If it can I prefer using electrum over bitcoind because the bitcoin blockchain is massive and takes several days to sync on an AWS instance. Electrum I understand is instant.

Please can someone with electrum experience give some tips. Thank you.
16040  Economy / Economics / Re: Market capital, will XRP ripple be a permanent #2 to Bitcoin? on: January 09, 2018, 11:39:59 PM
xrp increases x10 every year and then decreases, that is it

Good opportunity to make money then Smiley
Pages: « 1 ... 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 [802] 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!