+- +-

+-User

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+-Stats ezBlock

Members
Total Members: 78
Latest: JuliusWool
New This Month: 0
New This Week: 0
New Today: 0
Stats
Total Posts: 77
Total Topics: 25
Most Online Today: 58
Most Online Ever: 376
(December 09, 2019, 05:28:33 PM)
Users Online
Members: 0
Guests: 38
Total: 38

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - EndCiv

Pages: [1] 2
1
General Banter / Re: Econo-Bot SLACK TipBOB
« on: April 26, 2019, 08:58:30 AM »
complete. all balanced moves and inflated

2
Use the following instructions to mine a block.

Open your wallet, and make sure your wallet is connected with a node.
Your wallet is connected when you see the Dobbshead icon in the lower right corner of your wallet.

The message “No block source available” will disappear once you are connected.

Go to Tools.
Click Debug console.
This is the console where you will execute all commands.

Type this command to start mining your first block:

setgenerate true -1

If you want to use a specific number of CPU cores, instead of -1, type the number of cores.

You can type the following command to see the status of generation.

getmininginfo

It will take about +/- 10 minutes to mine your first block, depending on your computer hardware.

3
Nice and tight..  DO THIS:

Code: [Select]
sudo apt-get update
sudo apt-get upgrade
sudo apt install build-essential libtool autotools-dev automake pkg-config bsdmainutils curl git g++-mingw-w64-x86-64
sudo update-alternatives --config x86_64-w64-mingw32-g++

git clone https://github.com/dobbscoin/dobbscoin-econocalypse.git


cd dobbscoin-econocalypse
cd depends
chmod 744 config.guess
chmod 744 config.sub

make HOST=x86_64-w64-mingw32
cd ..
chmod 744 ./autogen.sh
./autogen.sh
CONFIG_SITE=$PWD/depends/x86_64-w64-mingw32/share/config.site ./configure --prefix=/
chmod 744 share/genbuild.sh
chmod 744 src/leveldb/build_detect_platform
make


SWAP SHIT like this to make other builds..
Quote
Common host-platform-triplets for cross compilation are:
i686-w64-mingw32 for Win32
x86_64-w64-mingw32 for Win64
x86_64-apple-darwin11 for MacOSX
arm-linux-gnueabihf for Linux ARM 32 bit
aarch64-linux-gnu for Linux ARM 64 bit

-Vola

4
Update your machine.

sudo apt-get update
sudo apt-get upgrade


Install the required dependencies.

sudo apt-get install 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
sudo apt-get install libminiupnpc-dev libzmq3-dev libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler libqrencode-dev unzip


Install Berkeley DB from source code.

wget https://download.oracle.com/berkeley-db/db-4.8.30.zip
unzip db-4.8.30.zip
cd db-4.8.30
cd build_unix/
../dist/configure --prefix=/usr/local --enable-cxx
make
sudo make install


Clone the source code from git.

git clone https://github.com/dobbscoin/dobbscoin-econocalypse.git

cd econocalypse
chmod 744 share/genbuild.sh
chmod 744 src/leveldb/build_detect_platform


Building for linux
Execute the following commands to compile the daemon.


chmod 744 autogen.sh
./autogen.sh
./configure --with-unsupported-ssl
make

5
Use the following instructions to setup a masternode for a quark based coin.

Make sure that you have the following requirements.

- The required amount of SLACK to setup the masternode. (10,000)
- A wallet to store your coins.
- A server or VPS.

The instructions are split into three (3) sections.


===='////,===='////,===='////,===='////,====

Setup the control wallet (Part 1 of 2)

Open your wallet and wait until the wallet has downloaded the complete blockchain.

Go to “Tools”.
Click “Debug console”.
This is the console where you will execute all commands.

Create a masternode private key.

masternode genkey

Example output: 75eqvNfaEfkd3YTwQ3hMwyxL2BgNSrqHDgWc6jbUh4Gdtnro2Wo

Show your collateral address.

getaccountaddress "masternode"

Example output: Nad4xtgdwf7c5y45ruy5MWtVY43zYMCvva

Keep note of the masternode private key and the collateral address.


===='////,===='////,===='////,===='////,====

Setup the VPS

Update your VPS machine:
sudo apt-get update
sudo apt-get upgrade


Install the required dependencies.

sudo apt-get install 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
sudo apt-get install libminiupnpc-dev libzmq3-dev libprotobuf-dev protobuf-compiler unzip software-properties-common

To install Berkeley DB from source code.

wget https://download.oracle.com/berkeley-db/db-4.8.30.zip
unzip db-4.8.30.zip
cd db-4.8.30
cd build_unix/
../dist/configure --prefix=/usr/local --enable-cxx
make
sudo make install


And what the fuck is this?
sudo apt-get install dirmngr
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update

Install the coins daemon and tools.
Create the coins config file.

mkdir $HOME/.econocalypse
nano $HOME/.econocalypse/econocalypse.conf

Paste the following lines in econocalypse.conf

############# START
 
rpcuser=rpc_examplecoin  # What are you needed for..
pcpassword=kuw05sqio7bcm8z96o7redv17xws1lw6xpd1qf33
rpcallowip=127.0.0.1

listen=1
server=1
daemon=1
maxconnections=64

masternode=1
masternodeprivkey=REPLACE_WITH_MASTERNODE_PRIVATE_KEY # stuff from 'masternode genkey'
externalip=REPLACE_WITH_EXTERNAL_IP_OF_VPS


############# STOP


Start your node with the following command.

./examplecoind &


===='////,===='////,===='////,===='////,====


Setup the control wallet (Part 2 of 2)

Transfer the required amount of coins to the “collateral address” that you created using the command “getaccountaddress "masternode1"”.

Wait until the transaction has the required masternode confirmations.

Go to Tools.
Click Debug console.

Enter the following command.

masternode outputs

Example output

[
  {
    "txhash": "429a5caf40178d6911ab71e61d6952a6cec8710405d8dc912d8e8a760a2ba24c",
    "outputidx": 1
  }
]



Go to “Tools”.
Click “Open Masternode Configuration File”.

Modify the following line and paste it into notepad.

masternode xxx.xxx.xxx.xxx:xxxx 75eqvNfaEfkd3YTwQ3hMwyxL2BgNSrqHDgWc6jbUh4Gdtnro2Wo 429a5caf40178d6911ab71e61d6952a6cec8710405d8dc912d8e8a760a2ba24c 1

masternode - Alias for your masternode.

xxx.xxx.xxx.xxx - External IP of your VPS.

xxxx - Replace with P2P port of your coin.

75eqvNfaEfkd3YTwQ3hMwyxL2BgNSrqHDgWc6jbUh4Gdtnro2Wo - Masternode private key from the command “masternode genkey”.

429a5caf40178d6911ab71e61d6952a6cec8710405d8dc912d8e8a760a2ba24c - Value “txhash” from the command “masternode outputs”.

1 - Value “outputidx” from the command “masternode outputs”.


Save the file and close editor.

Shutdown your wallet and re-open your wallet.

Go to “Settings”.
Click “Unlock Wallet”, If it was encrypted.

Enter your wallet passphrase and unlock your wallet.

Go to “Tools”.
Click “Debug console”.

Start your masternode using the command.

startmasternode alias false masternode1

It will take +/- 30 minutes to activate your masternode.

6
Coin properties:
Website URL   http://www.dobbscoin.info
Github URL   https://github.com/dobbscoin/dobbscoin-slack
Coin name   Econocalypse
Source branch   0.12
Algorithm   Quark
Block type   Proof-of-Work/Proof-of-Stake
Coin abbreviation   SLACK
Address letter mainnet:   S
Address letter testnet:   T
RPC port   6803
P2P port   6804
Block reward   50 coins
Block reward (PoS)   10 coins
Coin supply   Unlimited coins
Premine amount   21,000,000 coins

Last PoW block   block 10,000
Masternode reward   50%
Masternode amount   10,000 coins
Masternode confirmations   60
Coinbase maturity   60 blocks
Target spacing   1 minutes
Target timespan   2 minutes
Transaction confirmations   10 blocks

Node 1   node1.dobbscoin.info
Node 2   node2.dobbscoin.info

Masternode rewards will start after the last PoW block is mined.
The following is required 260 blocks before the last PoW block is mined.
- Three enabled masternodes. (How do I setup a masternode (Quark)?)
- Four wallets with coins to stake.


7
It's SUPPOSEDLY. Just like PIVX. 
Have ya ever used PIVX?

Ya can STAKE coins and earn interest.
Convert coins into zCoins - so they're Anonymous..
MultiSig ..whatever that means.

All kindsa shit to learn 'eh. FUN.

Coin name: m3gaviral
Coin abbreviation: ENDCIV
RPC port: 6711
P2P port: 6712
Block reward: 50 coins
Block reward (PoS): 50 coins
Coin supply: Unlimited coins

Last PoW block   block 10000
Masternode reward   25%
Masternode amount   1000 coins
Masternode confirmations   15
Coinbase maturity   20 blocks
Target spacing   2 minutes
Target timespan   10 minutes
Transaction confirmations   6 blocks

Seed Node:   node1.fucktheconspiracy.com
NO SOURCE CODE YET..  NO GUI Modifications.

2min Blocks of 50 for the first 10,000 Blocks
30 Blocks an hour x 24hrs in a day = 720 Blocks /day x 50 reward = 36,000 coins/day.
10k Blocks x 2min is 20k minutes.. 1440 minutes in a day /60 for the hour.. is 333 hours
333hrs / 24hrs a day is 13 days... 13 days x 36,000 coins a day.. 468,000 coins in POW
Then 50 coins in something called a POStake block 'er someshit.

I have noooo idea. 
I mean, it seems to do all the shit we wanted..
  • Settlement instrument
  • Interest potential
  • Anonymous if ya want it to be
  • Multi-Sig potential.. allowing for multiple persons to be required to sign off on a transaction,  if ya want.

8
Based on Zerocoin / PIVX a QUARK algo: Proof-of-Work/Proof-of-Stake

This is DISPOSABLE, but please feel free to learn how it works and help move blocks in the mean time. If it succeeds, we'll rebrand it as DobbsCoin, change its ACRONYM and BUY Back BOB.

<endciv> EndCiv's next GEN BOB candidate demo: m3gaViral
<endciv> Based on Zerocoin / PIVX a QUARK algo: Proof-of-Work/Proof-of-Stake
<endciv> https://github.com/EndCiv/m3gaviral/releases/tag/m3gaViral
<Prints> Shocked
<endciv> its just a  RoboCreated Shitcoin upgrade concept
<endciv> but it works and is mining POW blocks NOW

Download: NO SOURCE YET - ROBOT Created Shitcoin / Example
https://github.com/EndCiv/m3gaviral/releases/tag/m3gaViral


Quote from: INSTRUCTION
Open your wallet.
Your wallet is connected when you see the icon Wallet connections Quark in the lower right corner of your wallet. The message “No block source available” will disappear once you mine your first block.

Close your wallet and create the file m3gaviral.conf in the folder “%APPDATA%\m3gaviral\”.
Paste the following text into m3gaviral.conf and save the file.

addnode=node1.fucktheconspiracy.com

Open your wallet.
Go to Tools.
Click Debug console.
This is the console where you will execute all commands.

Type this command to start mining your first block:
setgenerate true -1

If you want to use a specific number of CPU cores, instead of -1, type the number of cores.
You can type the following command to see the status of generation.

getmininginfo

It will take about +/- 10 minutes to mine your first block, depending on your computer hardware.

9
Australian EXPLORER is back up to speed and the chain is the same.
We're all good.

When I head over to the richlist at the official explorer, both romes pool and mining dutch seem to be mining a 'forked' chain.  I remember this happening the official pool twice.

10
Back to the drawing board / Re: Algorithm: Argon2, Scrypt, POS
« on: June 09, 2018, 02:52:12 PM »
How sick would Argon2/POS be? 
The aspect of SOMETHING FOR NOTHING.. that comes with being POS.

Fuck mining all together!

11
I KNEW IT.   HA HA!!
FUCK'EM ME IF YA CAN'T TAKE A JOKE -'amirite?

Wheeeew!!  -Boy. You GOT US  HAAAYRRD!!
J/K I knew all along.   SCAM.
BUT I WANTED TO BELIEVE!!

I wonder who that was after all this time pretendin to be x_static the slacker.


12
General Banter / Re: X-Day 2018
« on: June 06, 2018, 06:12:49 PM »
Only 28 days (684 hours) until X-DAY 2018

13
General Banter / X-Day 2018
« on: June 05, 2018, 09:40:58 PM »
Only 29 days (705 hours) until X-DAY 2018

14
General Banter / 0.10.1 Wallets
« on: June 01, 2018, 06:06:46 PM »
Why did they stop building again?

Was it cos updated server libs / versions.. ?
How come shit isn't backwards compatable..
How come shit doesn't just use the latest libz?

What version will the new wallets be?

15
Back to the drawing board / Re: Algorithm: Argon2, Scrypt, POS
« on: May 31, 2018, 07:15:08 PM »
Yea, earlz rocks. 
     If you didn't have to go on vacation, we'd have been mooned the fuck up & you'da gotten that bitcoin cos we'da been a coinomi instead of schildabok wallet.   

I :HATE: when people dissapear is all.
    Just breakin yer balls mahn, just breakin ya bawlz

Pages: [1] 2

+-Recent Topics

Econo-Bot SLACK TipBOB by EndCiv
April 26, 2019, 08:58:30 AM

The zSLACK issue by BtcBob
April 24, 2019, 08:47:25 AM

How do I setup a masternode (Quark)? by SharonOnelI
April 21, 2019, 05:10:56 PM

🛸 💰 GET (SLACK) NOW - DobbsCoin v2.0 - Econocalypse (QUARK POW/POS+[MN]) 👽 🛸 by BtcBob
March 20, 2019, 05:26:43 PM

Getting started.. First RUN & Mining by EndCiv
March 14, 2019, 08:23:37 PM

How did I cross-compile a wallet for Windows? by EndCiv
March 14, 2019, 05:11:33 PM

How do I compile a daemon for linux by EndCiv
March 08, 2019, 10:22:20 PM

The Rain in Spain by Prints
March 07, 2019, 01:16:23 AM

Dobbscoin v2.0 RC3 QUARK POW/POS+[MN] - The Econocalypse by Prints
March 07, 2019, 01:06:34 AM

Dobbscoin v2.0 RC2 X11 POW+[MN] = SLACK by BtcBob
March 01, 2019, 08:09:30 PM

Powered by EzPortal