Bitcoin Forum
May 03, 2024, 06:45:03 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 [67] 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 ... 152 »
  Print  
Author Topic: [ANN]INNOVA - We strive for innovation and adoption! | Hybrid Tribus coin  (Read 154372 times)
thienytcc88
Member
**
Offline Offline

Activity: 167
Merit: 10


View Profile
November 08, 2017, 01:48:46 AM
 #1321

wow an interesting project. This coin name related in a famous brand car in Japan, can i ask using this coin to buy innova car?
1714718703
Hero Member
*
Offline Offline

Posts: 1714718703

View Profile Personal Message (Offline)

Ignore
1714718703
Reply with quote  #2

1714718703
Report to moderator
1714718703
Hero Member
*
Offline Offline

Posts: 1714718703

View Profile Personal Message (Offline)

Ignore
1714718703
Reply with quote  #2

1714718703
Report to moderator
1714718703
Hero Member
*
Offline Offline

Posts: 1714718703

View Profile Personal Message (Offline)

Ignore
1714718703
Reply with quote  #2

1714718703
Report to moderator
Even in the event that an attacker gains more than 50% of the network's computational power, only transactions sent by the attacker could be reversed or double-spent. The network would not be destroyed.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714718703
Hero Member
*
Offline Offline

Posts: 1714718703

View Profile Personal Message (Offline)

Ignore
1714718703
Reply with quote  #2

1714718703
Report to moderator
1714718703
Hero Member
*
Offline Offline

Posts: 1714718703

View Profile Personal Message (Offline)

Ignore
1714718703
Reply with quote  #2

1714718703
Report to moderator
1714718703
Hero Member
*
Offline Offline

Posts: 1714718703

View Profile Personal Message (Offline)

Ignore
1714718703
Reply with quote  #2

1714718703
Report to moderator
TheCryptoPope
Newbie
*
Offline Offline

Activity: 46
Merit: 0


View Profile
November 08, 2017, 02:00:27 AM
 #1322

Here is how I setup Masternode on Ubuntu VPS. Hope it is helpful

# For Ubuntu 14.04 64-bit VPS. Assumes you have all the latest dependencies installed.
# fyi, I followed vivo linux guide to install dependencies

# download latest code from git
cd ~
git clone https://github.com/innovacoin/innova.git

# Install files
cd ~/innova/
./autogen.sh
./configure --without-gui
make
sudo make install

# start the daemon and let the wallet sync - this may take few minutes. periodically run 'getinfo' command and check 'blocks' parameter.
# That number should be increasing. You can find the current blockcount from block explorer link on page 1
innovad --daemon
innova-cli getinfo

# Get wallet address and masternode private key. Save both keys in a text file for future use
innova-cli getaccountaddress 0
innova-cli masternode genkey
              
# Stop the daemon and edit the .conf file
innova-cli stop
nano ~/.innovacore/innova.conf

# Add the following lines to innova.conf file
masternode=1
masternodeprivkey=<Your Masternode Private Key>

# Restat the daemon. Send exactly 1000 Innova to the wallet address that you saved in the previous step.
# Wait for 15 confirmations. This may take few mintues. Periodically check with 'listtransactions'.
# From 'listtransactions', also find the 'txid' and save it for future use
innovad --daemon
innova-cli getinfo
innova-cli listtransactions

# After 15+ confirmations
innova-cli masternode start

# To confirm if the Masternode is running. Masternode status may show PRE-ENABLED for a short period and then should say ENABLED
innova-cli masternode list | grep <Your txid>

# other commands for status
innova-cli masternode status
innova-cli getwalletinfo



Hi,

I'm getting an error when executing ./autogen.sh;
It's responding this: ./autogen.sh: 9: ./autogen.sh: autoreconf: not found

If anyone can help it's much appreciated

EDIT: solved by executing apt-get dh-autoreconf

how many RAM is necessary to execute make? I've updated my VPs to 1gb and still not possible. Is 2 gb enough?
bluelight123
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
November 08, 2017, 02:23:39 AM
 #1323

Here is how I setup Masternode on Ubuntu VPS. Hope it is helpful

# For Ubuntu 14.04 64-bit VPS. Assumes you have all the latest dependencies installed.
# fyi, I followed vivo linux guide to install dependencies

# download latest code from git
cd ~
git clone https://github.com/innovacoin/innova.git

# Install files
cd ~/innova/
./autogen.sh
./configure --without-gui
make
sudo make install

# start the daemon and let the wallet sync - this may take few minutes. periodically run 'getinfo' command and check 'blocks' parameter.
# That number should be increasing. You can find the current blockcount from block explorer link on page 1
innovad --daemon
innova-cli getinfo

# Get wallet address and masternode private key. Save both keys in a text file for future use
innova-cli getaccountaddress 0
innova-cli masternode genkey
              
# Stop the daemon and edit the .conf file
innova-cli stop
nano ~/.innovacore/innova.conf

# Add the following lines to innova.conf file
masternode=1
masternodeprivkey=<Your Masternode Private Key>

# Restat the daemon. Send exactly 1000 Innova to the wallet address that you saved in the previous step.
# Wait for 15 confirmations. This may take few mintues. Periodically check with 'listtransactions'.
# From 'listtransactions', also find the 'txid' and save it for future use
innovad --daemon
innova-cli getinfo
innova-cli listtransactions

# After 15+ confirmations
innova-cli masternode start

# To confirm if the Masternode is running. Masternode status may show PRE-ENABLED for a short period and then should say ENABLED
innova-cli masternode list | grep <Your txid>

# other commands for status
innova-cli masternode status
innova-cli getwalletinfo



Hi,

I'm getting an error when executing ./autogen.sh;
It's responding this: ./autogen.sh: 9: ./autogen.sh: autoreconf: not found

If anyone can help it's much appreciated

EDIT: solved by executing apt-get dh-autoreconf

how many RAM is necessary to execute make? I've updated my VPs to 1gb and still not possible. Is 2 gb enough?

I have 1GB memory. I setup 2GB swap file. No memory errors yet
bluelight123
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
November 08, 2017, 02:42:58 AM
 #1324

Here is how I setup Masternode on Ubuntu VPS. Hope it is helpful

# For Ubuntu 14.04 64-bit VPS. Assumes you have all the latest dependencies installed.
# fyi, I followed vivo linux guide to install dependencies

# download latest code from git
cd ~
git clone https://github.com/innovacoin/innova.git

# Install files
cd ~/innova/
./autogen.sh
./configure --without-gui
make
sudo make install

# start the daemon and let the wallet sync - this may take few minutes. periodically run 'getinfo' command and check 'blocks' parameter.
# That number should be increasing. You can find the current blockcount from block explorer link on page 1
innovad --daemon
innova-cli getinfo

# Get wallet address and masternode private key. Save both keys in a text file for future use
innova-cli getaccountaddress 0
innova-cli masternode genkey
              
# Stop the daemon and edit the .conf file
innova-cli stop
nano ~/.innovacore/innova.conf

# Add the following lines to innova.conf file
masternode=1
masternodeprivkey=<Your Masternode Private Key>

# Restat the daemon. Send exactly 1000 Innova to the wallet address that you saved in the previous step.
# Wait for 15 confirmations. This may take few mintues. Periodically check with 'listtransactions'.
# From 'listtransactions', also find the 'txid' and save it for future use
innovad --daemon
innova-cli getinfo
innova-cli listtransactions

# After 15+ confirmations
innova-cli masternode start

# To confirm if the Masternode is running. Masternode status may show PRE-ENABLED for a short period and then should say ENABLED
innova-cli masternode list | grep <Your txid>

# other commands for status
innova-cli masternode status
innova-cli getwalletinfo



Hi,

I'm getting an error when executing ./autogen.sh;
It's responding this: ./autogen.sh: 9: ./autogen.sh: autoreconf: not found

If anyone can help it's much appreciated

EDIT: solved by executing apt-get dh-autoreconf

Hello. You have to install the dependencies. https://github.com/innovacoin/innova/blob/master/doc/build-unix.md#dependency-build-instructions-ubuntu--debian

Thanks, that got me past that part, but now when I get to this part:  

eeeeeeeeeeeee# Install files
cd ~/innova/
./autogen.sh
./configure --without-gui
make
sudo make install

after I do the ./configure --without-gui everything is fine but then when i  execute "sudo make install" it says "No rule to make target 'install'. Stop."
Clearly I am not super familiar with linux and its probably another dependency, so all the help is certainly appreciated!

EDIT: also, at the end of the ./configure command it says this: "configure: Error: pkg-config not found."  

If that is helpful

It seems you don'tt hve pk-cinfig
apt-get install pkg-config
iphmpmt
Newbie
*
Offline Offline

Activity: 134
Merit: 0


View Profile
November 08, 2017, 03:21:47 AM
 #1325

hi all,

Are there available plans or news from developers about signature campaigns and / or airdrops for INNOVA community? I dont have rigs, so I really hope that we gonna have those campaigns in the future. If yes, I will join it for sure.

Additionally, we need to be officially listed on coinmarketcap.com.

Thanks.
Blockmunch
Member
**
Offline Offline

Activity: 728
Merit: 19


View Profile WWW
November 08, 2017, 04:44:48 AM
 #1326

BlockMunch.CLUB has added INNOVA to it's Multi-Pool!  Only 0.25% Fee's!
0% fee until 11/14/17!
We are now a Multi-Pool!  We mine the most profitable coin always, and maximize your return!

Choose your payout style.  We pay out in this coin, BTC, and any coin we currently have listed on the pool!

Example Config is Below for INNOVA Pay:
Code:
-a neoscrypt -o stratum+tcp://blockmunch.club:4233 -u iGjRTkgzyvEWX9skAC7AKGaYD1ZPuARGmD -p c=INNOVA 

Example Config Below for BTC Pay
Code:
-a neoscrypt -o stratum+tcp://blockmunch.club:4233 -u 1JFx3fE462vMsTeYkNK5yvdWeg2wpmxvBD -p c=BTC 

Block Explorer Link:
Code:
blockmunch.club/explorer/INNOVA

Peer List:
Code:
blockmunch.club/site/peers?id=1973

Welcome to the Block Munch Club!


BlockMasters.co - Auto-Exchange Multi Pool! | Pool Discord: https://discord.gg/RNnVAB4 | Pool bitcointalk forum: https://bitcointalk.org/index.php?topic=2362982.0 | Pool twitter: https://twitter.com/BlockMunchClub
tuandl
Newbie
*
Offline Offline

Activity: 97
Merit: 0


View Profile
November 08, 2017, 05:05:16 AM
 #1327

hi all,

Are there available plans or news from developers about signature campaigns and / or airdrops for INNOVA community? I dont have rigs, so I really hope that we gonna have those campaigns in the future. If yes, I will join it for sure.

Additionally, we need to be officially listed on coinmarketcap.com.

Thanks.

how about signature bounty?
DeepTerrfici
Full Member
***
Offline Offline

Activity: 275
Merit: 100


Data Collecting Textile Circuitry


View Profile
November 08, 2017, 05:11:19 AM
 #1328

hi all,

Are there available plans or news from developers about signature campaigns and / or airdrops for INNOVA community? I dont have rigs, so I really hope that we gonna have those campaigns in the future. If yes, I will join it for sure.

Additionally, we need to be officially listed on coinmarketcap.com.

Thanks.

how about signature bounty?

that would be awesome. i'm loving this coin

CharM1nG
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
November 08, 2017, 05:57:06 AM
 #1329

https://www.cryptopia.co.nz/Exchange/?market=INN_BTC
firesec
Full Member
***
Offline Offline

Activity: 182
Merit: 104


Knowledge must be free !


View Profile
November 08, 2017, 06:52:08 AM
 #1330


BOOOM !!!

Bitcoin address for donations:  3EfLoRWJwrXnep29drmhT19aPJcdqszswK
BitByata
Member
**
Offline Offline

Activity: 222
Merit: 10


View Profile
November 08, 2017, 07:16:02 AM
 #1331

Hello, What is the maximum number of coins to be mined?
Danil_k
Member
**
Offline Offline

Activity: 205
Merit: 10


View Profile
November 08, 2017, 07:58:14 AM
 #1332

Looks like a great project, so many positive buzz about your project.I'll join dev and Goodluck!
Ferminer
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
November 08, 2017, 08:32:42 AM
 #1333

now needs a listing on https://coinmarketcap.com!

saimoooon
Member
**
Offline Offline

Activity: 260
Merit: 10


View Profile
November 08, 2017, 08:42:45 AM
 #1334

Good luck with the launch and pre-sale.  
stavros87
Newbie
*
Offline Offline

Activity: 30
Merit: 0


View Profile
November 08, 2017, 09:06:19 AM
 #1335

is there a masternode setup guide for windows?
taychoibattu
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
November 08, 2017, 09:08:04 AM
 #1336

Will we have signature campaigns for INNOVA? It looks like a potential project. Thanks devs for your great works till now.
firesec
Full Member
***
Offline Offline

Activity: 182
Merit: 104


Knowledge must be free !


View Profile
November 08, 2017, 10:28:02 AM
 #1337

And on which exchanges this is coin is?

https://www.cryptopia.co.nz/Exchange/?market=INN_BTC

Bitcoin address for donations:  3EfLoRWJwrXnep29drmhT19aPJcdqszswK
BitcoinStuff (OP)
Sr. Member
****
Offline Offline

Activity: 333
Merit: 250



View Profile
November 08, 2017, 11:35:48 AM
 #1338

TWITTER GIVEAWAY round 2!
Win a Masternode (1000 INN Coins worth 3800$)!
All you have to do is: Like, Follow and Retweet! ( end date: 15/11/17)
Tweet link. https://twitter.com/InnovaCoin/status/928223032522526720

BitcoinStuff (OP)
Sr. Member
****
Offline Offline

Activity: 333
Merit: 250



View Profile
November 08, 2017, 11:37:11 AM
 #1339

I see people reserving translations... can I reserve Spanish language translation?
Hello. We already have a Spanish thread. Thank you.

stavros87
Newbie
*
Offline Offline

Activity: 30
Merit: 0


View Profile
November 08, 2017, 12:06:03 PM
 #1340

i want to buy a masternode but really need to know if there is a guide for windows first.
Pages: « 1 ... 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 [67] 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 ... 152 »
  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!