Questions tagged [litecoin]

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).

28 questions
2
votes
1 answer

LItecoin clone blockchain peer connected but blocks not being downloaded

I followed this tutorial for creating a litecoin clone for learning purposes. So everything worked well and even started mining, coins were sent successfully, but the problem was when I added another node to connect to this node. I added addnode in…
Naveen
  • 21
  • 3
2
votes
1 answer

Send raw transaction (have tx_hex) on litecoin testnet using api or module

I have raw data (tx_hex) for raw transaction, but i cant send it to litecoin tesnet using post request to testnet.litecore.api. If i insert tx_hex manually in the browser, the transaction is correctly sent. My code: request({ url:…
1
vote
0 answers

Get litecoin testnet transactions of a single litecoin testnet address programatically

I want to get the associated transactions of litecoin testnet address in the litecoin testnet address using node js. So far haven't found any resources to do so. Can anybody have an idea how to implement this? p.s. I wanted to do it in a way other…
Tahlil
  • 1,031
  • 1
  • 14
  • 26
1
vote
1 answer

Unable to listen to a service running inside a docker container from remote docker container

I have two machines: machine-A and machine-B. Both are on different networks. I create a docker container on machine-A using docker-compose.yml and run litecoind process within it on port 12345. I have forwarded port 12345 to the port 80 of the host…
0
votes
0 answers

Litecoin Core 0.21 will not compile on MacOS Big Sure

As described in the title, I'm trying to compile the Litecoin Core Version 0.21.1 on MacOS, but without success I get an error message that doesn't tell me anything and I can't find a solution on Goolge either. The error message: make[1]: ***…
0
votes
0 answers

litecoin debian 'base-precise-amd64':no such file or directory (ERROR)

Me and my friends are trying to develop an application connected to the blockchain system.We were using aqua coin videos(he develops on litecoin) on youtube for this. But we got an error somewhere and we can't solve it. The error is…
0
votes
1 answer

Not the excpected hash from the scrypt algo

i am using this scrypt from here inside my vb application I tried this code to hash a hex string: Imports Replicon.Cryptography.SCrypt Public Class Form1 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click …
Hamita
  • 61
  • 7
0
votes
2 answers

How to save one variable from rpc server response?

I want to connect my RPC wallet server with my WEB server using RPC AND PHP libary for my litecolin daemon server. Here is my libary which i use to connect with my server. [LITECOIN PHP LIBARY][1] [1]: Here is my index.php which will generate the…
Ajmoopetpokusat
  • 147
  • 1
  • 9
0
votes
0 answers

Litecoin vs Bitcoin Digest Signing

I'm trying to learn more about Litecoin and have understood how Bitcoin transactions work. What I'm not sure about is where Scrypt comes into the picture. I know it's used as the proof of work, but internally as far as transactions are concerned,…
The Welder
  • 916
  • 6
  • 24
0
votes
1 answer

Litecore-lib function to sign transactions does not work propertly

I'm trying to create a transaction on litecoin testnet using litecore-lib package. I attach the snippet of the code. I print every line to analyze how the transaction is being built. No changes when calling the 'sign' method. const litecore =…
Federico Caccia
  • 1,817
  • 1
  • 13
  • 33
0
votes
0 answers

How can i fork litecoin 0.15 to create my own coin

I tried following step in https://www.hackster.io/pjdecarlo/how-to-make-a-cryptocurrency-using-litecoin-v0-15-source-fb5e82 but i cannot create my own currency. I am facing issue creating genesis and updating the source code. Is there any guide or…
Vansh Tah
  • 153
  • 8
0
votes
0 answers

Issue with the BitcoinJ for Litecoin. Which dependency can be used for Litecoin?

I've created a crypto-currency wallet for Bitcoin using BitcoinJ. Now I want to add Litecoin in this wallet. How to implement BitcoinJ dependency for Litecoin? While using BitcoinJ for both Litecoin and Bitcoin, I was getting blockchain of Bitcoin…
Sid009
  • 421
  • 5
  • 16
0
votes
0 answers

How Sign/Verify Litecoin message in python3

For a day there was a task to sign and verify message in Litecoin wallet. A couple of days of searches did not work, so I had to rewrite a few of my functions using the library bitcoin for signing and verifying messages. Special thanks to the guys…
0
votes
2 answers

PHP exec() not working - permission error?

I'm trying to use exec() to run a program in /var/www/litecoin/bin and echo the output. Basically, this: (from /var/www/html/index.php) It just shows a blank page, though. I know it's…
hhaslam11
  • 191
  • 2
  • 7
  • 24
0
votes
1 answer

Is signing litecoin transactions same process as used with bitcoin?

Is this process for building and signing a litecoin transaction the same as the process for a bitcoin transaction? I know that litecoin has closely followed bitcoin's steps, so I expect them to be the same, or at least substantially similar.
gearhead
  • 787
  • 1
  • 6
  • 26
1
2