Bitcoin Forum
April 24, 2024, 10:26:31 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 [3] 4 5 6 »  All
  Print  
Author Topic: [ANN] (SLACK) Econocalypse : 👽 🛸 💰 DobbsCoin v2.0 (QUARK POW/POS+[MN]) 💰🛸👽  (Read 2447 times)
dobbscoin (OP)
Full Member
***
Offline Offline

Activity: 134
Merit: 100

The End Times are Upon Us


View Profile WWW
April 11, 2019, 01:10:32 PM
Last edit: April 13, 2019, 09:46:22 PM by mprep
 #41

Good Morning

Current Networkhps: 568.26 MH/s
Current Difficulty: 15.89856432125089
Current Block: 7249


Just over half way thru PoW
WLLETBUILDERS are looking into and should soon be working on correcting the double listed LOCKED balance issue.




Yea, this coin is completely different.  SLACK is currently a proof of work coin that will become a proofof stake coin in another eight or so days. SLACk also has masternodes, so there'll still be lots of new SLACK created every day for folks who either maintain a SLACK balance or have locked up 10,000 SLACk in what's called a masternode.  We still LOVE "BOB" 'course, it is still in quasi-development.. a new BOB waller could come out any week now (probably not though) and I'll certainly trade you SLACK for "BOB" for SLACK any day.  If you have a VPS or a static IP, I'll even give you a shit ton of BOTh just for the fuck of it, because who gives a shit anyhow. Glad to have re-found you. You're always welcome on FREENODE in #SLACK

Hey Subgenii and DobbsCoin enthusiasts,

I had a DobbsCoin qt wallet back a couple years ago or so. It worked pretty good, but then I had a computer error and lost it (I know, I should have backed up the wallet.dat - live and learn). Makes me wonder how much crypto is out there "lost" - quite a bit, I imagine...

Anyway, I got the old qt wallet working again and synched (v 0.10.1). Is this older version the one to use at present? I don't think the new wallet is ready?

Fun fact: The number of members in the (very quiet) DobbsCoin reddit group is currently 23 - pretty mystical number! If you found this info. useful, I'd appreciate a donation of DobbsCoin, as I'm starting from scratch, and the faucet and SPINGAME are both down, so please PM me if you can help. Thank you, generous ones...and PraBob!
1713954391
Hero Member
*
Offline Offline

Posts: 1713954391

View Profile Personal Message (Offline)

Ignore
1713954391
Reply with quote  #2

1713954391
Report to moderator
1713954391
Hero Member
*
Offline Offline

Posts: 1713954391

View Profile Personal Message (Offline)

Ignore
1713954391
Reply with quote  #2

1713954391
Report to moderator
The forum strives to allow free discussion of any ideas. All policies are built around this principle. This doesn't mean you can post garbage, though: posts should actually contain ideas, and these ideas should be argued reasonably.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713954391
Hero Member
*
Offline Offline

Posts: 1713954391

View Profile Personal Message (Offline)

Ignore
1713954391
Reply with quote  #2

1713954391
Report to moderator
Slonik
Newbie
*
Offline Offline

Activity: 40
Merit: 0


View Profile
April 12, 2019, 06:29:22 AM
 #42

what day will end POW?
skammie
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
April 12, 2019, 03:42:36 PM
 #43

If you've had some trouble getting econocalypse to build from source on Ubuntu Server 18.04.2, these steps worked for me.  I can confirm that the qt wallet works under Xubuntu 18.04.2 in a virtual box using these steps.  This may work for Debian 9.7 or 9.8, Ubuntu Server 18.10, and any of the gui flavors of Ubuntu 18.04.2 or 18.10.  At this time they do not work with Ubuntu 19.04.  Use at your own risk.

1]  Update and upgrade your OS.  Reboot if necessary.
      sudo apt-get update
      sudo apt-get upgrade

2]  Install the required dependencies to build the daemon and cli:
      sudo apt-get install git build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils python3 libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-test-dev libboost-thread-dev libboost-all-dev libboost-program-options-dev libzmq3-dev unzip
   
3]  Install these packages to build the qt wallet.  Optional miniupnpc here as well:
      sudo apt-get install libminiupnpc-dev libzmq3-dev libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler libqrencode-dev
   
4]  For the BerkeleyDB 4.8 package, I followed these instructions to install them from the bitcoin team:
      sudo apt-get install software-properties-common
      sudo add-apt-repository ppa:bitcoin/bitcoin
      sudo apt-get update
      sudo apt-get install libdb4.8-dev libdb4.8++-dev

5]  This part is copied and pasted from the econocalypse daemon build instructions
   Clone the source from git:
      git clone https://github.com/dobbscoin/econocalypse-source
      cd econocalypse-source
      chmod 744 share/genbuild.sh
      chmod 744 src/leveldb/build_detect_platform
      chmod 744 autogen.sh
      
Skip to 6b if you also want to build the qt wallet

6a]  Build the daemon + cli for Ubuntu Server 18.04.2.  Requires at least 2gb of RAM.  See suggested tweak that worked on a VPS with 1gb of RAM.
      ./autogen.sh
      ./configure --with-unsupported-ssl  --without-gui
      make

6b]  If building with a qt wallet, execute these commands:
      ./autogen.sh
      ./configure  --with-unsupported-ssl
      make
      
If you have less than 2gb of RAM, use this option with ./configure.  Make sure you add --with-unsupported-ssl, and --without-gui if you need to.  Make sure there is a space between the last " and the --.  Got it? Grin
   ./configure CXXFLAGS="--param ggc-min-expand=1 --param ggc-min-heapsize=32768"

Now hopefully congratulations are in order after a successful completion of make.  Enjoy some frop or your favorite beverage.

The compiled files will end up in ~/econocalypse-source/src and ~/econocalypse-source/src/qt.  I like to make a directory in my home and then copy the compiled files to the directory I made.
   cd ~
   mkdir econocalypse
   cd econocalypse-source/src
   cp econocalypsed $HOME/econocalypse
   cp econocalypse-cli $HOME/econocalypse

If you also built the qt wallet:
   cd ~/econocalypse-source/src/qt
   cp econocalypse-qt $HOME/econocalypse
   
Now go to the new directory:
   cd ~/econocalypse
   
If running from a VPS, execute the daemon:
Skip if you are running the qt wallet
   ./econocalypsed -daemon -discover -listen -server
   
You may now use ./econocalypse-cli help to find the neat and keen commands to check the wallet. Follow the official guide for setting up a masternode.

If running the qt wallet in X, execute in a terminal:
   ./econocalypse-qt
   
And now "Bob"'s your uncle.
dobbscoin (OP)
Full Member
***
Offline Offline

Activity: 134
Merit: 100

The End Times are Upon Us


View Profile WWW
April 13, 2019, 02:41:28 AM
Last edit: April 13, 2019, 09:46:36 PM by mprep
 #44

what day will end POW?

Mmmmmmm  It started on 3/31.19 and runs for 13013 blocks,
Current Block: 8310, so a little over half way.
So, like...another 10 days - or so..

RU Mining?
RU any good at anything?
Like, can you make web pages?
Do you iRC? 
There's TONS of SLACk available.

YOU CAN MINE BOB - or Trade for it on NOVA, if you can trade on NOVA.
https://bitcointalk.org/index.php?topic=792459
Then BOB TRADE IT FOR SLACK too.



VERY IMPRESSIVE until you try to figure out what the fuck he's talking about.


Quote from: ElectricMucus





It's NOT just me, right?
EndCiv
Member
**
Offline Offline

Activity: 107
Merit: 59

FUCK THE CONSPIRACY


View Profile WWW
April 13, 2019, 05:05:33 AM
Last edit: April 27, 2019, 03:45:14 AM by EndCiv
Merited by cryptodollar (4)
 #45

Quote from: ElectricMucus
It's NOT just me, right?


OH. SO FANCY. SUCH MERIT!! ElectricMucus 4theWin


WHERE DO I SEND THE MONEY?!?

🛸     DEATH TO THE SHITCOINS!!
PRAISE "BOB" - http://www.dobbscoin.info

The_SLACK_Effect
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
April 13, 2019, 08:37:37 PM
 #46

Thanks much.

I may check out FREENODE/#SLACK - I think my IRC skills are still sharp after all these years, let's see: a/s/l? (That's one for the old timers...)

I do see potential for these coins within the Subgenius community, as well as much Slack and fun, of course. Have you thought of an integration with Dobbstown? Maybe members could use the coins to trade there, win them in contests, etc? Also could be used at real world Devivals and such, maybe? Or to pay membership fees, buy books, and things on the Subgenius site (and on the Pleasure Saucers, of course)? Though, I've not heard Stang's ideas on these things (probably likes the "green" paper money better at this point, and who can blame him when it looks closer to frop), maybe you are privy to his opinions? Or maybe I'm just a Slack dreamer...

PraBob!


Yea, this coin is completely different.  SLACK is currently a proof of work coin that will become a proofof stake coin in another eight or so days. SLACk also has masternodes, so there'll still be lots of new SLACK created every day for folks who either maintain a SLACK balance or have locked up 10,000 SLACk in what's called a masternode.  We still LOVE "BOB" 'course, it is still in quasi-development.. a new BOB waller could come out any week now (probably not though) and I'll certainly trade you SLACK for "BOB" for SLACK any day.  If you have a VPS or a static IP, I'll even give you a shit ton of BOTh just for the fuck of it, because who gives a shit anyhow. Glad to have re-found you. You're always welcome on FREENODE in #SLACK


dobbscoin (OP)
Full Member
***
Offline Offline

Activity: 134
Merit: 100

The End Times are Upon Us


View Profile WWW
April 14, 2019, 02:21:28 AM
Last edit: April 20, 2019, 12:08:12 AM by mprep
 #47

Thanks much. I do see potential for these coins within the Subgenius community, as well as much Slack and fun, of course. Have you thought of an integration with Dobbstown? Maybe members could use the coins to trade there, win them in contests, etc? Also could be used at real world Devivals and such, maybe? Or to pay membership fees, buy books, and things on the Subgenius site (and on the Pleasure Saucers, of course)? Though, I've not heard Stang's ideas on these things (probably likes the "green" paper money better at this point ~ ...

PraBob!

Hmmm Yea, Stang & the Gang's been real cool about letting us use the whole meme and such as a base for our educational process, and we did once host a shopping cart which accepted "BOB" Dobbscoin as payment for several things ..membership packages we'd purchased in bulk and re-sold for (BOB), pamphlet 1 & 2 and the like; but it took Philo's input to even get the "church" to look at the project, and as far as accepting crypto by the "Church" goes..  there's not many in the 'in-crowd' who seem to even understand the importance to an alternative to the federal reserve note.. not to mention that NONE of the paper wallets or private keys shared/sent to a handfuk of Heiarachy have been touched.. so I assume that they've either been stored away for the end-times, lost and or destoyed.. I don't know really as the overall acceptance of bitcoin, crypto or Dobbscoin within official message boards (scrubgenius) seems to always be met with distrust, scorn, vitriol or in the least blank stares - Except for a very small handful of "active church chat" folks..

BUT..  Believe you me..   
MAKE DOBBSCOIN WORTH paying attention to and no doubt someone will.   




Hey: WHAT HAPPENED TO THE ECONOCALYPSE DISCORD?

Can't keep going away.. duh doy.
DISCORD: https://discord.gg/spTYs2
So I made a new one and will try and bump privileges when people connect.
EndCiv
Member
**
Offline Offline

Activity: 107
Merit: 59

FUCK THE CONSPIRACY


View Profile WWW
April 14, 2019, 10:47:18 PM
Last edit: April 15, 2019, 12:14:14 AM by EndCiv
 #48

Is this a BUG?  

When I launch the wallet.. it loads as normal.. Everything eventually synchs up.
But when I click on SETTINGS, then OPTIONS, iT LOCKS UP THE WALLET.

It's like it opens into an invisible space and won't let me do anything until I close it, but of course - I can't because I can't see it anywhere.

Is ANYONE else having this issue?


💰🛸👽

🛸     DEATH TO THE SHITCOINS!!
PRAISE "BOB" - http://www.dobbscoin.info

patrykw969
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
April 15, 2019, 07:07:27 AM
 #49

I am unable to join Your discord, can You post invitation link one more time?

I have qt wallet compiled in linux, i don't have this BUG.
dobbscoin (OP)
Full Member
***
Offline Offline

Activity: 134
Merit: 100

The End Times are Upon Us


View Profile WWW
April 15, 2019, 12:09:41 PM
 #50

doh-
https://discord.gg/4TMCUkb


I am unable to join Your discord, can You post invitation link one more time?

I have qt wallet compiled in linux, i don't have this BUG.
bhunter1976
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
April 18, 2019, 02:22:20 PM
 #51

So, what exactly is zSLACK?  I see these micro transactions of usually 0.01 SLACK to a zSLACK balance.  Is this part of the PoS?

I wondered that too.

I found this about zpiv that helps explain zslack. Basically it's what enables the privacy features of the coin. So if you want your transactions to be private you need to be minting zslack. If not you can turn it off: (https://pivx.freshdesk.com/support/solutions/articles/30000026923-automatic-zpiv-minting-and-zpiv-backup-requirements)


https://memegenerator.net/img/instances/48238851/oh-yes-its-very-nice.jpg

But does anyone actually have any that's matured, and spendable?

It appears that in order for them to mature there have to be a specific number of zSLACK minted after yours. Just like with normal block rewards, they don't mature until more are created. So if everyone has their zSLACK automint turned off and no more is being created, then they won't mature. At least that's the way I'm understanding it.

Are we going to have to do anything to stake our SLACK when it switches to POS tomorrow? Is a wallet upgrade going to be needed? Are we going to have to type anything into the console to stake?
rippar
Full Member
***
Offline Offline

Activity: 602
Merit: 105



View Profile
April 18, 2019, 02:29:01 PM
 #52

Please explain this thing: Quark pow/PoS technology what does it mean? I have never heard about this one.
EndCiv
Member
**
Offline Offline

Activity: 107
Merit: 59

FUCK THE CONSPIRACY


View Profile WWW
April 19, 2019, 02:02:41 AM
 #53

QUARK Algorithm that starts out as a Proof of Work coin for 13013 blocks.. then switches to Proof of Stake, offering "interest" on the number of coins idle/staked in the wallet.. like a SLACK savings account.


It also allows you ..rewards you even, to setup a MASTERNODE.. where your one computer will stay online 24/7, acting as a full node with a complete block chain - always synched to the other masternodes.. which, since there's no longer any "WORK" being done, helps ensure/secure the block chain from 51% attack, 'er someshit.

Please explain this thing: Quark pow/PoS technology what does it mean? I have never heard about this one.

Have you got a shell/VPS or a box with a static IP?
It fairly important when operating a masternode, but just leaving the wallet running, with a balance - will still earn staking interest, once the Proof of Work period is over..

Current Networkhps: 273.75 MH/s - Current Difficulty: 10.02629540738758 - Current Block: 12396

PRV. MSG me here, once your wallet is synched up and let's have some fun.
OPEN OFFER - RSVP.

LAST PoW Block is #13013. Won't be long.

🛸     DEATH TO THE SHITCOINS!!
PRAISE "BOB" - http://www.dobbscoin.info

dobbstowncr
Newbie
*
Offline Offline

Activity: 26
Merit: 0


View Profile
April 19, 2019, 10:53:05 AM
 #54

If you've had some trouble getting econocalypse to build from source on Ubuntu Server 18.04.2, these steps worked for me.  I can confirm that the qt wallet works under Xubuntu 18.04.2 in a virtual box using these steps.  This may work for Debian 9.7 or 9.8, Ubuntu Server 18.10, and any of the gui flavors of Ubuntu 18.04.2 or 18.10.  At this time they do not work with Ubuntu 19.04.  Use at your own risk.

This worked like a charm for me with Ubuntu Mate 16.04 & 18.04.  thank you!
skammie
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
April 19, 2019, 11:38:26 AM
 #55

This worked like a charm for me with Ubuntu Mate 16.04 & 18.04.  thank you!

No problem.  I was just having a hell of time of it, and I thought, "I should write this down in case it actually works."  Some of the info I cribbed from the litecoin source compile instructions.  When configure ran with no errors I knew I was cooking with gas.  When make finished with no errors I knew that gas was propane.
bhunter1976
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
April 19, 2019, 11:59:47 PM
 #56

So, am I the only one that seems to be stuck on block 13012? And if so, what do I need to do?
dobbscoin (OP)
Full Member
***
Offline Offline

Activity: 134
Merit: 100

The End Times are Upon Us


View Profile WWW
April 20, 2019, 12:13:38 AM
 #57

So, am I the only one that seems to be stuck on block 13012? And if so, what do I need to do?

Nope, everyone is stranded on 13012 currently..  The NEXT block *would* have been the END of PoW



Please leave things as they are. =p


Quote from: Dev
Welcome to WalletBuilders Support.
Our support is closed from April 13 to April 20.
idolbloglive
Newbie
*
Offline Offline

Activity: 32
Merit: 0


View Profile
April 20, 2019, 02:55:39 AM
 #58

I had put the original discord server up and 3 days ago it was gone from my account. I created the server but somehow someone must have reported it and discord took it down. And the mods here keep deletall my posts
romeshomey
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500


View Profile
April 20, 2019, 07:51:29 AM
Last edit: April 21, 2019, 02:07:18 AM by mprep
 #59

So, am I the only one that seems to be stuck on block 13012? And if so, what do I need to do?

Nope, everyone is stranded on 13012 currently..  The NEXT block *would* have been the END of PoW



Please leave things as they are. =p


Quote from: Dev
Welcome to WalletBuilders Support.
Our support is closed from April 13 to April 20.

I've actually advanced to block 13013 and was able to restart MN (wallet crashed at block 13012 and needed restarted, however I wasn't able to restart the MN after restarting due to error that wallet needed to sync.  After it advanced to block 13013 i was able to restart the MN).



{
  "version": 1000000,
  "protocolversion": 70914,
  "walletversion": 61000,
  "zerocoinbalance": 0.00000000,
  "blocks": 13013,
  "timeoffset": -1,
  "connections": 8,
  "proxy": "",
  "difficulty": 6.027633696338321,
  "testnet": false,
  "moneysupply": 22650523.68628995,
  "zSLACKsupply": {
    "1": 3026.00000000,
    "5": 9675.00000000,
    "10": 19310.00000000,
    "50": 1500.00000000,
    "100": 4500.00000000,
    "500": 3500.00000000,
    "1000": 8000.00000000,
    "5000": 70000.00000000,
    "total": 119511.00000000
  },
  "keypoololdest": 1554529965,
  "keypoolsize": 1001,
  "unlocked_until": 0,
  "paytxfee": 0.00000000,
  "relayfee": 0.00010000,
  "staking status": "Staking Active",
  "errors": ""
}




I only show one peer at block 13013 with me.  All other peers are still at 13012...


    "id": 20,
    "addr": "[2a00:6d40:72:9764::1001]:13013",
    "addrlocal": "[2607:fcc8:f2c4:e200:5caf:1693:e48b:7dcb]:57168",
    "services": "0000000000000005",
    "lastsend": 1555746860,
    "lastrecv": 1555746861,
    "bytessent": 11149,
    "bytesrecv": 9399,
    "conntime": 1555744819,
    "timeoffset": -1,
    "pingtime": 0.126585,
    "version": 70914,
    "subver": "/Econocalypse Core:1.0.0/",
    "inbound": false,
    "startingheight": 13013,
    "banscore": 1,
    "synced_headers": -1,
    "synced_blocks": -1,
    "inflight": [
    ],
    "whitelisted": false

Luci0gabsan
Member
**
Offline Offline

Activity: 133
Merit: 10


View Profile
April 20, 2019, 08:16:57 AM
 #60

addnode=80.211.84.69:13013
addnode=80.211.100.240:13013
addnode=80.211.84.51.100
Theses are my VPS staking nodes. They have 13013 height and staking active, but only few coins ! So that blockchain can not restart.
So that try to charge a desktop wallet using a lot of  coins, delete peers.dat and add this node list in econocalypse.conf. To try to unlock the chain.
I think POW is finished but POS mining is hanged. Only few nodes have 13013 height and stacking active so that POS phase cannot start! The blockchain cannot restart in this condition!
Pages: « 1 2 [3] 4 5 6 »  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!