Closed Droppix closed 4 years ago
You're adding a segwit UTXO to the PSBT, I'm not too familiar with Dogecoin but the error looks like maybe it doesn't support segwit?
Yet if I look at the transactions in the explorer, it seems to me that we can see the segwit addresses.... cf: https://blockexplorer.one/doge/testnet/tx/4df614b42a8bd9a0bb01ff040c2ee4363df02e7f3a75cc541c588cad77d2d186
If you look at the Sigscript you can see it is clearly a multisig address.
P2SH does not equal "Segwit"
P2SH can mean anything, in the case of the tx you linked, those P2SH are non-segwit-multisig addresses.
Doge does not support segwit.
Ok...So what should I do? What is the solution?
If I try :
psbt.addInput({
hash: input.txid,
index: input.vout,
})
...
psbt.signInput(0, ecpair)
I obtain this:
Error: Need a Utxo input item for signing
I try many solutions, but I don't found the good solution
There is no solution.
If you sent money to a segwit script on dogecoin it is not redeemable.
I'm not sure I understand... It is not possible to send 'N' doge from 2NEVg7yQyW5n8Q1hBSUK57H6q43LZVqjFiS to 2NCPCBqu3iXb5YyosBNszXzFAmUfhSosC9K? (because they are segwit addresses) ? Or is it a problem of method?
(Sorry if my question seems stupid, but I'm a bit lost...)
It is not possible to send 'N' doge from 2NEVg7yQyW5n8Q1hBSUK57H6q43LZVqjFiS to 2NCPCBqu3iXb5YyosBNszXzFAmUfhSosC9K?
That is correct. It is not possible to spend dogecoins on 2NEVg7yQyW5n8Q1hBSUK57H6q43LZVqjFiS until dogecoin supports segwit, which it does not.
If dogecoin never supports segwit, your coins are lost forever.
If dogecoin supports segwit in 2 years, you will be able to spend the coins in 2 years.
Hello,
I try to create/send transaction on DOGE Testnet (send : 2NEVg7yQyW5n8Q1hBSUK57H6q43LZVqjFiS to 2NCPCBqu3iXb5YyosBNszXzFAmUfhSosC9K with amount = 100 tDOGE)
I tried a lot of things, but without success... I would appreciate your help... Thanks