Litecoin is a peer-to-peer cryptocurrency and open source software project released under the MIT/X11 license. Creation and transfer of coins is based on an open source cryptographic protocol and is not managed by any central authority. The coin was inspired by, and in technical details is nearly identical to, Bitcoin (BTC).
Questions tagged [litecoin]
28 questions
0
votes
1 answer
Deriving BIP32/BIP44 addresses for LTC to match Jaxx
I'm using https://github.com/bitcoinjs/bitcoinjs-lib to derive LTC wallet addresses from a private key so I can track transactions of the Jaxx LTC wallet.
The first few addresses generated match what Jaxx has (first 9 to be precise), but other…

Muxa
- 5,563
- 6
- 46
- 56
0
votes
1 answer
ReadBlockFromDisk: Errors in block header at CBlockDiskPos
So at litecoin newest source, after I set all values as mine, first run ./xxxcoind , nothing happen, it seems stop, so I opened debug.log file, it says
2018-02-21 11:44:37 ERROR: AcceptBlock: high-hash, proof of work
failed (code 16)
2018-02-21…

creator
- 671
- 11
- 28
0
votes
0 answers
About cryptocurrency on memory pool, Web wallet and Confirmations (LItecoin)
Note : If you don't known the bitcoin/Litecoin Source program, Then This Question is not for you. Please try not to Downgrade
I have created a alternative coin by using the fork of litecoin, and succeeded, But stil there exist some doubts about…

Anu
- 556
- 6
- 20
0
votes
0 answers
Debian Litecoin Node Installation Issue
I have been trying to use this tutorial to install and run a full litecoin node on Debian that I can connect to a Laravel script and generate addresses with to no avail. How can I go about doing this?
Thanks

marylu34
- 1
- 2
0
votes
1 answer
Membership of a public address in a deterministic HD wallet
Given a public address and an xpub master public key from a deterministic wallet, is it possible to verify whether that address is (or isn't) a member of the wallet?
For example, if my address is 1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2 and my xpub is…

elliot
- 772
- 1
- 5
- 14
0
votes
0 answers
How do I Authenticate and get Litecoin & Bitcoin Id in iOS Swift
My project has litecoin and bitcoin payment. I have to verify whether the payment is made by a specific user. How could I authenticate and get the user token address for validation with the recent transactions? in iOS.
All suggestions are welcomed.

jeff ayan
- 819
- 1
- 13
- 16
0
votes
1 answer
Creating new address isn't working correctly
I am following the documentation posted on the Coinbase API Documentation page and had everything work the past few days. But I noticed that in the last 24-48 hours that creating New Addresses is no longer working.
I was using the node.js package…

Jaku
- 1
- 2
-1
votes
1 answer
error: no matching function for call to 'EVP_EncryptInit_ex'
I tried to compile litecoind for litecoin, but an error occurred.
The source code was taken from the latest version of litecoin.
Here is part of the code:
bool CCrypter::Decrypt(const std::vector& vchCiphertext, CKeyingMaterial&…

Mikhail Gryaznov
- 3
- 3
-1
votes
2 answers
Where to find all the Version bytes to generate Bitcoin forked altcoin addresses?
I have the code below and I see that Litecoin using version byte 48 to generate its address. Is there a version byte list of all Bitcoin forked altcoins? I'm looking to generate Dogecoin addresses and Dash. But wasn't sure what version byte they…

Patoshi パトシ
- 21,707
- 5
- 29
- 47
-1
votes
1 answer
Bitcoin SegWit Wallet Address Calculation
Sorry if this is a bit misleading, but I was actually doing this with Litecoin as opposed to Bitcoin, but the algorithm is exactly the same and I'm pretty sure that the answer will be too. In fact, am almost certain when I look, there's going to be…

The Welder
- 916
- 6
- 24
-1
votes
1 answer
How to broadcast transaction using litecoire-lib?
How to broadcast transactions using litecore-lib for nodejs? Is there any public endpoint to push the tx once signed? Public endpoint for testnet?

Federico Caccia
- 1,817
- 1
- 13
- 33
-1
votes
1 answer
How to mine 1st blocks after genesis (PIVX fork)?
I have generated the genesis block and related hashes, daemon runs fine.
I'm trying to mine the 1st block (block 1) using 'setgenerate true 1'
I've changed related params in chainparams.cpp, any time I run the command I get segmentation…

Scott
- 21
- 2
- 8
-2
votes
2 answers
Sending Litecoins to addresses in bulk
I'd like to generate ~10,000 Litecoin addresses and send 0.0001 LTC to each one (for a giveaway), what would be the best way to go about automating it so I don't have to do it by hand? I know how to generate them, but what would be the best way to…