Pages:
Author

Topic: [ANN][BRA][Brasil] Quark Masternodes Darksend Pow/Pos [Brasil][BRA][ANN] (Read 7043 times)

newbie
Activity: 5
Merit: 0
Hi, could someone please send me the link the Bra wallet for MAC(IOS), or where should I transfer my BRA coins from coinsmarkets.com.

Thanks for the help guys!
newbie
Activity: 112
Merit: 0
this is a very refreshing sight! a nice old style launch. and with an open playground! this one will go well!hope will be good
newbie
Activity: 10
Merit: 0
Hello! How to install wallet on Ubuntu 14.04.??

I'm getting error:

Quote
key.cpp: In constructor ‘{anonymous}::CSecp256k1Init::CSecp256k1Init()’:
key.cpp:31:9: error: ‘ctx’ was not declared in this scope
         ctx = secp256k1_context_create(SECP256K1_CONTEXT_SIGN);
         ^
key.cpp: In destructor ‘{anonymous}::CSecp256k1Init::~CSecp256k1Init()’:
key.cpp:34:35: error: ‘ctx’ was not declared in this scope
         secp256k1_context_destroy(ctx);
                                   ^
key.cpp: In member function ‘bool CKey::SetPrivKey(const CPrivKey&, bool)’:
key.cpp:471:61: error: ‘class {anonymous}::CSecp256k1Init’ has no member named ‘ctx’
     if (!secp256k1_ec_privkey_import(instance_of_csecp256k1.ctx, (unsigned char*)begin(), &privkey[0], privkey.size()))
                                                             ^
key.cpp:471:118: error: ‘secp256k1_ec_privkey_import’ was not declared in this scope
     if (!secp256k1_ec_privkey_import(instance_of_csecp256k1.ctx, (unsigned char*)begin(), &privkey[0], privkey.size()))
                                                                                                                      ^
key.cpp: In member function ‘CPrivKey CKey::GetPrivKey() const’:
key.cpp:490:66: error: ‘class {anonymous}::CSecp256k1Init’ has no member named ‘ctx’
     int ret = secp256k1_ec_privkey_export(instance_of_csecp256k1.ctx, begin(), (unsigned char*)&privkey[0], &privkeylen, fCompressed);
                                                                  ^
key.cpp:490:133: error: ‘secp256k1_ec_privkey_export’ was not declared in this scope
     int ret = secp256k1_ec_privkey_export(instance_of_csecp256k1.ctx, begin(), (unsigned char*)&privkey[0], &privkeylen, fCompressed);
                                                                                                                                     ^
key.cpp: In member function ‘CPubKey CKey::GetPubKey() const’:
key.cpp:506:65: error: ‘class {anonymous}::CSecp256k1Init’ has no member named ‘ctx’
     int ret = secp256k1_ec_pubkey_create(instance_of_csecp256k1.ctx, (unsigned char*)pubkey.begin(), &clen, begin(), fCompressed);
                                                                 ^
key.cpp: In member function ‘bool CKey::Sign(const uint256&, std::vector&) const’:
key.cpp:528:57: error: ‘class {anonymous}::CSecp256k1Init’ has no member named ‘ctx’
         if (secp256k1_ecdsa_sign(instance_of_csecp256k1.ctx, hash.begin(), (unsigned char*)&vchSig[0], &nSigLen, begin(),  secp256k1_nonce_function_rfc6979, NULL))
                                                         ^
key.cpp: In member function ‘bool CKey::SignCompact(const uint256&, std::vector&) const’:
key.cpp:552:75: error: ‘class {anonymous}::CSecp256k1Init’ has no member named ‘ctx’
         if (int ret = secp256k1_ecdsa_sign_compact(instance_of_csecp256k1.ctx, hash.begin(), &vchSig[1], begin(), secp256k1_nonce_function_rfc6979, NULL, &rec))
                                                                           ^
key.cpp:552:159: error: ‘secp256k1_ecdsa_sign_compact’ was not declared in this scope
         if (int ret = secp256k1_ecdsa_sign_compact(instance_of_csecp256k1.ctx, hash.begin(), &vchSig[1], begin(), secp256k1_nonce_function_rfc6979, NULL, &rec))
                                                                                                                                                               ^
key.cpp:552:17: warning: unused variable ‘ret’ [-Wunused-variable]
         if (int ret = secp256k1_ecdsa_sign_compact(instance_of_csecp256k1.ctx, hash.begin(), &vchSig[1], begin(), secp256k1_nonce_function_rfc6979, NULL, &rec))
                 ^
key.cpp: In member function ‘bool CKey::Load(CPrivKey&, CPubKey&, bool)’:
key.cpp:568:61: error: ‘class {anonymous}::CSecp256k1Init’ has no member named ‘ctx’
     if (!secp256k1_ec_privkey_import(instance_of_csecp256k1.ctx, (unsigned char*)begin(), &privkey[0], privkey.size()))
                                                             ^
key.cpp:568:118: error: ‘secp256k1_ec_privkey_import’ was not declared in this scope
     if (!secp256k1_ec_privkey_import(instance_of_csecp256k1.ctx, (unsigned char*)begin(), &privkey[0], privkey.size()))
                                                                                                                      ^
key.cpp: In member function ‘bool CPubKey::VerifyCompact(const uint256&, const std::vector&) const’:
key.cpp:632:10: warning: unused variable ‘fComp’ [-Wunused-variable]
     bool fComp = IsCompressed();
          ^
key.cpp: In member function ‘bool CPubKey::IsFullyValid() const’:
key.cpp:654:60: error: ‘class {anonymous}::CSecp256k1Init’ has no member named ‘ctx’
     if (!secp256k1_ec_pubkey_verify(instance_of_csecp256k1.ctx, begin(), size()))
                                                            ^
key.cpp:654:80: error: ‘secp256k1_ec_pubkey_verify’ was not declared in this scope
     if (!secp256k1_ec_pubkey_verify(instance_of_csecp256k1.ctx, begin(), size()))
                                                                                ^
key.cpp: In member function ‘bool CPubKey::Decompress()’:
key.cpp:669:69: error: ‘class {anonymous}::CSecp256k1Init’ has no member named ‘ctx’
     int ret = secp256k1_ec_pubkey_decompress(instance_of_csecp256k1.ctx, (unsigned char*)begin(), &clen);
                                                                     ^
key.cpp:669:104: error: ‘secp256k1_ec_pubkey_decompress’ was not declared in this scope
     int ret = secp256k1_ec_pubkey_decompress(instance_of_csecp256k1.ctx, (unsigned char*)begin(), &clen);
                                                                                                        ^
key.cpp: In member function ‘bool CKey::Derive(CKey&, unsigned char*, unsigned int, const unsigned char*) const’:
key.cpp:711:70: error: ‘class {anonymous}::CSecp256k1Init’ has no member named ‘ctx’
     bool ret = secp256k1_ec_privkey_tweak_add(instance_of_csecp256k1.ctx, (unsigned char*)keyChild.begin(), out);
                                                                      ^
key.cpp: In member function ‘bool CPubKey::Derive(CPubKey&, unsigned char*, unsigned int, const unsigned char*) const’:
key.cpp:730:69: error: ‘class {anonymous}::CSecp256k1Init’ has no member named ‘ctx’
     bool ret = secp256k1_ec_pubkey_tweak_add(instance_of_csecp256k1.ctx, (unsigned char*)pubkeyChild.begin(), pubkeyChild.size(), out);
                                                                     ^
make: ** [obj/key.o] Erro 1
newbie
Activity: 158
Merit: 0
Hi There,

Are there still actrivities around Brazilcoin ?  I dont see much happening anymore.

CryptoCoinsCity.
full member
Activity: 490
Merit: 105
Hi ! BrazilCoin is available on LycheeBit.
Happy mining Smiley

Mining BrazilCoin with quark algo :

  • Stratum  : lycheebit.com:4033
  • User     : YOUR_BRA_ADDRESS
  • Password : c=BRA

LycheeBit info :


Mining software :


Examples of command line :

  • Nvidia   : ccminer.exe -a quark -o stratum+tcp://lycheebit.com:4033 -u AnNPghpD8Wu83n6MuZX3XHAP7p6XWrDw3g -p c=BRA
  • AMD      : sgminer.exe --algorithm quark -o stratum+tcp://lycheebit.com:4033 -u AnNPghpD8Wu83n6MuZX3XHAP7p6XWrDw3g -p c=BRA

Peers list :

    • addnode=31.128.101.42:17645
    • addnode=93.81.200.188:17645

    Mined on lycheebit ==> Payouts did not arrive in my wallet :-(   AngryAngryAngryAngry[/list]
    full member
    Activity: 490
    Merit: 105
    new wallet please.... old one is no working  Roll Eyes
    full member
    Activity: 238
    Merit: 100
    Need a link to the new wallet. The windows download actually contains a hook virus. Embarrassed
    jr. member
    Activity: 151
    Merit: 1
    пoдcкaжитe кoшeлeк нa нee гдe cкaчaть?? y мeня ecть нo чтo тo нa нeгo дeнюшкa нe дoxoдит.....
    full member
    Activity: 345
    Merit: 131
    Coin dead ?? Huh Huh

    Yeah looks like it huh?
    newbie
    Activity: 64
    Merit: 0
    that market is a shit hole there constantly delisting coins when when put so many on... and then always disapearing.... think they have disapeared for good this time... get this coin listed on yobit, or coinexchange.io somwhere thats not a scam Angry Angry Angry
    jr. member
    Activity: 126
    Merit: 1
    Is this market valid? https://coinsmarkets.com/trade-BTC-BRA.htm

    is there a forecast to be added in another exchange?
    newbie
    Activity: 6
    Merit: 0
    Hi ! BrazilCoin is available on LycheeBit.
    Happy mining Smiley

    Mining BrazilCoin with quark algo :

    • Stratum  : lycheebit.com:4033
    • User     : YOUR_BRA_ADDRESS
    • Password : c=BRA

    LycheeBit info :


    Mining software :




    Examples of command line :

    • Nvidia   : ccminer.exe -a quark -o stratum+tcp://lycheebit.com:4033 -u AnNPghpD8Wu83n6MuZX3XHAP7p6XWrDw3g -p c=BRA
    • AMD      : sgminer.exe --algorithm quark -o stratum+tcp://lycheebit.com:4033 -u AnNPghpD8Wu83n6MuZX3XHAP7p6XWrDw3g -p c=BRA

    Peers list :



      • addnode=31.128.101.42:17645
      • addnode=93.81.200.188:17645

      Can I get a link for the wallet please[/list]
      full member
      Activity: 378
      Merit: 105
      Hi ! BrazilCoin is available on LycheeBit.
      Happy mining Smiley

      Mining BrazilCoin with quark algo :

      • Stratum  : lycheebit.com:4033
      • User     : YOUR_BRA_ADDRESS
      • Password : c=BRA

      LycheeBit info :


      Mining software :


      Examples of command line :

      • Nvidia   : ccminer.exe -a quark -o stratum+tcp://lycheebit.com:4033 -u AnNPghpD8Wu83n6MuZX3XHAP7p6XWrDw3g -p c=BRA
      • AMD      : sgminer.exe --algorithm quark -o stratum+tcp://lycheebit.com:4033 -u AnNPghpD8Wu83n6MuZX3XHAP7p6XWrDw3g -p c=BRA

      Peers list :

        • addnode=31.128.101.42:17645
        • addnode=93.81.200.188:17645
        newbie
        Activity: 23
        Merit: 0
        This shit is crazy, there was still transactions on this coin b4 coinsmarkets went down.  Been 0.1 sats for ages!!!
        member
        Activity: 105
        Merit: 10
        Wallet will not sync, added nodes and stuck at 47294,  anyone know working nodes or any exchanges yet..? its still mine-able..
        member
        Activity: 196
        Merit: 10
        Servant, your name is chair
        is there a pre mine amount? and wait till some gullible fuck pumps this shit and the dev will be back online like his life depends on it.
        legendary
        Activity: 2688
        Merit: 1030
        Yes I am a pirate, 300 years too late!
        Where is the airdrop of this clone...we need it please! dev make an airdrop!

        Screw the airdrop, how about an exchange!!
        full member
        Activity: 702
        Merit: 102
        I am the Kung Fury...
        Where is the airdrop of this clone...we need it please! dev make an airdrop!
        newbie
        Activity: 39
        Merit: 0
        чтo мoнeтa coвceм  зaгнyлacь? yвeлчтe  cтэйк
        jr. member
        Activity: 101
        Merit: 7
        i think this coin is only scam  Angry
        Pages:
        Jump to: