Search content
Sort by

Showing 16 of 16 results by Enkrypto_Storm
Post
Topic
Board Project Development
Re: Had a cool project idea, also looking for devs
by
Enkrypto_Storm
on 23/10/2017, 11:08:52 UTC
New upcoming darknet market?  Grin
If that were the case, I'd be posting this one a monero forrum lol
Post
Topic
Board Project Development
Re: Had a cool project idea, also looking for devs
by
Enkrypto_Storm
on 23/10/2017, 04:21:05 UTC
add me on skype, I am interested on this project "Modern Market" . rjbtc2017
Thank you for your interest,
Sent a contact request.
Post
Topic
Board Project Development
Had a cool project idea, also looking for devs
by
Enkrypto_Storm
on 22/10/2017, 21:53:12 UTC
https://imgur.com/a/wlA56
A few other people and myself had a cool idea for a Bitcoin use-case project that I am calling "Modern Market." I don't want to disclose sensitive information about the project at the moment, but I am looking for other skilled people out there who are interested in getting involved in a blockchain project (web developers, programmers, anybody with blockchain-related experience, etc). So if you're interested in getting involved, PM me and we can talk.
Post
Topic
Board Marketplace (Altcoins)
Re: Will pay 500 USD in LTC to fork Litecoin codebase
by
Enkrypto_Storm
on 09/10/2017, 19:10:33 UTC
OP has no idea how to change the specs, dude Ł is based on BTC and like other few thousands of clones will never compete with Bitcoin. you don't even know how to change a few lines of code and yet you are here looking for a new coin. I wonder what will be the name of this new shitcoin? shitlitecoin is better with such a dev. lol

I'm actually very versed in C++, and I have created my own cryptocurrency, compiled windows wallets, etc.

Issue is, my experience is based on the old 2014 codebase. The new codebase is a far more complicated, complex animal. It is outside the scope of my development skills, and it's much harder to fork than "changing a few lines of code." I recommend you give it a shot and see for yourself.
Post
Topic
Board Marketplace (Altcoins)
Will pay 500 USD in LTC to fork Litecoin codebase
by
Enkrypto_Storm
on 09/10/2017, 16:31:23 UTC
I need a fork of the relatively newer releases of the Litecoin codebase, with my specifications. Changes include:
  • Cryptocurrency name (obviously)
  • Retarget times
  • Block times
  • Block reward
  • Max supply
  • Premine block on block 2
  • Etc.
As the title states, I will pay anybody 500 USD in LTC who is willing to do this for me. Please PM me if interested, and I'll give you more details.
Post
Topic
Board Altcoin Discussion
Compile issues with coin
by
Enkrypto_Storm
on 09/10/2017, 06:00:45 UTC
I'm trying to add a pre-mine block to a coin I'm creating for fun, as shown below:

Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
    int64 nSubsidy = 500 * COIN;
+   if(nHeight == 2)
    {
+       nSubsidy = 2000 * COIN;
+   }
    // Subsidy is cut in half every 840000 blocks, which will occur approximate$
    nSubsidy >>= (nHeight / 840000); // Funbuck: 840k blocks in ~4 years

    return nSubsidy + nFees;
}
However, when I attempt to compile
Quote
(make -f makefile.unix USE_UPNP=-)
the following error is returned:
Code:
main.cpp: In function ‘int64 GetBlockValue(int, int64)’:
main.cpp:1091:5: error: expected primary-expression before ‘if’
 +   if(nHeight == 2)
     ^
main.cpp:1091:5: error: expected ‘;’ before ‘if’
make: *** [obj/main.o] Error 1

What am I doing wrong?
Post
Topic
Board Altcoin Discussion
Need help creating windows wallet
by
Enkrypto_Storm
on 09/10/2017, 01:30:42 UTC
I made a quick fork of litecoin, changed it up a bit, and successfully created an altcoin to toy around with. Problem is, when I try to run the command:

Code:
sudo bin/gbuild ..funbucks/contrib/guidian-descriptors/deps-win32.yml
(funbucks being the name of the currency, lol)

I get the output:
Code:
************* WARNING: kvm not loaded, this will probably not work out

/usr/lib/ruby/1.9.1/psych.rb:297:in `initialize': No such file or directory - ..funbucks/contrib/guidian-descriptors/deps-win32.yml (Errno::ENOENT)
from /usr/lib/ruby/1.9.1/psych.rb:297:in `open'
from /usr/lib/ruby/1.9.1/psych.rb:297:in `load_file'
from bin/gbuild:201:in `
'

I know that the kvm not loaded warning must be due to the fact that I don't have hardware acceleration enabled, but what concerns me is the "No such file or directory" part. I've run the command
Code:
sudo apt-get install apache2 git apt-cacher-ng python-vm-builder qemu-kvm ruby qemu-utils
so ruby must be installed.

What am I doing wrong?

Edit: After going through the GUI, I did find a file in /usr/lib/ruby/1.91/psych called psych.rb. Why is the terminal telling me that this directory does not exist?

Edit 2: After double checking, it appears that I can only navigate to this directory using the GUI. The 'ruby' folder doesn't come up in the terminal. Wtf?
Post
Topic
Board Marketplace (Altcoins)
I'll pay someone 250 USD in LTC to fork the newest LTC codebase
by
Enkrypto_Storm
on 08/10/2017, 03:42:05 UTC
I can fork the old 2014 codebase, but the new codebase is a bitch.

To qualify for the 250 USD in LTC reward, you must fork it according to my specifications. Please PM me for further details
Post
Topic
Board Marketplace (Altcoins)
Looking for Developers
by
Enkrypto_Storm
on 06/10/2017, 02:26:48 UTC
(Sorry if this post doesn't belong here)

A small team and I are currently developing an idea that we are really excited about, unfortunately I can't go into details, as we have yet to announce our project.

However, as we near our Pre-sale date, we want to start recruiting more personnel to help us develop our product. We currently have a prototype in the works, but we'd like to bring some more, experienced developers into the mix to speed up the process. We are very confident in our idea, and are looking for passionate developers to help us accomplish our dream.

Developers we are looking for include: Blockchain engineers, web developers, iOS developers, Android developers, software engineers, and networking engineers.

All developers hired at this point would be paid in funds from our pre-sale and ICO according to our fund distribution model for our pre-sale + ICO. Nobody on team currently has nor will take any sort of payment until after our project is completely bankrolled. As far as funds go for getting our pre-sale and ICO ready, we are set.

If you're interested, PM me and we can talk from there.
Post
Topic
Board Altcoin Discussion
Good guides for cloning your own cryptocurrency?
by
Enkrypto_Storm
on 07/08/2017, 04:39:13 UTC
I wanted to clone a cryptocurrency for fun, but a lot of the guides I'm finding are severely outdated. To follow them, I'd have to fork a three year old version of Litecoin so that files like main.cpp haven't been replaced by chainparams.cpp yet. Does anybody know of any recent guides?
Post
Topic
Board Altcoin Discussion
Having trouble with forking a coin
by
Enkrypto_Storm
on 07/08/2017, 03:43:07 UTC
I'm trying to fork a coin (for fun of course), and to compile the wallet, the directions I am given are as follows:

We now need to change the dependency directory locations

# Dependency library locations can be customized with:
#   BOOST_INCLUDE_PATH, BOOST_LIB_PATH, BDB_INCLUDE_PATH,
#   BDB_LIB_PATH, OPENSSL_INCLUDE_PATH and OPENSSL_LIB_PATH respectively

OBJECTS_DIR = build
MOC_DIR = build
UI_DIR = build

to

# Dependency library locations can be customized with:
#   BOOST_INCLUDE_PATH, BOOST_LIB_PATH, BDB_INCLUDE_PATH,
#   BDB_LIB_PATH, OPENSSL_INCLUDE_PATH and OPENSSL_LIB_PATH respectively
BOOST_LIB_SUFFIX=-mgw49-mt-s-1_55
BOOST_INCLUDE_PATH=C:/deps/boost_1_55_0
BOOST_LIB_PATH=C:/deps/boost_1_55_0/stage/lib
BDB_INCLUDE_PATH=C:/deps/db-4.8.30.NC/build_unix
BDB_LIB_PATH=C:/deps/db-4.8.30.NC/build_unix
OPENSSL_INCLUDE_PATH=C:/deps/openssl-1.0.1j/include
OPENSSL_LIB_PATH=C:/deps/openssl-1.0.1j
MINIUPNPC_INCLUDE_PATH=C:/deps/
MINIUPNPC_LIB_PATH=C:/deps/miniupnpc
QRENCODE_INCLUDE_PATH=C:/deps/qrencode-3.4.4
QRENCODE_LIB_PATH=C:/deps/qrencode-3.4.4/.libs
OBJECTS_DIR = build
MOC_DIR = build
UI_DIR = build

and comment out the genleveldb command

genleveldb.commands = cd $$PWD/src/leveldb && CC=$$QMAKE_CC CXX=$$QMAKE_CXX $(MAKE) OPT=\"$$QMAKE_CXXFLAGS

to

#genleveldb.commands = cd $$PWD/src/leveldb && CC=$$QMAKE_CC CXX=$$QMAKE_CXX $(MAKE) OPT=\"$$QMAKE_CXXFLAGS

and add the flags for a static build.

Add

CONFIG += static
to

CONFIG += thread
CONFIG += static

and

win32:QMAKE_LFLAGS *= -Wl,--large-address-aware

to

win32:QMAKE_LFLAGS *= -Wl,--large-address-aware  -static


The issue I am having is that the version I am trying to fork has the bitcoin-qt.pro file in a contrib folder, and the file has much different contents than described by the instructions. I tried looking through the commit history of Litecoin to see if I could find when the old file was deleted and when the new bitcoin-qt.pro was created, but couldn't find anything.

Does anybody know how I can translate these instructions to work with the updated version?
Post
Topic
Board Speculation (Altcoins)
Re: Bitcoin Cash - hold or dump?
by
Enkrypto_Storm
on 06/08/2017, 05:23:36 UTC
Such problems must be solved immediately!
Who has bitcoin and wants of its growth. Must first Bitcoin Cash to sell on the exchange.

Make it yourself and tell your friends!!
A sharp drop in prices. Will lead to the fact that the miners of this chain is shut off.
In coordinated attack the currency can be a few hours to kill.

This will lead to a multiple increase in the price of bitcoin!

If you're referring to the recent malleability attacks against Bitcoin Cash, those are more of a nuisance affecting an individual than they are subject of a critical bug.
Post
Topic
Board Altcoin Discussion
Re: BitcoinCash is dead
by
Enkrypto_Storm
on 06/08/2017, 01:59:30 UTC
Saying within 4 days that Bitcoin Cash is dead when it's actual been surprisingly stable at it's current price is a bit of a rushed opinion.
Post
Topic
Board Altcoin Discussion
Re: [HOWTO] compile altcoin for windows on linux using mxe and mingw
by
Enkrypto_Storm
on 06/08/2017, 01:50:33 UTC
It's kind of funny that the file you named your username after no longer exist in the Bitcoin source code. Ever since main.h and main.cpp were sort of replaced (I guess?) by chainparams.cpp/chainparams.h, I don't think anyone's written a decent guide on how to fork Bitcoin to make an altcoin for fun.
Post
Topic
Board Speculation (Altcoins)
Re: Is Ethereum best for investment?
by
Enkrypto_Storm
on 05/08/2017, 23:07:11 UTC
ETH doesn't currently sit well with me, since it is developed by a Company instead of a community, which gives Vitalik Buterin a very large amount of power in how the coin's development process goes. That's just my opinion, of course.
Post
Topic
Board Altcoin Discussion
Re: Bitcoin vs Bitcoin Cash
by
Enkrypto_Storm
on 05/08/2017, 22:56:54 UTC
I've been seeing a lot of misconceptions about both Bitcoin Core and Bitcoin Cash, so I'd like to explain the differences in the most unbiased way I possibly can to help those out who don't quite understand:

Bitcoin Cash was forked from Bitcoin Core because it's developers disagreed with the upcoming addition of Segregated Witness 2x (SegWit2x). There are many concerns regarding SegWit2x, including signatures are separated, transactions are taken off the chain, etc. However, the biggest concern with SegWit is that it has changed Bitcoin's direction. Instead of Bitcoin on the track to becoming an everyday currency, SegWit puts it on a track to become a sort of 'settlement layer'. This means that Bitcoin Core could end up being primarily used to settle net transfers between banks. Many people oppose this, hence the creation of Bitcoin Cash, which tries to stick with the path set by Satoshi's original vision.

However, the bigger picture as to why many feel that a fork is necessary is because of Blockstream's influence over the Bitcoin Core development team, which has lead to mass censorship and a smaller voice of the community. 

Bitcoin Cash does, of course, have plenty of problems as well. The lack of mining support by bigger bitcoin mining companies means that it currently has a vulnerable infrastructure, although this could easily change in the future. What doesn't look like it will change any time soon, however, will be how Bitcoin Cash is more vulnerable to a malleability attack. SegWit removes the malleability of transactions, giving Bitcoin Core an edge. However, at the end of the day, malleability attacks affect a small amount of individuals, and are more of a nuisance than a very serious vulnerability.

I did say that I would be as unbiased as possible, however, you could probably tell from this post that I lean towards Bitcoin Cash a bit more than I do Bitcoin Core.