Search content
Sort by

Showing 18 of 18 results by lightningslotmachine
Post
Topic
Board Development & Technical Discussion
Merits 1 from 1 user
Re: Flaws in LN (Lightning Network).
by
lightningslotmachine
on 25/10/2018, 08:27:25 UTC
⭐ Merited by Foxpup (1)

I could say Bitcoin will be back to completely worthless soon enough also.

Difference is Bitcoin Network will Collapse if the price per bitcoin does not exceed production cost of over $3000 per bitcoin.
ZEITCOIN Network is resistant to such economic factors and can continue indefinitely.
Time will show which coin has the Ultimate Design.  Cheesy
 

Zeitcoin volume of all transactions last 24 hours was 75 USD. What a joke.
I'm guessing it's a grand total of one user that use this coin. I guess that is you.

Why do you even post in this forum, it's a discussion about Bitcoin and lightning. Nobody cares about your shitcoin.
Post
Topic
Board Development & Technical Discussion
Merits 2 from 1 user
Re: Flaws in LN (Lightning Network).
by
lightningslotmachine
on 23/10/2018, 07:21:26 UTC
⭐ Merited by DooMAD (2)
Time Locking Required /Excessive time delay before Final transaction confirmed (Payout on the actual blockchain)

Lightning transactions are instant, you can do more transactions per second in one channel than most other blockchain can handle in total.


Overly Complicated to the point , Normal People will always require 3rd parties to monitor and maintain channels  (IE: Centralized Banking Cartels)

The Internet is much more complicated, but see, you are using it! A car engine is complicated, but one can still drive one right?! This is a bad argument, we are able to make user friendly wallets and software that will enable your grandmother to use lightning. In time.

Price for LN offchain transactions (Promissory Notes) will still cost more than using many Altcoin's onchain networks.

Price to get a bitcoin transaction confirmed within 10 minutes cost a few cents yes, but you don't need to have it confirmed quickly when you create channels in the background. Segwit and batching transactions has also shown that bitcoin will overcome bottlenecks.

LN is acting as a Bank by offering notes redeemable in bitcoin or litecoin,
at some point at minimum all LN Hubs will have to register as money transmitters or at worse be required to hold a banking license,  (Major Flaw)  Tongue

This is just some weird conspiracy theories. Not even going to comment on this.

Post
Topic
Board Development & Technical Discussion
Re: How to accept crypto coins on my website
by
lightningslotmachine
on 11/10/2018, 13:46:30 UTC
Just wondering, wouldn't be the cheaper to code a rather simple solution like this:

  • generate a new receiving address for the customer, which he can use to pay (the private key can be hashed and stored)
  • have a background process in the server which checks the amount paid received enough confirmations
  • send payment confirmation to the customer

Or there is some problem with it / not so easy as it seems?

A lot of third party sites keep your private keys and charge you fees. I would recommend that you set up a virtual machine with btcPayServer yourself.
Check it out here:

https://github.com/btcpayserver/btcpayserver

Its open source, it's free, you hold your own private keys (can use a hardware wallet and just set the xpub exported from trezor for example).
It also support the lightning network.

You can deploy it on azure with just one click here:

https://github.com/btcpayserver/btcpayserver-doc/blob/master/AzureDeployment.md

Don't let anyone else handle your payments or private keys!

well, this seems to be something quite a neat solution

It works quite well. I have used it myself on my site: https://www.lightningslotmachine.com/, if you click on one of the "buy spins" buttons you can see how it looks like.

I have only set up bitcoin lightning payments, but you can also accept on-chain payments of course.

Post
Topic
Board Development & Technical Discussion
Merits 1 from 1 user
Re: Running bitcoin node with LN hub on a Raspberry Pi 3
by
lightningslotmachine
on 01/10/2018, 14:00:26 UTC
⭐ Merited by TheBeardedBaby (1)
Great, thank you for the info, how are the temperatures btw? Do I need an extra/bigger radiator to cool it, maybe fan too? When everything is done I'll probably will put it in a box and have it on the desk but I want to order everything together, that's why I'm asking if I'll need some more stuff.

You don't need anything more than the stuff listed there. No extra fan or anything like that. Even a Raspberry Pi case is optional. Don't think it will overheat. I've had it running 24/7 for a couple of weeks now. Been working just fine.
Post
Topic
Board Development & Technical Discussion
Re: [Discussion] Dandelion - A protocol to hide transaction origin
by
lightningslotmachine
on 01/10/2018, 12:41:16 UTC
Post
Topic
Board Development & Technical Discussion
Merits 1 from 1 user
Re: Running bitcoin node with LN hub on a Raspberry Pi 3
by
lightningslotmachine
on 01/10/2018, 12:03:57 UTC
⭐ Merited by ETFbitcoin (1)
I used this tutorial to setup bitcoin + lightning

https://github.com/Stadicus/guides/blob/master/raspibolt/README.md

Very easy to follow.
Post
Topic
Board Development & Technical Discussion
Re: Flaws in LN (Lightning Network).
by
lightningslotmachine
on 26/09/2018, 14:41:26 UTC
It's rediculous to require to be trustfull in trustless environment, isn't it?

It's actually quite clever game theory, you don't need to be honest, but if you try to cheat you will lose money.
So it's in your best interest to be honest.
Post
Topic
Board Development & Technical Discussion
Re: Newbie in "bitcoin core"
by
lightningslotmachine
on 26/09/2018, 13:52:25 UTC
I would also recommend that instead of running a bitcoin node on your desktop computer, you set up a dedicated server to do it.
It can be something as simple and cheap as a raspberry pi

Here is a great tutorial

https://github.com/Stadicus/guides/tree/master/raspibolt

The problem with running bitcoin core (and lightning especially) on your desktop is that it's not online 24/7 and have a bunch of other stuff running at the same time.
There is also a security issue, better to have a securely setup Linux box dedicated for only bitcoin.
Post
Topic
Board Development & Technical Discussion
Re: Newbie in "bitcoin core"
by
lightningslotmachine
on 26/09/2018, 13:45:44 UTC
I recommend that you take it one step further and setup both bitcoin and lightning.

Start by running on the test net so you can play around with sending and receiving with no risk at all.

Here is a nice project in nodejs, it shows how to use all bitcoin and lightning commands via API calls and displaying the result in a nice interactive dashboard:

https://github.com/altangent/lnd-explorer

Here is an example of how it looks like:

https://demo1.lndexplorer.com/
Post
Topic
Board Development & Technical Discussion
Re: How to accept crypto coins on my website
by
lightningslotmachine
on 26/09/2018, 11:44:21 UTC
A lot of third party sites keep your private keys and charge you fees. I would recommend that you set up a virtual machine with btcPayServer yourself.
Check it out here:

https://github.com/btcpayserver/btcpayserver

Its open source, it's free, you hold your own private keys (can use a hardware wallet and just set the xpub exported from trezor for example).
It also support the lightning network.

You can deploy it on azure with just one click here:

https://github.com/btcpayserver/btcpayserver-doc/blob/master/AzureDeployment.md

Don't let anyone else handle your payments or private keys!
Post
Topic
Board Development & Technical Discussion
Re: Flaws in LN (Lightning Network).
by
lightningslotmachine
on 25/09/2018, 11:47:54 UTC
2. Limitation of funds transfer through channels, unfortunately LN will not support big/bulky transactions, you have to rely on your active channels and their capacity.

Yeah, this is an issue now, but it this will likely become less and less of a problem as more channels with higher capacity are added to the network. In my experience lnd works better the smaller the transaction is. For sending extremely small transactions it works great.

I believe there is also plans for splitting transactions and sending several small transactions through different routes at the same time.
Post
Topic
Board Development & Technical Discussion
Re: Flaws in LN (Lightning Network).
by
lightningslotmachine
on 20/09/2018, 12:26:40 UTC
This could lead to a situation where most users will actually prefer an online-wallet that also handles their respective LN-channel(s), just to spare them the hassle of running something themselves.
Of course, that's the overall trend with any online software (e.g. email being used over gmail etc.), but LN kind of encourages that kind of delegation from the user's side to service providers.
On the other hand, users are free to run their own Bitcoin and LN nodes, just the same as with running their own SMTP-sever, so it's effectively more a kind of "concentration" rather than real "centralization".

Yeah, that is some good analogies you make there. Same as with exchanges, most users use coinbase and other online wallet/exchanges to store and use their bitcoin. How many actually download bitcoin core and run a full node? A very small percentage I think. On your phone you can't really run a full node either, has anyone a full bitcoin client with 200 GB of blocks stored on their android phone? no. But do people say bitcoin is centralized because of this? of course not.

Even with most users using a "light wallet", the network itself will be decentralized and yes, maybe we will have a thousand "big" nodes that have much more channels and much higher balance than the average users, but it will still be extremely decentralized.
Post
Topic
Board Development & Technical Discussion
Merits 1 from 1 user
Re: Flaws in LN (Lightning Network).
by
lightningslotmachine
on 20/09/2018, 11:17:48 UTC
⭐ Merited by JayJuanGee (1)
Third, it's possible that the network will end up excessively centralized. If 90% of LN channel-value goes through a small handful of nodes, then that would be a real problem.

I find all this talk about centralization very strange, if you actually run a lightning node you'll quickly end up with 5-50 payment channels. Both incoming and outgoing. I've had a node running for a couple of weeks and already have 25 payment channels, most of them created by others connecting to me. This is extremely decentralized. Look at the network topology and how it's evolving, most nodes has a lot of channels in both directions and it's growing rapidly.
Post
Topic
Board Development & Technical Discussion
Re: Lightning Network Discussion Thread
by
lightningslotmachine
on 17/09/2018, 10:02:59 UTC
If anyone want to test lightning I have made a simple gambling game for anyone interested, https://www.lightningslotmachine.com/

I have already processed over 500 transactions. All instant using lightning. You can both pay and cash out at any time. In my experience lnd works great.
Post
Topic
Board Bitcoin Discussion
Re: Do you think Bitcoin will become the first world currency for buy and sell ?
by
lightningslotmachine
on 16/09/2018, 17:08:24 UTC
Bitcoin will become like digital gold.It is unlikely to be used as a daily payment due to its high transactions.

I disagree with this. For a week now I have had this site running https://www.lightningslotmachine.com/, I have already paid out 200 transactions using lightning and received even more.
All transactions has been instant, many with no fees at all.

Still very new and still in beta, lightning already works quite well as a instant payment system with virtually no fees.
Post
Topic
Board Bitcoin Discussion
Re: Lightning network stats: 115 BTC • 3.4K nodes • 12.3K channels
by
lightningslotmachine
on 14/09/2018, 07:09:27 UTC
Has anyone done the math to see when we will hit a 1 million active channels with the current rate of progress?
Post
Topic
Board Project Development
Re: Just launched a slotmachine game for bitcoin lightning
by
lightningslotmachine
on 13/09/2018, 14:00:11 UTC
I welcome all lightning implementations, especially the ones that allow people to try out the lightning network without huge investments.
This being said: I can't find any information about wether or not your game is provably fair, is it correct to assume it isn't?

I have been looking at provably fair, and would love to implement it, but I have not done that yet.
It's not that easy with slot machines, as with for example a roll of dice or roulette.

The casino edge is 3-5%, but I guess you just have to trust me on that.
Post
Topic
Board Project Development
Just launched a slotmachine game for bitcoin lightning
by
lightningslotmachine
on 13/09/2018, 13:50:27 UTC
Hi everybody

I have just created and launched my first lnd app. It's a simple slot machine gambling game.
You can find it here:

https://www.lightningslotmachine.com/

You can pay using bitcoin lightning. You can instantly cash out your funds using lightning.

Try some spins! If you have any questions or some feedback please let me know Smiley