Pages:
Author

Topic: Project Interzone - Blockchain Social Engine - page 17. (Read 84790 times)

member
Activity: 63
Merit: 10
why did the price of interzone dropped like a rock?

Cause dev got money and ran. And mn holders should solve problems with that useless coin.

Because dev is antisocial and don't want to speak with his community.

Dev did not cause price drop.

It is the panic seller.

1. Because of Novaexchange close. All Novaexchange coins experience drop in price
2. Because btc change in price: All alt react to this
3. Because of issue in MN reward: which is now fix.

If Nova is back in April and more exchange trade ITZ and with the new community that believe in ITZ. ITZ will surly moon. This coin is open source
DDL
full member
Activity: 196
Merit: 100
Stipend - The Freelancer's Currency
why did the price of interzone dropped like a rock?

Cause dev got money and ran. And mn holders should solve problems with that useless coin.

Because dev is antisocial and don't want to speak with his community.
member
Activity: 63
Merit: 10
why did the price of interzone dropped like a rock?

Because of BTC change in price. Soon more investment will flow into altcoin. Don't panic sell.

full member
Activity: 420
Merit: 100
why did the price of interzone dropped like a rock?

Cause dev got money and ran. And mn holders should solve problems with that useless coin.
full member
Activity: 504
Merit: 109
why did the price of interzone dropped like a rock?
member
Activity: 63
Merit: 10

some MN configuration manual via vps?

Join Slack channel - https://join.slack.com/t/projectinterzone/shared_invite/MjM1NjYwODk5MTU0LTE1MDQ0NjQ4ODYtYzUwOGI2MjE0ZQ

In pinned posts there is 100% working manual for setting up a VPS interzone masternode.

This is a good opportunity to have Master nodes now. Very cheap how to own a master node. This coin will soon hit 5$.

If you miss DMD and KORE . ITZ opportunity is open for you now.

full member
Activity: 658
Merit: 108

some MN configuration manual via vps?

Join Slack channel - https://join.slack.com/t/projectinterzone/shared_invite/MjM1NjYwODk5MTU0LTE1MDQ0NjQ4ODYtYzUwOGI2MjE0ZQ

In pinned posts there is 100% working manual for setting up a VPS interzone masternode.
newbie
Activity: 22
Merit: 0

some MN configuration manual via vps?
newbie
Activity: 22
Merit: 0

Any step by step how to do the MN?
member
Activity: 63
Merit: 10
There was a wallet update 2 days ago (not mandatory obviously)  Smiley see https://github.com/projectinterzone/ITZ

The admin might not be dead  Grin

Good time to invest in ITZ. the project will moon soon.

full member
Activity: 658
Merit: 108
There was a wallet update 2 days ago (not mandatory obviously)  Smiley see https://github.com/projectinterzone/ITZ

The admin might not be dead  Grin
DDL
full member
Activity: 196
Merit: 100
Stipend - The Freelancer's Currency
Hey Guys i have implement all infos from this coin to ccex and now he say ok for this coin to vote if we vote this coin to this exchanger we have Dollar Markets and the normal Markets

Its a Chance to hold this Coin Allive and if we trade it nice we can answer Coinexchange or other Exchanger


Help with Vote and the Coin dont    !!!DIE!!!

Just to make it complete: You can vote here - https://c-cex.com/?id=vote

Find Interzone in the long list and donate some btc  Wink

I think dev should donate some btc to this voting. It's in his interest to list his coin in some exch.
newbie
Activity: 106
Merit: 0
solo mine posible?
newbie
Activity: 37
Merit: 0
Time to time diff is getting extremely high to have any profit at all, guess we stil have some1  who mine this coin! if  dev  will apper some day we might get chance

Moreover, there are people who are hoarding ITZ in large quantities. I was in top20 ITZ wallets two weeks ago but I have been recently pulled down to ca 70th place in the richlist. Significant changes in richlist are a good sign for Interzone!  Wink
Definately good sign!  Problem of  signatum - most coins were in hands of simple miners, and its  hard to manipulate price, including  pumps and  hypes around the coin. There is still hope (c)
full member
Activity: 136
Merit: 100
i hope your right!

Time to time diff is getting extremely high to have any profit at all, guess we stil have some1  who mine this coin! if  dev  will apper some day we might get chance

Moreover, there are people who are hoarding ITZ in large quantities. I was in top20 ITZ wallets two weeks ago but I have been recently pulled down to ca 70th place in the richlist. Significant changes in richlist are a good sign for Interzone!  Wink
full member
Activity: 149
Merit: 100
Is there a whitepaper for this project?
full member
Activity: 658
Merit: 108
Time to time diff is getting extremely high to have any profit at all, guess we stil have some1  who mine this coin! if  dev  will apper some day we might get chance

Moreover, there are people who are hoarding ITZ in large quantities. I was in top20 ITZ wallets two weeks ago but I have been recently pulled down to ca 70th place in the richlist. Significant changes in richlist are a good sign for Interzone!  Wink
member
Activity: 114
Merit: 10
Is there any positive news on the coin? While not out, is now.
newbie
Activity: 37
Merit: 0
Time to time diff is getting extremely high to have any profit at all, guess we stil have some1  who mine this coin! if  dev  will apper some day we might get chance
member
Activity: 276
Merit: 13
Hi!

I tried to compile the wallet from the source code on github and got some problems on Arch Linux and on debian.
The problem is that both debian and Arch Linux have openssl version 1.1 as default.
The code needs openssl version 1.0.

So I had to install openssl version 1.0 on Arch linux.
I still got problems but after some searching I found the same issue for feathercoin:
https://github.com/FeatherCoin/Feathercoin/issues/177

The workaround was to create a build script as described in the link above:
Code:
export PKG_CONFIG_PATH="/usr/lib/openssl-1.0/pkgconfig" //CHANGE TO OWN OPENSSL PATH
export CXXFLAGS+=" -I/usr/include/openssl-1.0" //CHANGE TO OWN OPENSSL PATH
export LDFLAGS+=" -L/usr/lib/openssl-1.0 -lssl" //CHANGE TO OWN OPENSSL PATH

./autogen.sh
./configure
make -j4

I also got the compiling error described on github when compiling the GUI wallet:
https://github.com/projectinterzone/ITZ/blob/master/doc/build-unix.md
Code:
error: #error "You must build your code with position independent code if Qt was built with -reduce-relocations. " "Compile your code with -fPIC (-fPIE is not enough)."
It is not described correctly how to solve it. They say add -fPIE but that is already in the code. I changed to
Code:
CPPFLAGS="$CPPFLAGS -DBOOST_SPIRIT_THREADSAFE -DHAVE_BUILD_INFO -D__STDC_FORMAT_MACROS -fPIC"

Then I could compile the wallet on Arch Linux end everything works!


On debian I only installed the command line wallet because that machine does not have keyboard or monitor, it is only controlled by text terminal.
Anyway I got the same openssl errors when compiling as I experienced on Arch Linux.
On debian the solution was to install packages libssl1.0-dev and libssl1.02.
Then the compilation was completed without errors and I could install the wallet with
Code:
sudo make install

Hopefully this can help some Linux users. I am going to install a masternode on a Lnux VPS with debian so first I had to install the wallet software on the VPS.
But I also use Linux on my desktop computer (Arch Linux) and I wanted my local wallet on that machine.
Pages:
Jump to: