Pages:
Author

Topic: Belacoin - Supercharging entrepreneurship with the power of the blockchain - page 41. (Read 379780 times)

full member
Activity: 153
Merit: 102
The website update will contain the following additions:
  • Adding a link to get auto-invited to the Belacoin slack
  • A catalog of all the Belacoin cryptocurrency exchanges
  • A lineup of Belacoin mining pools

These additions all serve to lower the barrier to getting involved with Belacoin and should grow the community well. Interested people will easily be able to join the slack to learn more about Belacoin and Belacam. Those who would like to buy Belacoin can now find and choose which exchange they want to use. Those who would like to accumulate Belacoin via mining can now easily browse through the current mining pools.

I think a working wallet should be the first priority.. I have mined thousands of coins to the android wallet, some show up, some don't... I sent 1000 coins to an exchange 2 weeks ago, and they still have not arrived. Why would I want to mine this coin if I cant spend them.. This should be #1
sr. member
Activity: 394
Merit: 252
The website update will contain the following additions:
  • Adding a link to get auto-invited to the Belacoin slack
  • A catalog of all the Belacoin cryptocurrency exchanges
  • A lineup of Belacoin mining pools

These additions all serve to lower the barrier to getting involved with Belacoin and should grow the community well. Interested people will easily be able to join the slack to learn more about Belacoin and Belacam. Those who would like to buy Belacoin can now find and choose which exchange they want to use. Those who would like to accumulate Belacoin via mining can now easily browse through the current mining pools.
hero member
Activity: 768
Merit: 500
I smell Pump and Dump scam here   Cry Cry Cry

Be careful guys  Huh Huh Huh

What about this statement?
hero member
Activity: 546
Merit: 500
Today, Crypto Designers is delivering some new stuff for us to add to the Belacoin.org website. We also continue to work on the wallet, and we're definitely making progress.

Great news BELA.

Lots of development updates....and IM sure BELA will be like the next POT rise.

Good Luck investors Smiley
sr. member
Activity: 394
Merit: 252
Today, Crypto Designers is delivering some new stuff for us to add to the Belacoin.org website. We also continue to work on the wallet, and we're definitely making progress.
sr. member
Activity: 394
Merit: 252
Thanks Graham for all that information. It's a huge help.

Again, anyone who is interested in helping improve the Belacoin wallet, please get in touch with us. You can do the following:
  • Private message us on here
  • Contact us in our slack at Belacoin.herokuapp.com
  • Email us at [email protected]

There is monetary compensation for this work.
newbie
Activity: 30
Merit: 0
full member
Activity: 154
Merit: 100
blla is big scam guyz
legendary
Activity: 2254
Merit: 1278
The current wallets will not open due to a compiling error that was never previously fixed.

Only a trivial set of fixes is needed to handle the changes required by changes in Qt/C++ ...

Code:
diff --git a/BellaCoin-qt.pro b/BellaCoin-qt.pro
index a47f6b6..d63c719 100644
--- a/BellaCoin-qt.pro
+++ b/BellaCoin-qt.pro
@@ -3,11 +3,12 @@ TARGET = BellaCoin-qt
 macx:TARGET = "BellaCoin-Qt"
 VERSION = 1.0.2.0
 INCLUDEPATH += src src/json src/qt
-QT += core gui network
+QT += core gui network widgets
 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
 DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE
 CONFIG += no_include_pwd
 CONFIG += thread
+DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x000000
 
 # for boost 1.37, add -mt to the boost libraries
 # use: qmake BOOST_LIB_SUFFIX=-mt
diff --git a/src/qt/calculator.cpp b/src/qt/calculator.cpp
index d34fbfc..76a0df4 100644
--- a/src/qt/calculator.cpp
+++ b/src/qt/calculator.cpp
@@ -95,6 +95,6 @@ void CalculatorPage::DoHttpGet() {
   QString hashrate = ui->hashrate->text();
   QString final = url + hashrate;
   QByteArray postData;
-  postData.append(hashrate.toAscii());
+  postData.append(hashrate.toLatin1());
   nam->get(QNetworkRequest(QUrl(final)));
 }
diff --git a/src/qt/coincontroldialog.cpp b/src/qt/coincontroldialog.cpp
index 63d8c0f..45c27db 100644
--- a/src/qt/coincontroldialog.cpp
+++ b/src/qt/coincontroldialog.cpp
@@ -96,7 +96,6 @@ CoinControlDialog::CoinControlDialog(QWidget *parent) :
     connect(ui->treeWidget, SIGNAL(itemChanged( QTreeWidgetItem*, int)), this, SLOT(viewItemChanged( QTreeWidgetItem*, int)));
     
     // click on header
-    ui->treeWidget->header()->setClickable(true);
     connect(ui->treeWidget->header(), SIGNAL(sectionClicked(int)), this, SLOT(headerSectionClicked(int)));
     
     // ok button
diff --git a/src/qt/explorerpage.cpp b/src/qt/explorerpage.cpp
index b789833..06b65f8 100644
--- a/src/qt/explorerpage.cpp
+++ b/src/qt/explorerpage.cpp
@@ -95,6 +95,6 @@ void ExplorerPage::DoHttpGet() {
   QString data = ui->dataLine->text();
   QString final = url + data;
   QByteArray postData;
-  postData.append(data.toAscii());
+  postData.append(data.toLatin1());
   nam->get(QNetworkRequest(QUrl(final)));
 }
diff --git a/src/qt/voucherpage.cpp b/src/qt/voucherpage.cpp
index f3b4135..e5232c2 100644
--- a/src/qt/voucherpage.cpp
+++ b/src/qt/voucherpage.cpp
@@ -96,7 +96,7 @@ void VoucherPage::DoHttpGet() {
   QString vouchercode = ui->voucherCode->text();
   QString final = url + uwallet + "&vc=" + vouchercode;
   QByteArray postData;
-  postData.append(uwallet.toAscii());
-  postData.append(vouchercode.toAscii());
+  postData.append(uwallet.toLatin1());
+  postData.append(vouchercode.toLatin1());
   nam->get(QNetworkRequest(QUrl(final)));
 }
diff --git a/src/rpcrawtransaction.cpp b/src/rpcrawtransaction.cpp
index 08ee3f9..ef28af5 100644
--- a/src/rpcrawtransaction.cpp
+++ b/src/rpcrawtransaction.cpp
@@ -239,7 +239,7 @@ Value listunspent(const Array& params, bool fHelp)
             CTxDestination address;
             if (ExtractDestination(pk, address))
             {
-                const CScriptID& hash = boost::get(address);
+                const CScriptID& hash = boost::get(address);
                 CScript redeemScript;
                 if (pwalletMain->GetCScript(hash, redeemScript))
                     entry.push_back(Pair("redeemScript", HexStr(redeemScript.begin(), redeemScript.end())));

(none of the “extra” tabs work because they just open a tab and make an http call on the now-defunct `srv.bellacoin.com`).

It would be reasonably straightforward to switch the current non-functioning web-based block explorer for one that inspects the local blockchain directly. I added it to Slimcoin a while ago:

https://github.com/slimcoin-project/Slimcoin/commit/1f3eff624792958958c0a6adf4c6d85266c0e80b

Or, if you really wanted to push the boat out, you could ad[a|o]pt Mr Spread's significantly-improved block/tx explorer:

https://github.com/spreadcoin/spreadcoin/blob/master/src/qt/blockexplorer.cpp

fwiw.

Cheers

Graham
newbie
Activity: 14
Merit: 0
Wallet's improvements should be done on priority basis as they will be integrated into belacam
sr. member
Activity: 394
Merit: 252
Belacoin Mining Pools
When Belacam comes out, we anticipate a massive increase in demand for Belacoin. Get mining now to prepare for all the Belacoin buyers in the future:

sr. member
Activity: 394
Merit: 252
This week, we will be looking to do wallet work. Since Belacam is ahead of schedule, we will be directing our resources—money, great minds, designers, and programmers—at updating, improving, and relaunching the current Belacoin wallets.

The current wallets will not open due to a compiling error that was never previously fixed. We are looking to work with anyone who has experience and knowledge with making great alt coin wallets. There will be monetary compensation for working with us. If this sounds like you, please private message us here on bitcointalk or join our slack at Belacoin.herokuapp.com.
sr. member
Activity: 394
Merit: 252
@zahidpervez, which is why, once we begin releasing screenshots and videos of our alpha testers using Belacam, and once we can prove away all the skepticism, we should see a massive influx of investors into Belacoin. 1% of the cryptocurrency community is interested in Belacam, 9% is skeptical, and 90% doesn't even know about it yet.

A few weeks down the road when we are able to change those ratios, we anticipate rapid expansion and large increases community support. This skepticism proves that Belacam and Belacoin are still in the very early stages, similar to Steem in April (before it went from a $2 million market cap to a $412 million market cap).

The investors who joined Steem and Steemit in April, before the Steemit project was officially launched, were the ones who made 159x returns, turning 1 bitcoin into 159 back.

For those who trust us now and are on board with the project, we still have a way to go. Next steps are designing the site and then working with a professional videographer to make a commercial of actual site usage. We're going to be proving the skepticism away.
member
Activity: 112
Merit: 10
Thats brings trust on ambiafund what they are doing ..we all know if someone want to create a hype and PnD like CGA and 1CR they don't create a complete new setup like ambiafunds did and another thing scam coins doesn't wait for month in developments ,they create hype and do their work within a week

Up until now, I don't think we have enough elements to assess the legitimacy of The Ambia Fund. We have a website (and social media), a vulgarization pdf, 500 distributed Belas and promises. For me, that's not enough, so I am waiting for the next steps. Of course I am not accusing anyone of anything, just trying to make an objective point (I don't know if objective exists in this universe though Smiley). 
n
This is the right approach ,if we have can't approve the legitimacy and don't have any thing to prove accusations .then we should wait and and let them do what they doing
hero member
Activity: 1344
Merit: 656
Thats brings trust on ambiafund what they are doing ..we all know if someone want to create a hype and PnD like CGA and 1CR they don't create a complete new setup like ambiafunds did and another thing scam coins doesn't wait for month in developments ,they create hype and do their work within a week

Up until now, I don't think we have enough elements to assess the legitimacy of The Ambia Fund. We have a website (and social media), a vulgarization pdf, 500 distributed Belas and promises. For me, that's not enough, so I am waiting for the next steps. Of course I am not accusing anyone of anything, just trying to make an objective point (I don't know if objective exists in this universe though Smiley). 
member
Activity: 112
Merit: 10
Belacam is our inaugural project, meaning we have not worked with a coin before. For you, @weilichesbin, this means that we have never worked with 1CR, CGA, or any other coin besides Belacoin. Furthermore, we have been 100% upfront with what we are doing with Belacoin. The information is entirely public (see http://ambiafund.com/Upload/BellacoinPressReleaseI.pdf), and we have accomplished everything so far that we have said we would.

We are working towards a reputation of credibility. If we were to do anything that would undermine that, the future of The Ambia Fund would be bleak. We are financially incentivized to act in accordance with good ethics and moral duty because it will help us remain a trusted organization years down the road. If we can bring Belacoin and Belacam to a great success, imagine the attention we would be able to bring to our second, third, and fourth investments.

Going forth, we suggest members of this thread simply ignore @weilichesbin. He was removed from the Belacoin slack for cussing at other members, posting a pornographic link, and making similar fraudulent claims about Belacoin (first claiming we're Russians, then claiming we're from Washington state, claiming previous devs want to censor the Belacoin blockchain when blockchains can't be censored, claiming we wanted to pay him to pump Belacoin, and much more). @weilichesbin has demonstrated a complete and total lack of morals, ethics, and credibility.
Thats brings trust on ambiafund what they are doing ..we all know if someone want to create a hype and PnD like CGA and 1CR they don't create a complete new setup like ambiafunds did and another thing scam coins doesn't wait for month in developments ,they create hype and do their work within a week
sr. member
Activity: 394
Merit: 252
View the Belacam roadmap here: http://www.ambiafund.com/Upload/belacamroadmap.pdf

The Belacam site is looking great, and we love the concept. Users will be able to share their photos, and each time they get a "like", they receive Belacoin. Post a photo, get paid. Like a photo, pay the user.
sr. member
Activity: 336
Merit: 252
Weilichesbin has many alter egos on Bitcointalk, slack, telegram, liqui chat etc...

Thomas, nowtom, Because I, titim, je suis liqui.....to name but a few.....

He's a fucking troll.

Give him some of that negative trust already.

Weilichesbin, you are a fucking faggot and I'd love to put my fist through your fucking ugly mug.
sr. member
Activity: 394
Merit: 252
Belacam is our inaugural project, meaning we have not worked with a coin before. For you, @weilichesbin, this means that we have never worked with 1CR, CGA, or any other coin besides Belacoin. Furthermore, we have been 100% upfront with what we are doing with Belacoin. The information is entirely public (see http://ambiafund.com/Upload/BellacoinPressReleaseI.pdf), and we have accomplished everything so far that we have said we would.

We are working towards a reputation of credibility. If we were to do anything that would undermine that, the future of The Ambia Fund would be bleak. We are financially incentivized to act in accordance with good ethics and moral duty because it will help us remain a trusted organization years down the road. If we can bring Belacoin and Belacam to a great success, imagine the attention we would be able to bring to our second, third, and fourth investments.

Going forth, we suggest members of this thread simply ignore @weilichesbin. He was removed from the Belacoin slack for cussing at other members, posting a pornographic link, and making similar fraudulent claims about Belacoin (first claiming we're Russians, then claiming we're from Washington state, claiming previous devs want to censor the Belacoin blockchain when blockchains can't be censored, claiming we wanted to pay him to pump Belacoin, and much more). @weilichesbin has demonstrated a complete and total lack of morals, ethics, and credibility.
hero member
Activity: 1344
Merit: 656
You dont realized that this is scam? Just read about 1CR or CGA Coin. That are the same guys. Same Story new coin.

Can you point out some links please? This'll probably help in understanding your claims. By the way, why don't you and The Ambia Fund give each other a negative trust to settle all this Smiley?
Pages:
Jump to: