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

2

2

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: 'https://testnet.litecore.io/tx/send',
    method: 'POST',
    data: test_tx
}, ((error, response, body) => {
    if(error) {
        console.log(error);
    } else {
        console.log(body);
    }
}));

I also tried to use another service, but it's failing too.

Code :

postdata = { tx_hex : test_tx };
request.post('https://chain.so/api/v2/send_tx/LTCTEST', postdata, function 
             optionalCallback(err, httpResponse, body) {
        if (err) {
            return console.error('upload failed:', err);
        }
        console.log('Upload successful!  Server responded with:', body);
});

Дима Марков

Posted 2018-05-25T12:40:10.103

Reputation: 314

2Does it give you an error message on failing?Raghav Sood 2018-05-25T14:56:19.550

It return html-page with "Cannot POST to /tx/send".Дима Марков 2018-05-29T07:32:07.123

From what I recall, the POST is supposed to be sent to the api /tx/send endpoint, which depends on your insight API prefix (it's usually /api or /insight-api)Raghav Sood 2018-05-29T07:40:18.427

Answers

1

Postdata must be String, not Object. ('tx_hex=...')

Дима Марков

Posted 2018-05-25T12:40:10.103

Reputation: 314