Bitcoin Forum
April 25, 2024, 10:31:00 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 [555] 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 ... 661 »
  Print  
Author Topic: [ANN][XCP] Counterparty - Pioneering Peer-to-Peer Finance - Official Thread  (Read 1276291 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.
sparta_cuss
Sr. Member
****
Offline Offline

Activity: 386
Merit: 250


View Profile
March 12, 2015, 07:48:39 PM
 #11081

https://www.counterwallet.co   SSL cert has expired for a week now..  any ETA on a fix ?

That's an old domain and support for it will not be continued. Please use counterwallet.io instead.

Trying counterwallet.io. Getting this error:
No counterparty servers are currently available. Please try again later. ERROR: %s

"We must be willing to let go of the life we have planned, so as to have the life that is waiting for us." - E.M. Forster
NXT: NXT-Z24T-YU6D-688W-EARDT
BTC: 19ULeXarogu2rT4dhJN9vhztaorqDC3U7s
1714041060
Hero Member
*
Offline Offline

Posts: 1714041060

View Profile Personal Message (Offline)

Ignore
1714041060
Reply with quote  #2

1714041060
Report to moderator
1714041060
Hero Member
*
Offline Offline

Posts: 1714041060

View Profile Personal Message (Offline)

Ignore
1714041060
Reply with quote  #2

1714041060
Report to moderator
"Bitcoin: the cutting edge of begging technology." -- Giraffe.BTC
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
GeminiSimba
Full Member
***
Offline Offline

Activity: 176
Merit: 100

Ain't no party like a Counterparty!


View Profile
March 12, 2015, 07:56:20 PM
 #11082

https://www.counterwallet.co   SSL cert has expired for a week now..  any ETA on a fix ?

That's an old domain and support for it will not be continued. Please use counterwallet.io instead.

Trying counterwallet.io. Getting this error:
No counterparty servers are currently available. Please try again later. ERROR: %s

I'm getting the same error, it's saying servers are down.

"You see, you and I, we believe in life. But you want to fight for it, to kill for it, even to die--for life. I only want to live it."  (Ayn Rand)
xnova
Sr. Member
****
Offline Offline

Activity: 390
Merit: 254

Counterparty Developer


View Profile
March 12, 2015, 09:29:33 PM
 #11083

https://www.counterwallet.co   SSL cert has expired for a week now..  any ETA on a fix ?

That's an old domain and support for it will not be continued. Please use counterwallet.io instead.

Trying counterwallet.io. Getting this error:
No counterparty servers are currently available. Please try again later. ERROR: %s

I'm getting the same error, it's saying servers are down.

It's back up now (I just logged in).

Visit the official Counterparty forums: http://counterpartytalk.org
jrmg
Full Member
***
Offline Offline

Activity: 134
Merit: 100


View Profile
March 13, 2015, 06:48:35 AM
 #11084

https://www.reddit.com/r/Bitcoin/comments/2yucue/theoretically_anything_that_can_be_done_on/

Interesting article and talking is going in reddit Smiley
pankogulo
Full Member
***
Offline Offline

Activity: 121
Merit: 100

Counterparty General Manager


View Profile WWW
March 13, 2015, 12:15:23 PM
 #11085

Beta version of the Counterparty Desktop wallet has been released! Read about it in our latest community update http://counterparty.io/news/counterparty-update-mar-13/

testcoin
Sr. Member
****
Offline Offline

Activity: 465
Merit: 250


View Profile WWW
March 13, 2015, 02:25:00 PM
 #11086

For anyone who has the time to hack around a little bit,
this is the way I created a valid XCP transaction in python with python-trezor library installed.

The process is a pain in the ass right now,
a) create transaction unsigned with counterwallet-cli
b) copy the raw transaction into http://brainwallet.org to decode the raw transaction
c) Copy prevout, previndex and the OP_RETURN data into the python script
d) Set the correct BIP path and receipient in the python file, and launch it to sign the transaction with trezor
e) Now push the transaction with bitcoin core using "sendrawtransaction" api.

If anyone has fun making this thing more comfortable or maybe even integrating this workflow into Counterwallet GUI,
feel free to take my code:

Code:
#!/usr/bin/python
import binascii

import trezorlib.types_pb2 as proto_types

from trezorlib.client import TrezorClient, TrezorClientDebug
from trezorlib.tx_api import TXAPITestnet
from trezorlib.tx_api import TXAPIBitcoin
from trezorlib.transport_hid import HidTransport

FROM_BIP="44'/0'/0'/0/0"
PREVHASH='67ca16b97014a56189f50f1a30b4db68e8ea314b33473bd0553916078f6a8250'
N=2
TO='1H6w1CUk8cmSeaoGJ363LY9LWe57FPrCeA'
OPRETURN_DATA=binascii.unhexlify("6f6bf889b4e439735d37c3611b0942d26df866aaf773c825208fbb6a")
TOTAL=22853000
FEE=10000
DUST=5430

def main():
    # List all connected TREZORs on USB
    devices = HidTransport.enumerate()

    # Check whether we found any
    if len(devices) == 0:
        print 'No TREZOR found'
        return

    # Use first connected device
    transport = HidTransport(devices[0])

    # Creates object for manipulating TREZOR
    client = TrezorClient(transport)
    client.set_tx_api(TXAPIBitcoin())

    # The list of inputs.
    inputs = [
        proto_types.TxInputType(
            address_n=client.expand_path(FROM_BIP),
            prev_hash=binascii.unhexlify(PREVHASH),
            prev_index=N,
        ),
    ]

    outputs = [
        proto_types.TxOutputType(
            amount=DUST,
            script_type=proto_types.PAYTOADDRESS,
            address=TO,
        ),
        proto_types.TxOutputType(
            amount=0,
            script_type=proto_types.PAYTOOPRETURN,
            op_return_data=OPRETURN_DATA,
        ),

        proto_types.TxOutputType(
            amount=TOTAL-FEE-DUST,
            script_type=proto_types.PAYTOADDRESS,
            address_n=client.expand_path(FROM_BIP),
        ),
    ]
 
    (signatures, serialized_tx) = client.sign_tx('Bitcoin', inputs, outputs)
    print 'Transaction:', binascii.hexlify(serialized_tx)

    client.close()

if __name__ == '__main__':
    main()



Did you try to move XCP funds successfully with 0 tx fee?

It has always been the tx fee that stops me from using the XCP online wallet
delulo
Sr. Member
****
Offline Offline

Activity: 441
Merit: 250


View Profile
March 13, 2015, 02:54:23 PM
Last edit: March 13, 2015, 05:41:15 PM by delulo
 #11087

What is the revenue model for symbiont?

Great news btw... (the cooperation with Mark Smith)!!
dexX7
Legendary
*
Offline Offline

Activity: 1106
Merit: 1024



View Profile WWW
March 13, 2015, 07:06:14 PM
 #11088

Beta version of the Counterparty Desktop wallet has been released! Read about it in our latest community update http://counterparty.io/news/counterparty-update-mar-13/

Quote
The GUI comes with a standalone installer for Windows and a MacOS installer coming soon, and will be configured to run in ‘light’ mode by default, meaning that users will no longer have to run a local instance of bitcoin/counterparty clients or download the blockchain to get started.

Global consensus is fragile, so I'm wondering: what is the security model behind this? How could I know whether the data provider for the light mode is honest?

PhantomPhreak (OP)
Sr. Member
****
Offline Offline

Activity: 476
Merit: 300

Counterparty Chief Scientist and Co-Founder


View Profile
March 13, 2015, 11:17:56 PM
 #11089

Beta version of the Counterparty Desktop wallet has been released! Read about it in our latest community update http://counterparty.io/news/counterparty-update-mar-13/

Quote
The GUI comes with a standalone installer for Windows and a MacOS installer coming soon, and will be configured to run in ‘light’ mode by default, meaning that users will no longer have to run a local instance of bitcoin/counterparty clients or download the blockchain to get started.

Global consensus is fragile, so I'm wondering: what is the security model behind this? How could I know whether the data provider for the light mode is honest?

You can parse cilent-side the transaction that the server (with access to the Bitcoin UTXO pool) tells you to sign. Make 100% certain that it sends the right funds to the right place, e.g.
JahPowerBit
Sr. Member
****
Offline Offline

Activity: 335
Merit: 255


Counterparty Developer


View Profile
March 13, 2015, 11:29:40 PM
 #11090

Global consensus is fragile, so I'm wondering: what is the security model behind this? How could I know whether the data provider for the light mode is honest?

The data provider is used for:
1) generate unsigned transactions
2) querying the Counterparty database, to get balances, orders, etc..

For the 1) all transactions generated by a server are checked client side, to be sure that the transaction contains exactly what the user asked (see https://github.com/CounterpartyXCP/counterpartyd/pull/728)

For the 2), (a lot less critical for all transactions except btcpay), an option will be available to query several servers, if all results are not the same an error will be raised (see https://github.com/CounterpartyXCP/counterparty-cli/issues/35).
Jesse Livermore
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250



View Profile
March 14, 2015, 02:09:13 PM
 #11091

What is the revenue model for symbiont?


I'm wondering this myself before potentially jumping back over to this XCP ship.
JL

I own a DASH Masternode.... And you should too.
allwelder
Legendary
*
Offline Offline

Activity: 1512
Merit: 1004



View Profile
March 14, 2015, 11:28:50 PM
 #11092

domain name for sale.

counterpartywallet.com

PM me if interest. Smiley

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

       .       .██████████████████████████████████████████████
       .    ██████████████████████████████████████████████████████
       .█████████████████████████████████████████████████████████████.
        .███████████████████████████████████████████████████████████
           .█████████████████████████████████████████████████████
              .████████████████████████████████████████████████
                   ████████████████████████████████████████
                      ██████████████████████████████████
                          ██████████████████████████
                             ████████████████████
                               ████████████████
                                   █████████
.CryptoTalk.org.|.MAKE POSTS AND EARN BTC!.🏆
yampi
Sr. Member
****
Offline Offline

Activity: 433
Merit: 250


View Profile
March 15, 2015, 01:17:50 AM
 #11093

On blockscan.com it says I have (+0.002496 BTC in multisig)
How do I spend those BTC that are in multisig?
mtbitcoin
Legendary
*
Offline Offline

Activity: 876
Merit: 1000


Etherscan.io


View Profile
March 15, 2015, 02:06:54 PM
 #11094

On blockscan.com it says I have (+0.002496 BTC in multisig)
How do I spend those BTC that are in multisig?

http://redeem.bitwatch.co/

EtherScan::Ethereum Block Explorer | BlockScan::Coming Soon
yampi
Sr. Member
****
Offline Offline

Activity: 433
Merit: 250


View Profile
March 15, 2015, 02:29:11 PM
 #11095

On blockscan.com it says I have (+0.002496 BTC in multisig)
How do I spend those BTC that are in multisig?

http://redeem.bitwatch.co/

This happens when I try to sign the transaction:
Code:
Error making request to https://cw02.counterwallet.io/_api: JSON-RPC Error:

Type: Server error

Code: -32000

Message: Bad status code returned: '500'. result body: '{"result":null,"error":{"code":-25,"message":""},"id":0} '.
dexX7
Legendary
*
Offline Offline

Activity: 1106
Merit: 1024



View Profile WWW
March 15, 2015, 03:00:28 PM
Last edit: March 15, 2015, 03:15:33 PM by dexX7
 #11096

Code:
Message: Bad status code returned: '500'. result body: '{"result":null,"error":{"code":-25,"message":""},"id":0} '.

I'm not entirely sure what causes the signing errors, but I opened an issue:

https://github.com/CounterpartyXCP/counterwallet/issues/716

Kergekoin
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500


View Profile
March 15, 2015, 03:57:32 PM
 #11097

No issues here. Worked fine for me.

******  NB! The links below are affiliate - friend type links, which bring additional benefits both, to you and me  ******
Binance - Best Crypto Trading Platform          CoinBase - Fastest way from FIAT to Crypto
Windscribe - The quickest and easyest way to secure and anonymize your internet traffic
xnova
Sr. Member
****
Offline Offline

Activity: 390
Merit: 254

Counterparty Developer


View Profile
March 15, 2015, 04:49:22 PM
 #11098

What is the revenue model for symbiont?


I'm wondering this myself before potentially jumping back over to this XCP ship.
JL

We will have a few interviews coming out over the next few weeks that go into this at a basic level.

Visit the official Counterparty forums: http://counterpartytalk.org
Felipez
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
March 17, 2015, 12:49:01 PM
 #11099

Any estimate for when Smart Contracts go live?
And for desktop wallet?

I think community is hibernating kinda, just waiting for these to be ready before starting coding stuff.
Matt Y
Hero Member
*****
Offline Offline

Activity: 647
Merit: 510


Counterpartying


View Profile WWW
March 17, 2015, 03:41:16 PM
 #11100

http://cointelegraph.com/news/113720/counterparty-we-do-not-see-overstocks-medici-as-a-competitor

Pages: « 1 ... 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 [555] 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 ... 661 »
  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!