Bitcoin Forum
April 26, 2024, 02:43:10 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 [16] 17 18 19 20 »  All
  Print  
Author Topic: [coinb.in] Open Source, Multi Signature, HD Wallet, SegWit/Bech32 and more!  (Read 74774 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
ridhonofri23
Member
**
Offline Offline

Activity: 61
Merit: 10


View Profile
October 07, 2017, 04:45:34 AM
 #301

You may want to take a look at
http://www.bitescrow.org/

http://www.bitescrow.org/
what this link ?
"I'm sure that in 20 years there will either be very large transaction volume or no volume." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714099390
Hero Member
*
Offline Offline

Posts: 1714099390

View Profile Personal Message (Offline)

Ignore
1714099390
Reply with quote  #2

1714099390
Report to moderator
Thirdspace
Hero Member
*****
Offline Offline

Activity: 1232
Merit: 738


Mixing reinvented for your privacy | chipmixer.com


View Profile
October 07, 2017, 09:39:43 AM
 #302

I'm trying to do something like: unspent A1 + unspent A2 + unspent B ~> output C
can someone tell me how to sign raw tx made of 3 inputs from 2 different address?
I can create the unsigned raw transaction but when signing only one address works at a time
I cannot make all inputs signed properly, is it possible to do that with coinb.in?
or what is the correct procedure to create signed raw tx from 2 different address?

Pente
Hero Member
*****
Offline Offline

Activity: 528
Merit: 527



View Profile WWW
October 07, 2017, 04:55:55 PM
 #303

I'm trying to do something like: unspent A1 + unspent A2 + unspent B ~> output C
can someone tell me how to sign raw tx made of 3 inputs from 2 different address?
I can create the unsigned raw transaction but when signing only one address works at a time
I cannot make all inputs signed properly, is it possible to do that with coinb.in?
or what is the correct procedure to create signed raw tx from 2 different address?

If I understand the code correctly, you will have to do one address at a time.

 unspent A1 + unspent A2 ~> output C

then

 unspent B ~> output C
Thirdspace
Hero Member
*****
Offline Offline

Activity: 1232
Merit: 738


Mixing reinvented for your privacy | chipmixer.com


View Profile
October 07, 2017, 09:08:19 PM
 #304

I'm trying to do something like: unspent A1 + unspent A2 + unspent B ~> output C
can someone tell me how to sign raw tx made of 3 inputs from 2 different address?
I can create the unsigned raw transaction but when signing only one address works at a time
I cannot make all inputs signed properly, is it possible to do that with coinb.in?
or what is the correct procedure to create signed raw tx from 2 different address?

If I understand the code correctly, you will have to do one address at a time.

 unspent A1 + unspent A2 ~> output C

then

 unspent B ~> output C

that means I have to create 2 separate transactions, right?
anyway to make it into single transaction just like if we use bitcoin wallet?
I was hoping some setting with "Sig Hash Type" options on "Sign" tab could solve it
but I cannot understand how to make out of it (use of those different sighash types)
the two sighash types that I think might help my case:
Quote
SIGHASH_NONE: Signs all of the inputs but none of the outputs, allowing anyone to change where the satoshis are going unless other signatures using other signature hash flags protect the outputs.
SIGHASH_NONE|SIGHASH_ANYONECANPAY: Signs only this one input and allows anyone to add or remove other inputs or outputs, so anyone who gets a copy of this input can spend it however they'd like.

Thirdspace
Hero Member
*****
Offline Offline

Activity: 1232
Merit: 738


Mixing reinvented for your privacy | chipmixer.com


View Profile
October 08, 2017, 02:39:20 AM
 #305

OK... I think I figure out how to do what I'm trying to do
I just sign with privkey A to get partially signed raw tx
then I sign again "that partial signed raw tx" using privkey B
that give me all inputs signed properly (all inputs checked under signed column)

I haven't try broadcast it yet, fear of losing my BTC because of misconstructed signed raw tx
I hope OutCast3k would stop by and confirm on how to do this
and perhaps he or someone could also explain & give condition/example to
the usage of all those 5 non-default sighash types, thanks!

debianbtc
Newbie
*
Offline Offline

Activity: 7
Merit: 11


View Profile
October 11, 2017, 09:43:51 PM
 #306

just wondering since coinb.in is for developers for testing - can it be used to test without btc or dodge in the address?  i would like to do some testing but rather not use real btc for general testing - this reddit seems to imply testing may infact be possible
https://www.reddit.com/r/dogeducation/comments/6eowvb/can_anyone_tell_me_how_to_use_coinbin/?ref=share&ref_source=link
but both the local javascript page and the live https://coinb.in/#txinputs return errors for addresses that have no coins.

also - am i incorrect in understanding that coinb.in can be used locally in an airgap situation to create transactions or must it be able to connect to generate transactions as i remember OutCast3 mentioned in a discussion on a bounty site....tho that may have been regarding an old pull requesst....

If you use the version at coinb.in, just go the the broadcast page, on the right side is a little icon that you can click, you can select the bitcoin test network there.


for newbies to coinb.in it must be online to send a transaction

@Pente i did find the testnet setting @ coinb.in/#broadcast the small blue gear symbol.


1)I changed settings to bitcoin(testnet), Broadcast: coinb.in (Bitcoin mainnet), Unspent outputs: coinb.in (Bitcoin mainnet)
2)created new send and recieve addresses
3)clicked Transaction to create a new transaction
   Address, WIF key or Redeem Script: area is greyed out so no inputs are possible
4)enter two recieve addresses with amounts into outputs tab
   Outputs (2.3000000) total is added for both recieve addresses
5)clicked Inputs tab
      Address, WIF key or Redeem Script: area is greyed out so no inputs are possible
6)enter input address into Transaction ID: field and fill in amount = Outputs (2.3000) + Transaction Fee
   Transacton fee: section is automatically filled in
ERROR: One or more input or output is invalid
7)enter input Public key (Share) into Transaction ID: field and fill in amount = Outputs (2.3000) + Transaction Fee
   Transacton fee: section is automatically filled in
submit
ERROR: One or more input or output is invalid
I will not post redundant steps but all combinations of Address (Share), Public key (Share), Private key (WIF key) generate
submit
ERROR: One or more input or output is invalid

can someone clarify (provide example or steps) to create a BCC BitcoinCash TEST transaction.  The systems apparently works for live transactions but i wish to use testnet with fake transactions for testing.  thank you much for help figuring this out if it can be done.

Pente
Hero Member
*****
Offline Offline

Activity: 528
Merit: 527



View Profile WWW
October 12, 2017, 07:10:25 AM
 #307

Quote
for newbies to coinb.in it must be online to send a transaction

@Pente i did find the testnet setting @ coinb.in/#broadcast the small blue gear symbol.


1)I changed settings to bitcoin(testnet), Broadcast: coinb.in (Bitcoin mainnet), Unspent outputs: coinb.in (Bitcoin mainnet)
2)created new send and recieve addresses
3)clicked Transaction to create a new transaction
   Address, WIF key or Redeem Script: area is greyed out so no inputs are possible
4)enter two recieve addresses with amounts into outputs tab
   Outputs (2.3000000) total is added for both recieve addresses
5)clicked Inputs tab
      Address, WIF key or Redeem Script: area is greyed out so no inputs are possible
6)enter input address into Transaction ID: field and fill in amount = Outputs (2.3000) + Transaction Fee
   Transacton fee: section is automatically filled in
ERROR: One or more input or output is invalid
7)enter input Public key (Share) into Transaction ID: field and fill in amount = Outputs (2.3000) + Transaction Fee
   Transacton fee: section is automatically filled in
submit
ERROR: One or more input or output is invalid
I will not post redundant steps but all combinations of Address (Share), Public key (Share), Private key (WIF key) generate
submit
ERROR: One or more input or output is invalid

can someone clarify (provide example or steps) to create a BCC BitcoinCash TEST transaction.  The systems apparently works for live transactions but i wish to use testnet with fake transactions for testing.  thank you much for help figuring this out if it can be done.

Ok, it looks like coinb.in doesn't actually get inputs (or even broadcast) from testnet. That section of code is incomplete. Also no testnet for BCC. Transactions are cheap enough on BCC, that you don't really need testnet. Just use a few pennies worth of BCC to test.
meliodas
Sr. Member
****
Offline Offline

Activity: 742
Merit: 329

CryptoTalk.Org - Get Paid for every Post!


View Profile
October 12, 2017, 11:38:06 AM
 #308

Throughout the year, there are lots of projects I've been hearing about, and many people in the bitcoin community are really psyched about it. However, they do not understand that one must be responsible and hard working for him or her to exell.

 
                                . ██████████.
                              .████████████████.
                           .██████████████████████.
                        -█████████████████████████████
                     .██████████████████████████████████.
                  -█████████████████████████████████████████
               -███████████████████████████████████████████████
           .-█████████████████████████████████████████████████████.
        .████████████████████████████████████████████████████████████
       .██████████████████████████████████████████████████████████████.
       .██████████████████████████████████████████████████████████████.
       ..████████████████████████████████████████████████████████████..
       .   .██████████████████████████████████████████████████████.
       .      .████████████████████████████████████████████████.

       .       .██████████████████████████████████████████████
       .    ██████████████████████████████████████████████████████
       .█████████████████████████████████████████████████████████████.
        .███████████████████████████████████████████████████████████
           .█████████████████████████████████████████████████████
              .████████████████████████████████████████████████
                   ████████████████████████████████████████
                      ██████████████████████████████████
                          ██████████████████████████
                             ████████████████████
                               ████████████████
                                   █████████
YoBit AirDrop $| 
Get 700 YoDollars for Free!
🏆
Thirdspace
Hero Member
*****
Offline Offline

Activity: 1232
Merit: 738


Mixing reinvented for your privacy | chipmixer.com


View Profile
October 21, 2017, 07:56:03 AM
 #309

I noticed one more thing just now,
I tried to sign an unsigned raw tx at different times, it resulted exactly the same signed raw tx every time
shouldn't I get different signed raw tx every time I do it, because of hashes thingy
if the signed raw tx the same, doesn't it mean it uses the same seeder(?) every time
I might have use some terms incorrectly, but you probably get what I mean

Pente
Hero Member
*****
Offline Offline

Activity: 528
Merit: 527



View Profile WWW
October 21, 2017, 09:05:25 PM
 #310

I noticed one more thing just now,
I tried to sign an unsigned raw tx at different times, it resulted exactly the same signed raw tx every time
shouldn't I get different signed raw tx every time I do it, because of hashes thingy
if the signed raw tx the same, doesn't it mean it uses the same seeder(?) every time
I might have use some terms incorrectly, but you probably get what I mean

I think I saw the same problem once, but later I didn't see it. Maybe I will investigate it some more.

In the meantime, I would suggest not reusing the P2SH address, since it does mean the private key could be compromised.
kordanallas
Newbie
*
Offline Offline

Activity: 85
Merit: 0


View Profile
October 24, 2017, 07:19:08 AM
 #311

Interesting
What do you mean - "HD Wallet"??
100bitcoin
Sr. Member
****
Offline Offline

Activity: 860
Merit: 423


View Profile WWW
October 24, 2017, 09:20:27 PM
 #312

Can we move Bitcoin Cash and Bitcoin Gold using Coinbin?

Pente
Hero Member
*****
Offline Offline

Activity: 528
Merit: 527



View Profile WWW
October 25, 2017, 11:42:23 AM
 #313

Can we move Bitcoin Cash and Bitcoin Gold using Coinbin?

You can create Bitcoin Cash P2SH transactions here: http://www.motelmaya.com/BCC/BCC.html

We don't know if Bitcoin Gold is using replay protection yet. If it does, it will probably mess up P2SH transactions just like Bitcoin Cash did. Hopefully, we can figure out a way to recover those coins if that happens.

I think we will get lucky on the SegWit1X/SegWit2X fork though. Seems like they learned about the severe problems with replay protection and don't want to repeat them.
100bitcoin
Sr. Member
****
Offline Offline

Activity: 860
Merit: 423


View Profile WWW
October 25, 2017, 01:31:04 PM
 #314

You can create Bitcoin Cash P2SH transactions here: http://www.motelmaya.com/BCC/BCC.html
What is this Motel Maya?

We don't know if Bitcoin Gold is using replay protection yet. If it does, it will probably mess up P2SH transactions just like Bitcoin Cash did. Hopefully, we can figure out a way to recover those coins if that happens.
Do u mean, if I had BTC on a multi-sig address before the BCC fork, I wont be able to recover those BCC now?

I think we will get lucky on the SegWit1X/SegWit2X fork though. Seems like they learned about the severe problems with replay protection and don't want to repeat them.
Please check the BTC/BTG/BCH/B2X Comparison on http://btcgpu.org. It mentions Replay protection for BTG.

OmegaStarScream
Staff
Legendary
*
Offline Offline

Activity: 3458
Merit: 6099



View Profile
October 25, 2017, 01:39:44 PM
 #315

If the project need translation for either Arabic or French, feel free to let me know. I could do it. (or make a translation page at Transifex)

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
TryNinja
Legendary
*
Offline Offline

Activity: 2814
Merit: 6971



View Profile WWW
October 25, 2017, 04:43:16 PM
 #316

What is this Motel Maya?
It's a Coinbin clone that works for Bitcoin Cash. I used it to claim some BCH from an old Time-Locked Address I had and it worked.

https://bitcointalk.org/index.php?topic=390046.msg22484733#msg22484733

Please check the BTC/BTG/BCH/B2X Comparison on http://btcgpu.org. It mentions Replay protection for BTG.
They stated that they will have replay protection for the fork. But AFAIK it isn't implemented yet and they released a bounty 5 days ago to get this done. So it's not confirmed yet.

.
.HUGE.
▄██████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄███████████████████████▄
▄█████████████████████████▄
███████▌██▌▐██▐██▐████▄███
████▐██▐████▌██▌██▌██▌██
█████▀███▀███▀▐██▐██▐█████

▀█████████████████████████▀

▀███████████████████████▀

▀█████████████████████▀

▀█████████████████▀

▀██████████▀▀
█▀▀▀▀











█▄▄▄▄
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
CASINSPORTSBOOK
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀▀█











▄▄▄▄█
okane818
Legendary
*
Offline Offline

Activity: 1176
Merit: 1000



View Profile
November 15, 2017, 07:12:15 AM
 #317

Hello Dev,

Is this working with BTG ADDRESS to see the balance?

Thanks


Okabe Satoshi
catmilk
Member
**
Offline Offline

Activity: 114
Merit: 11


View Profile
November 21, 2017, 07:28:09 AM
 #318

How can i make a transaction from my wallet?

OutCast3k (OP)
Hero Member
*****
Offline Offline

Activity: 714
Merit: 601


View Profile WWW
November 21, 2017, 10:22:07 PM
 #319

Hey everyone!

For those in need of some help, we've put together some guides

https://blog.coinb.in/guides

Feedback is very welcome!

coinb.in - Open Source, Multi Signature, HD Wallet and more! | Donate: 33tht1bKDgZVxb39MnZsWa8oxHXHvUYE4G
kkcity
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
December 18, 2017, 06:21:20 PM
 #320

Hello,

Can you accelerate Transaction?
a4ca085b4b15247f875f428e96a57bec2238a3e21fd11fba591891abc7f2086d

https://chain.so/tx/BTC/a4ca085b4b15247f875f428e96a57bec2238a3e21fd11fba591891abc7f2086d

I am willing to pay for your service.

thank you!
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 [16] 17 18 19 20 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!