Bitcoin Forum
April 25, 2024, 03:22:42 PM *
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 »  All
  Print  
Author Topic: [ANN] Resurrection of Sprouts Classic 2% Daily APR Interest, 730% a year  (Read 23088 times)
DZPrince (OP)
Jr. Member
*
Offline Offline

Activity: 116
Merit: 8


View Profile
August 17, 2018, 04:54:16 AM
 #41

Godaddy is having issues right now but I think it should be up by tomorrow hopefully. I'll try to get it the process started tonight though since i have the domain and server already bought. I'll let you know when it's ready with the link

I just downloaded the Sprouts wallet source code to get an understanding of it.  Let me see if I can fix the 1 billion error and increase it to, like, 40 billion.  Also I will change it to be Sprouts Classic to be unique and independent from the failed HF wallet.

You should be able to increase this easily to 200 billion but I think the problem there is that it will require a hardfork of some sort.. I have tried similar before and it does stake but is orphaned every time.

Hi CryptoWiz420,

And this is what I want to prevent is another hard fork.  I just want to bring back Sprouts Classic for the community to benefit and fix any existing problems in the current wallet.  Right now I am having issues compiling now under QT Creator where it is for some reason spitting out an error that it cannot find the optionsdialog.moc file when I build the project.  I read all over the internet to try to find a solution for this and even re-installed QT Creator yesterday.  Let me see when I refresh the project.  I am currently compiling on a MacOS and will install QT Creator on my Windows 10 side to compile there.  I have installed Sourcetree to branch the current sprouts for others that want to pull my current project.
It seems this could be a missing link to some qt library, or something close to this.  Try these links to see if they have a solution:
https://stackoverflow.com/questions/4203122/qt-cannot-find-moc-file
https://askubuntu.com/questions/878130/qt-3-x-not-found-please-set-qt-include-qt-lib-moc-by-hand-on-my-ubuntu14-04
https://www.dash.org/forum/threads/darkcoin-qt-wont-link.1864/
https://stackoverflow.com/questions/15821663/what-is-the-lrt-flag-in-gnu-make



I actually added the following to the .pro file:

DESTDIR = bin
UI_DIR = .

CONFIG(debug, debug|release) {
        TARGET = sproutsclassic
        OBJECTS_DIR = build/sproutsclassic/debug
        MOC_DIR = build/sproutsclassic/debug
}

CONFIG(release, debug|release) {
        TARGET = sproutsclassic
        OBJECTS_DIR = build/sproutsclassic/release
        MOC_DIR = build/sproutsclassic/release
}

and made a slight change to a cpp file complaining about not finding the build.h file.  Now it will build further; however, I get the following error:

Undefined symbols for architecture x86_64:
  "RPCExecutor::reply(int, QString const&)", referenced from:
      RPCExecutor::request(QString const&) in rpcconsole.o
  "vtable for RPCExecutor", referenced from:
      RPCConsole::startExecutor() in rpcconsole.o
  NOTE: a missing vtable usually means the first non-inline virtual member function has no definition.
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [bin/SproutsClassic.app/Contents/MacOS/SproutsClassic] Error 1
00:50:50: The process "/usr/bin/make" exited with code 2.
Error while building/deploying project sprouts (kit: Desktop Qt 5.11.1 clang 64bit)
When executing step "Make"

I am still stumped on this one as I have been doing research online to see what is causing the specific error regarding the RPCExecutor.  Has anyone seen this error before?

Sprouts Classic 2% Daily APR Interest, 730% a year https://bitcointalk.org/index.php?topic=4834 (https://bitcointalk.org/index.php?topic=4834706.0)
1714058562
Hero Member
*
Offline Offline

Posts: 1714058562

View Profile Personal Message (Offline)

Ignore
1714058562
Reply with quote  #2

1714058562
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714058562
Hero Member
*
Offline Offline

Posts: 1714058562

View Profile Personal Message (Offline)

Ignore
1714058562
Reply with quote  #2

1714058562
Report to moderator
DZPrince (OP)
Jr. Member
*
Offline Offline

Activity: 116
Merit: 8


View Profile
August 17, 2018, 05:35:09 AM
 #42

Godaddy is having issues right now but I think it should be up by tomorrow hopefully. I'll try to get it the process started tonight though since i have the domain and server already bought. I'll let you know when it's ready with the link

I just downloaded the Sprouts wallet source code to get an understanding of it.  Let me see if I can fix the 1 billion error and increase it to, like, 40 billion.  Also I will change it to be Sprouts Classic to be unique and independent from the failed HF wallet.

You should be able to increase this easily to 200 billion but I think the problem there is that it will require a hardfork of some sort.. I have tried similar before and it does stake but is orphaned every time.

Hi CryptoWiz420,

And this is what I want to prevent is another hard fork.  I just want to bring back Sprouts Classic for the community to benefit and fix any existing problems in the current wallet.  Right now I am having issues compiling now under QT Creator where it is for some reason spitting out an error that it cannot find the optionsdialog.moc file when I build the project.  I read all over the internet to try to find a solution for this and even re-installed QT Creator yesterday.  Let me see when I refresh the project.  I am currently compiling on a MacOS and will install QT Creator on my Windows 10 side to compile there.  I have installed Sourcetree to branch the current sprouts for others that want to pull my current project.
It seems this could be a missing link to some qt library, or something close to this.  Try these links to see if they have a solution:
https://stackoverflow.com/questions/4203122/qt-cannot-find-moc-file
https://askubuntu.com/questions/878130/qt-3-x-not-found-please-set-qt-include-qt-lib-moc-by-hand-on-my-ubuntu14-04
https://www.dash.org/forum/threads/darkcoin-qt-wont-link.1864/
https://stackoverflow.com/questions/15821663/what-is-the-lrt-flag-in-gnu-make



I actually added the following to the .pro file:

DESTDIR = bin
UI_DIR = .

CONFIG(debug, debug|release) {
        TARGET = sproutsclassic
        OBJECTS_DIR = build/sproutsclassic/debug
        MOC_DIR = build/sproutsclassic/debug
}

CONFIG(release, debug|release) {
        TARGET = sproutsclassic
        OBJECTS_DIR = build/sproutsclassic/release
        MOC_DIR = build/sproutsclassic/release
}

and made a slight change to a cpp file complaining about not finding the build.h file.  Now it will build further; however, I get the following error:

Undefined symbols for architecture x86_64:
  "RPCExecutor::reply(int, QString const&)", referenced from:
      RPCExecutor::request(QString const&) in rpcconsole.o
  "vtable for RPCExecutor", referenced from:
      RPCConsole::startExecutor() in rpcconsole.o
  NOTE: a missing vtable usually means the first non-inline virtual member function has no definition.
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [bin/SproutsClassic.app/Contents/MacOS/SproutsClassic] Error 1
00:50:50: The process "/usr/bin/make" exited with code 2.
Error while building/deploying project sprouts (kit: Desktop Qt 5.11.1 clang 64bit)
When executing step "Make"

I am still stumped on this one as I have been doing research online to see what is causing the specific error regarding the RPCExecutor.  Has anyone seen this error before?

Actually found the issue where in the rpcconsole.cpp the [#include 'rpcconsole.moc'] was commented out.  Now it built successfully.

Sprouts Classic 2% Daily APR Interest, 730% a year https://bitcointalk.org/index.php?topic=4834 (https://bitcointalk.org/index.php?topic=4834706.0)
DZPrince (OP)
Jr. Member
*
Offline Offline

Activity: 116
Merit: 8


View Profile
August 17, 2018, 02:02:17 PM
 #43

Godaddy is having issues right now but I think it should be up by tomorrow hopefully. I'll try to get it the process started tonight though since i have the domain and server already bought. I'll let you know when it's ready with the link

I just downloaded the Sprouts wallet source code to get an understanding of it.  Let me see if I can fix the 1 billion error and increase it to, like, 40 billion.  Also I will change it to be Sprouts Classic to be unique and independent from the failed HF wallet.

You should be able to increase this easily to 200 billion but I think the problem there is that it will require a hardfork of some sort.. I have tried similar before and it does stake but is orphaned every time.

Hi CryptoWiz420,

And this is what I want to prevent is another hard fork.  I just want to bring back Sprouts Classic for the community to benefit and fix any existing problems in the current wallet.  Right now I am having issues compiling now under QT Creator where it is for some reason spitting out an error that it cannot find the optionsdialog.moc file when I build the project.  I read all over the internet to try to find a solution for this and even re-installed QT Creator yesterday.  Let me see when I refresh the project.  I am currently compiling on a MacOS and will install QT Creator on my Windows 10 side to compile there.  I have installed Sourcetree to branch the current sprouts for others that want to pull my current project.
It seems this could be a missing link to some qt library, or something close to this.  Try these links to see if they have a solution:
https://stackoverflow.com/questions/4203122/qt-cannot-find-moc-file
https://askubuntu.com/questions/878130/qt-3-x-not-found-please-set-qt-include-qt-lib-moc-by-hand-on-my-ubuntu14-04
https://www.dash.org/forum/threads/darkcoin-qt-wont-link.1864/
https://stackoverflow.com/questions/15821663/what-is-the-lrt-flag-in-gnu-make



I actually added the following to the .pro file:

DESTDIR = bin
UI_DIR = .

CONFIG(debug, debug|release) {
        TARGET = sproutsclassic
        OBJECTS_DIR = build/sproutsclassic/debug
        MOC_DIR = build/sproutsclassic/debug
}

CONFIG(release, debug|release) {
        TARGET = sproutsclassic
        OBJECTS_DIR = build/sproutsclassic/release
        MOC_DIR = build/sproutsclassic/release
}

and made a slight change to a cpp file complaining about not finding the build.h file.  Now it will build further; however, I get the following error:

Undefined symbols for architecture x86_64:
  "RPCExecutor::reply(int, QString const&)", referenced from:
      RPCExecutor::request(QString const&) in rpcconsole.o
  "vtable for RPCExecutor", referenced from:
      RPCConsole::startExecutor() in rpcconsole.o
  NOTE: a missing vtable usually means the first non-inline virtual member function has no definition.
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [bin/SproutsClassic.app/Contents/MacOS/SproutsClassic] Error 1
00:50:50: The process "/usr/bin/make" exited with code 2.
Error while building/deploying project sprouts (kit: Desktop Qt 5.11.1 clang 64bit)
When executing step "Make"

I am still stumped on this one as I have been doing research online to see what is causing the specific error regarding the RPCExecutor.  Has anyone seen this error before?

Actually found the issue where in the rpcconsole.cpp the [#include 'rpcconsole.moc'] was commented out.  Now it built successfully.

Now what I am investigating on through research on the Internet on the deployment process to add the necessary framework, libraries for the OS (in this case macOS).  Every time I do perform the deploy ‘macdeployqt’ it will deploy; however, when I run the wallet it will always crash.  From reading on the internet this is a known problem with the exact same issue ‘something about image not found within the app contents’ for others and they have released an alternative fix such as ‘macdeployqtplus, macdeployqtfix’.  I have tried the first one but still have the crashing issues.  I did not perform the second one yet.

I tried to compile on Windows with the QT Creator and just receiving errors when compiling about not finding libraries such as DBD. I did not think it would be that difficult and it makes Mac look like a cake walk.

Any Mac developers that would know about the deploy issues?

Sprouts Classic 2% Daily APR Interest, 730% a year https://bitcointalk.org/index.php?topic=4834 (https://bitcointalk.org/index.php?topic=4834706.0)
crypterg13
Full Member
***
Offline Offline

Activity: 183
Merit: 100


View Profile
August 23, 2018, 03:53:28 PM
 #44

Invalid wallet link on website
DZPrince (OP)
Jr. Member
*
Offline Offline

Activity: 116
Merit: 8


View Profile
August 24, 2018, 08:45:21 PM
 #45

Invalid wallet link on website

There will be a new wallet coming out for Sprouts Classic both for Windows and Mac.  A link will be added to the front page once they are released.

Sprouts Classic 2% Daily APR Interest, 730% a year https://bitcointalk.org/index.php?topic=4834 (https://bitcointalk.org/index.php?topic=4834706.0)
DZPrince (OP)
Jr. Member
*
Offline Offline

Activity: 116
Merit: 8


View Profile
August 26, 2018, 04:08:54 AM
 #46

New splash page and about page showing the new Sprouts Classic logo below:

https://file.fm/u/kyp2hv9s

Sprouts Classic 2% Daily APR Interest, 730% a year https://bitcointalk.org/index.php?topic=4834 (https://bitcointalk.org/index.php?topic=4834706.0)
DZPrince (OP)
Jr. Member
*
Offline Offline

Activity: 116
Merit: 8


View Profile
August 29, 2018, 09:54:00 PM
 #47

For those of us who stake and trade Sprouts for a while, but don't keep up on everything in every thread, can you explain the difference between the two Sprouts?


Sprouts Classic gives you a proof of stake reward of 10% after 5 days and an additional 2% every day afterwards.  This is the same as the old Sprouts.  The HF Sprouts have a low reward and they are working to burn them which is not working.  Look at coinmarketcap how much Sprouts lost in value.

Sprouts Classic 2% Daily APR Interest, 730% a year https://bitcointalk.org/index.php?topic=4834 (https://bitcointalk.org/index.php?topic=4834706.0)
Altcoinlover
Hero Member
*****
Offline Offline

Activity: 746
Merit: 500


View Profile
September 01, 2018, 02:20:26 PM
 #48

I guess, as I still have the old wallet (missed the hard fork to new sprout), I will follow this thread to see if the revival is working.

thanks a lot to those take action and investing time, energy and money it helping the coin to revive.


           ███ ███
          ██████
         ████████▄▄▄▄▄▄▄▄
       ███████████████████
     ████████████████████
   █████████████████████
  ██████████████████████
 █████████
█████████
█████████          ▄▄▄▄▄▄▄
█████████         ███████
█████████         ███████
██████████        ███████
 ███████████▄▄▄▄▄▄█v█████
  ███████████████████████
    █████████████████████
      ███████████████████
        ███████████████
          ██████
          ████ ███
▃▃▃▃▃▃▃
enesis










☑ No ICO/Auction.
☑ No pre-mine__--
☑ Fair Launch___-






████████████████████████████
████████████████████████████
██████               ███████
█████                 ██████
████     ███   ███     █████
████     ███   ███     █████
████                   █████
██████   █████████   ███████
████████████████████████████
█████████████████████ ██████
                        ████
                          ██
DISCORD

▄█████████████████████████████▄
████████████████▌ ▄▄▀▀    ▀████
████████████████ █████▄   █████
█████████████▀▀ ▐▀█████████████
███▀▀ ▀▀▀             ▀▀▀¬▀▀███
███        ▄       ▄        ███
███▄      ███     ███      ▄███
████        `              ████
█████      ▄▄     ▄▄      █████
███████▄      ▀▀▀      ▄███████
███████████▄▄▄▄▄▄▄▄▄███████████
███████████████████████████████
REDDIT






POW       
Equihash 192.7
Airdrops & Bounties





WolfTronCoin
Newbie
*
Offline Offline

Activity: 452
Merit: 0


View Profile
September 04, 2018, 10:29:18 PM
 #49

at the end of so much conversation where is the wallet to download Huh?
DZPrince (OP)
Jr. Member
*
Offline Offline

Activity: 116
Merit: 8


View Profile
September 05, 2018, 01:08:45 AM
 #50

at the end of so much conversation where is the wallet to download Huh?

We are working on fixing a few bugs but it will soon be available.  I will be sure to let the community know.

Sprouts Classic 2% Daily APR Interest, 730% a year https://bitcointalk.org/index.php?topic=4834 (https://bitcointalk.org/index.php?topic=4834706.0)
Vinxent
Member
**
Offline Offline

Activity: 266
Merit: 10


View Profile
September 05, 2018, 03:12:05 AM
 #51

we will follow the progress of this project, if all involved are always compact and the spirit to develop this project is certain this project will be a success.
kreatoralex
Hero Member
*****
Offline Offline

Activity: 1257
Merit: 501


View Profile
September 06, 2018, 03:45:41 PM
 #52

at the end of so much conversation where is the wallet to download Huh?

I downloaded from here
https://bitcointalk.org/index.php?topic=3451062.0

meongoan
Newbie
*
Offline Offline

Activity: 75
Merit: 0


View Profile
September 09, 2018, 05:50:59 PM
 #53

Looks like a good project. The idea is clear, the explanation is simple yet very attractive for newcomers and pros alike!
Kirata
Newbie
*
Offline Offline

Activity: 83
Merit: 0


View Profile
September 09, 2018, 07:25:23 PM
 #54

I think you need to do a roadshow, so that your projects are really known to many people
DZPrince (OP)
Jr. Member
*
Offline Offline

Activity: 116
Merit: 8


View Profile
September 10, 2018, 09:04:04 PM
 #55

Update on Sprouts Classic wallet:

- Change to the kernel code as it was not up to date.
- Further testing being performed for the 2 billion max fix

Sprouts Classic 2% Daily APR Interest, 730% a year https://bitcointalk.org/index.php?topic=4834 (https://bitcointalk.org/index.php?topic=4834706.0)
GoldSeal
Legendary
*
Offline Offline

Activity: 1862
Merit: 1002



View Profile
September 13, 2018, 12:12:12 PM
 #56

someone should contact coinexchange.io and tell them that we are releasing a new sprouts classic wallet and urge them to switch back fromthat other sprouts bullshit fork

Moving to Puerto Rico...
DZPrince (OP)
Jr. Member
*
Offline Offline

Activity: 116
Merit: 8


View Profile
September 13, 2018, 07:50:33 PM
 #57

Update:

Sprouts Classic wallet for both Windows and MacOS now available.  Please go to page 1, click on the link to the git source and both files will be available for download under the 'Release' folder.

You will need to add the sprouts.config file in the following directory on Windows:
C:\Users\myname\AppData\Roaming\Sprouts

and on the following directory on the MacOS:

/Users/myname/Library/Application Support/Sprouts

Add the following nodes in the Sprouts.conf file:

addnode=104.248.8.52
addnode=108.41.213.216
addnode=92.230.42.116
addnode=142.112.238.229
addnode=165.227.101.66

Sprouts Classic 2% Daily APR Interest, 730% a year https://bitcointalk.org/index.php?topic=4834 (https://bitcointalk.org/index.php?topic=4834706.0)
DZPrince (OP)
Jr. Member
*
Offline Offline

Activity: 116
Merit: 8


View Profile
September 14, 2018, 01:09:28 AM
 #58

Update:

Sprouts Classic wallet for both Windows and MacOS now available.  Please go to page 1, click on the link to the git source and both files will be available for download under the 'Release' folder.

You will need to add the sprouts.config file in the following directory on Windows:
C:\Users\myname\AppData\Roaming\Sprouts

and on the following directory on the MacOS:

/Users/myname/Library/Application Support/Sprouts

Add the following nodes in the Sprouts.conf file:

addnode=104.248.8.52
addnode=108.41.213.216
addnode=92.230.42.116
addnode=142.112.238.229
addnode=165.227.101.66

2 more:

addnode=77.160.23.113
addnode=77.187.236.127

Sprouts Classic 2% Daily APR Interest, 730% a year https://bitcointalk.org/index.php?topic=4834 (https://bitcointalk.org/index.php?topic=4834706.0)
kreatoralex
Hero Member
*****
Offline Offline

Activity: 1257
Merit: 501


View Profile
September 14, 2018, 06:28:43 AM
 #59

From the old wallet me need to transfer the coins to a new wallet?

michnkeks
Member
**
Offline Offline

Activity: 157
Merit: 63


View Profile
September 14, 2018, 06:59:32 AM
 #60

awesome news ! new win wallet works . now you can have bigger tansactions then 2 Billion Sprouts .
Pages: « 1 2 [3] 4 5 6 7 8 9 10 11 12 13 14 »  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!