elements icon indicating copy to clipboard operation
elements copied to clipboard

Open Source implementation of advanced blockchain features extending the Bitcoin protocol

Results 161 elements issues
Sort by recently updated
recently updated
newest added

Just for record keeping a wishlist of hardfork changes that might be considered for Liquid v2. - remove `CHECKSIGFROMSTACK` (keep `CHECKSIGFROMSTACKVERIFY`) (#202) - Fix #473: " Non-witness transactions cannot include...

consensus

In PSET we have broken out all the fields of the `pegin_witness` field of a transaction input, *except* for the pegin asset type. I seem to recall the reason for...

A "JSON RPC Exception occured: -6: Unable to blind the transaction properly. This should not happen." error is hit where the actions described below are taken (RPC via a Python...

Steps to reproduce (with 0.21.0.1): ```bash elementsd -chain=elementsregtest -initialfreecoins=2100000000000000 -anyonecanspendaremine=1 -validatepegin=0 -datadir=/tmp/elements-test alias cli='elements-cli -chain=elementsregtest -datadir=/tmp/elements-test' cli createwallet default cli rescanblockchain # pick up anyonecanspend addr=$(cli getnewaddress) for i in...

**Is your feature request related to a problem? Please describe.** `initpegoutwallet` only supports `pkh` descriptors for production (liquidv1). `wpkh` and `sh(wpkh)` descriptors are only supported for non-liquidv1 chains. This is...

**Expected behavior** I have a segwit blinded p2wsh address with: ``` unblinded_address=ex1qf000vr35slcvgrus2qpkqn8ccn7z3hn72uygy4qspghrnc80cflqa2ynaw redeem_script=52210209e67ac042dfd0b6de4f5829633abe1fd454cc4d28e1cd02d579f5aa9bf0b49521035e39052a6f3245d5f1eea824ddb393b07b181bc728c956c4728dc6ed088628402103c7f33f55a5ca147a58b5a0d3cd1e2cda845fc76015548e9d0d847ce1fc1fb1ec53ae descriptor=wsh(multi(2,0209e67ac042dfd0b6de4f5829633abe1fd454cc4d28e1cd02d579f5aa9bf0b495,035e39052a6f3245d5f1eea824ddb393b07b181bc728c956c4728dc6ed08862840,03c7f33f55a5ca147a58b5a0d3cd1e2cda845fc76015548e9d0d847ce1fc1fb1ec))#ru8mha3q blinded_address=lq1qqd45tcekmy6asgfyvklkjms4eet0u47mzw7ugc5avmdd2rmj73y6hze39m2f53wp2mlg0dmruup0ca2fgr3uu43rffdj8yuda ``` And I want to spend the following unspent output from the address: ``` [...

In order to burn a non -bitcoin asset, we need to pass also the `asset` key beside `burn` in the object of the array passed as second parameter in `createrawtransaction`....

Unless you importaddress from any vout address used in the issuance or reissuance tx that another node made, your node is not aware of the issuance or reissuance, even if...

I'm trying to make a manual pegout (`sendtomainchain` doesn't work with descriptor wallets). Creating the tx works and the signing using `signtransactionwithwallet` seems to work, but then when sending, the...

I'm trying to call `rawblindrawtransaction` from my jrpc2.0 library. Elementsd returns the error `-8:Unknown named parameter inputamountblinders` The raw request I send is: ```json {"jsonrpc":"2.0","method":"rawblindrawtransaction","params":{"hexstring":"longhex...","ignoreblindfail":true,"inputamount":[100000],"inputamountblinders":["89aaaea292f84f8e2cbc0b2c4fdd0c93226fec6aeb6f9ca422bf31d62da47ada"],"inputasset":["25b251070e29ca19043cf33ccd7324e2ddab03ecc4ae0b5e77c4fc0e5cf6c95a"],"inputassetblinder":["e3880a1dc357e782987e3df8e0776f102bdb5d41b94d22263da9aae60ba0f4f5"]},"id":14} ``` When I remove inputamountblinders...