Bitcoin Forum
May 04, 2024, 05:29:14 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 »  All
  Print  
Author Topic: [BOUNTY] Aura - full node - network stats - passive income  (Read 1282 times)
youstock (OP)
Copper Member
Jr. Member
*
Offline Offline

Activity: 76
Merit: 1

Tokenized selfhood


View Profile WWW
February 14, 2018, 10:23:03 PM
Last edit: February 27, 2018, 08:18:44 PM by youstock
 #1

Aura Full Node Network Status Bounty

Total bounty amount: 6000 aura
Duration: 6 months
Payouts: every month

The full node network stats bounty enables you to earn some spare aura simply by running a full node on your computer and connecting to the network stats site.  Connecting to the network stats site does involve working with the command line, but it is not too difficult.  Some users have run into network issues and have had to use a different computer to get it to work however, YMMV.

How to participate:
Register your node using this google form https://goo.gl/forms/KJPsQGUTiVWpqqTA2
Check your registration here (may take up to 24 hours to be updated): https://docs.google.com/spreadsheets/d/1RZvsPTcwNeIDSdP5OGjRzi5kEwdZzfKWC4VbUuEai_k/edit?usp=sharing

Follow the instructions below on how to join the network stats.

How rewards are calculated:
The stats website will be monitored multiple times per day, and everyone who is listed when the check occurs will earn 1 stake.  At the end of each month, 1000 aura will be divided evenly between all stake holders.  So, for example, if only 10 people participate, and they all are online the whole month, they will each get 100 aura at the end of the month.

How to join the network stats page:

1. Install Git
Windows: https://git-scm.com/download/win (default settings during install should be fine)
Linux:
Code:
sudo apt-get install git
Mac:
Code:
brew install git

2. Install NodeJS
Windows: https://nodejs.org/en/download/current/
Linux:
Code:
sudo apt-get install node
(or nodejs)
Mac:
Code:
brew install node

The rest of the commands should be run in a command window, terminal, or shell, and should be the same for all platforms (linux users might need to prepend some of these with 'sudo')

3. Install pm2
Code:
npm install -g pm2

4. Start aura with RPC enabled
Download a node for your platform from https://auraledger.com/#download
navigate to your extracted aura download folder and run
Code:
aura -rpc

5. Get the stats project
open a new command window
Code:
git clone https://github.com/AuraLedger/eth-net-intelligence-api.git
Code:
cd eth-net-intelligence-api
Code:
npm install

6. Edit the app.json file in the eth-net-intelligence-api folder, and set the INSTANCE_NAME a unique name
Code:
[
  {
    "name"              : "node-app",
    "script"            : "app.js",
    "log_date_format"   : "YYYY-MM-DD HH:mm Z",
    "merge_logs"        : false,
    "watch"             : false,
    "max_restarts"      : 10,
    "exec_interpreter"  : "node",
    "exec_mode"         : "fork_mode",
    "env":
    {
      "NODE_ENV"        : "production",
      "RPC_HOST"        : "127.0.0.1",
      "RPC_PORT"        : "8545",
      "LISTENING_PORT"  : "30303",
      "INSTANCE_NAME"   : "###PUT YOUR INSTANCE NAME HERE###",
      "CONTACT_DETAILS" : "",
      "WS_SERVER"       : "https://ws.auraledger.com",
      "WS_SECRET"       : "muhsecret",
      "VERBOSITY"       : 2
    }
  }
]


7. start the stats monitor
Code:
pm2 start app.json

8. check your status
Code:
pm2 show 0
Code:
pm2 logs
see if there are any errors

note: a few people have reported a Web3 connection error in the logs, seems to be random, and restarting the entire process might fix it.  Looks like it happens on ethereum too https://github.com/cubedro/eth-net-intelligence-api/issues/226


9. check for your instance to show up at https://stats.auraledger.com (it can take 10-15 minutes)

1714843754
Hero Member
*
Offline Offline

Posts: 1714843754

View Profile Personal Message (Offline)

Ignore
1714843754
Reply with quote  #2

1714843754
Report to moderator
1714843754
Hero Member
*
Offline Offline

Posts: 1714843754

View Profile Personal Message (Offline)

Ignore
1714843754
Reply with quote  #2

1714843754
Report to moderator
1714843754
Hero Member
*
Offline Offline

Posts: 1714843754

View Profile Personal Message (Offline)

Ignore
1714843754
Reply with quote  #2

1714843754
Report to moderator
BitcoinCleanup.com: Learn why Bitcoin isn't bad for the environment
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714843754
Hero Member
*
Offline Offline

Posts: 1714843754

View Profile Personal Message (Offline)

Ignore
1714843754
Reply with quote  #2

1714843754
Report to moderator
1714843754
Hero Member
*
Offline Offline

Posts: 1714843754

View Profile Personal Message (Offline)

Ignore
1714843754
Reply with quote  #2

1714843754
Report to moderator
1714843754
Hero Member
*
Offline Offline

Posts: 1714843754

View Profile Personal Message (Offline)

Ignore
1714843754
Reply with quote  #2

1714843754
Report to moderator
FthrJACK
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
February 15, 2018, 02:26:16 AM
 #2

On it Smiley
fitraok09
Legendary
*
Offline Offline

Activity: 1049
Merit: 1009

TRX: TCRKDukYt2zDie9vJDhToKrP3tyTV29U48


View Profile
February 15, 2018, 06:22:29 AM
 #3

what does port forwarding needed?
Simptonym
Newbie
*
Offline Offline

Activity: 434
Merit: 0


View Profile
February 15, 2018, 09:25:59 AM
Last edit: February 15, 2018, 10:10:22 AM by Simptonym
 #4

I did everything as listed above but my node is still not showing up at https://stats.auraledger.com/. How can I check if I have done something wrong? Node is probably running fine, because i see it is showing in command line, but maybe app.json is not started, because when I try to start it, nothing happens, like how can I know it has started?
gold969
Sr. Member
****
Offline Offline

Activity: 1330
Merit: 251


View Profile
February 15, 2018, 10:32:46 AM
 #5



I started the node, but now I can not run the miner, is it possible that they worked simultaneously?
youstock (OP)
Copper Member
Jr. Member
*
Offline Offline

Activity: 76
Merit: 1

Tokenized selfhood


View Profile WWW
February 15, 2018, 08:38:30 PM
 #6

I did everything as listed above but my node is still not showing up at https://stats.auraledger.com/. How can I check if I have done something wrong? Node is probably running fine, because i see it is showing in command line, but maybe app.json is not started, because when I try to start it, nothing happens, like how can I know it has started?

Try running these commands from the eth-net-intelligence-api folder to see what the problem might be
Code:
pm2 show 0
Code:
pm2 logs

youstock (OP)
Copper Member
Jr. Member
*
Offline Offline

Activity: 76
Merit: 1

Tokenized selfhood


View Profile WWW
February 15, 2018, 08:41:25 PM
 #7



I started the node, but now I can not run the miner, is it possible that they worked simultaneously?

Yes they can run simultaneously.  You should only be running 1 aura node instance though, which you can connect your miners to and the eth-net-intelligence-api daemon

feizy
Newbie
*
Offline Offline

Activity: 76
Merit: 0


View Profile
February 27, 2018, 03:24:33 AM
 #8

do you limit to one node per person?
youstock (OP)
Copper Member
Jr. Member
*
Offline Offline

Activity: 76
Merit: 1

Tokenized selfhood


View Profile WWW
March 02, 2018, 01:36:52 AM
 #9

do you limit to one node per person?

In general yes, but if you want to host another node on a vps, preferably in a region that doesn't currently have many nearby nodes, I'm ok with that.

youstock (OP)
Copper Member
Jr. Member
*
Offline Offline

Activity: 76
Merit: 1

Tokenized selfhood


View Profile WWW
March 02, 2018, 01:38:02 AM
 #10

Bounties have been paid out for February.  Thanks to everyone participating.

FreeHamster
Jr. Member
*
Offline Offline

Activity: 146
Merit: 1


View Profile
March 03, 2018, 04:52:15 AM
 #11

When you set up one of these nodes for the network stats, does it mean that it is doing POW on the computer for the transactions on Aura?

EGEM an exciting community driven project based on Ethereum network. Find out more at discord.egem.io or egem.io
FreeHamster
Jr. Member
*
Offline Offline

Activity: 146
Merit: 1


View Profile
March 04, 2018, 08:36:36 PM
 #12

I have setup the node and it states that it is connected to peers however my node isn't being listed on the stats.auraledger.com website, is there something wrong that I am doing? Currently running it on Ubuntu 16.04.

EGEM an exciting community driven project based on Ethereum network. Find out more at discord.egem.io or egem.io
Daltonik
Legendary
*
Offline Offline

Activity: 2520
Merit: 1490


View Profile
March 11, 2018, 02:03:46 PM
 #13

How many coins do I need to run MN?. Thanks
Esra92
Member
**
Offline Offline

Activity: 364
Merit: 10


View Profile WWW
March 11, 2018, 07:08:02 PM
 #14

when will the distribution done ?

FreeHamster
Jr. Member
*
Offline Offline

Activity: 146
Merit: 1


View Profile
March 15, 2018, 02:57:51 PM
 #15

Looks like it's paid out every month.

EGEM an exciting community driven project based on Ethereum network. Find out more at discord.egem.io or egem.io
zlodey1987
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile WWW
April 22, 2018, 09:42:08 AM
 #16

PM2        | [2018-04-22 12:34:18] PM2 log: App name:Zlodey2387 id:0 online
PM2        | [2018-04-22 12:34:18] PM2 log: App [Zlodey2387] with id
  • and pid [1144], exited with code [1] via signal [SIGINT]
PM2        | [2018-04-22 12:34:18] PM2 log: Starting execution sequence in -fork mode- for app name:Zlodey2387 id:0
PM2        | [2018-04-22 12:34:18] PM2 log: App name:Zlodey2387 id:0 online
PM2        | [2018-04-22 12:34:18] PM2 log: App [Zlodey2387] with id
  • and pid [4168], exited with code [1] via signal [SIGINT]
PM2        | [2018-04-22 12:34:18] PM2 log: Starting execution sequence in -fork mode- for app name:Zlodey2387 id:0
PM2        | [2018-04-22 12:34:18] PM2 log: App name:Zlodey2387 id:0 online
PM2        | [2018-04-22 12:34:19] PM2 log: App [Zlodey2387] with id
  • and pid [424], exited with code [1] via signal [SIGINT]
PM2        | [2018-04-22 12:34:19] PM2 log: Starting execution sequence in -fork mode- for app name:Zlodey2387 id:0
PM2        | [2018-04-22 12:34:19] PM2 log: App name:Zlodey2387 id:0 online
PM2        | [2018-04-22 12:34:19] PM2 log: App [Zlodey2387] with id
  • and pid [6508], exited with code [1] via signal [SIGINT]
PM2        | [2018-04-22 12:34:19] PM2 log: Starting execution sequence in -fork mode- for app name:Zlodey2387 id:0
PM2        | [2018-04-22 12:34:19] PM2 log: App name:Zlodey2387 id:0 online
PM2        | [2018-04-22 12:34:19] PM2 log: App [Zlodey2387] with id
  • and pid [6688], exited with code [1] via signal [SIGINT]
PM2        | [2018-04-22 12:34:19] PM2 log: Script C:\WINDOWS\system32\eth-net-intelligence-api\app.js had too many unstable restarts (10). Stopped. "errored"

C:\Users\Zlodey\.pm2\logs\Zlodey2387-out-0.log last 15 lines:
C:\Users\Zlodey\.pm2\logs\Zlodey2387-error-0.log last 15 lines:
0|Zlodey23 |     at Object.Module._extensions..js (internal/modules/cjs/loader.js:665:10)
0|Zlodey23 |     at Module.load (internal/modules/cjs/loader.js:566:32)
0|Zlodey23 |     at tryModuleLoad (internal/modules/cjs/loader.js:506:12)
0|Zlodey23 |     at Function.Module._load (internal/modules/cjs/loader.js:498:3)
0|Zlodey23 | 2018-04-22 12:34 +03:00: Error: Cannot find module 'chalk'
0|Zlodey23 |     at Function.Module._resolveFilename (internal/modules/cjs/loader.js:548:15)
0|Zlodey23 |     at Function.Module._load (internal/modules/cjs/loader.js:475:25)
0|Zlodey23 |     at Module.require (internal/modules/cjs/loader.js:598:17)
0|Zlodey23 |     at require (internal/modules/cjs/helpers.js:11:18)
0|Zlodey23 |     at Object.<anonymous> (C:\WINDOWS\system32\eth-net-intelligence-api\lib\utils\logger.js:4:13)
0|Zlodey23 |     at Module._compile (internal/modules/cjs/loader.js:654:30)
0|Zlodey23 |     at Object.Module._extensions..js (internal/modules/cjs/loader.js:665:10)
0|Zlodey23 |     at Module.load (internal/modules/cjs/loader.js:566:32)
0|Zlodey23 |     at tryModuleLoad (internal/modules/cjs/loader.js:506:12)
0|Zlodey23 |     at Function.Module._load (internal/modules/cjs/loader.js:498:3)
zlodey1987
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile WWW
April 22, 2018, 09:59:17 AM
 #17

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.0 (node_modules\pm2\node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.0: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})
OrkCrypter
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
May 05, 2018, 12:37:10 PM
 #18

#join
Bitcointalk: OrkCrypter
Telega company: @OrkCrypter
facebook company: https://www.facebook.com/OrkCrypter
twitter company: @OrkCrypter
MafikRysik
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
May 05, 2018, 07:50:09 PM
 #19

#Join
Bitcointalk: MafikRysik
telegram company: @MafikRysik
fb company: @MafikRysik
TWITTER : @MafikRysik
ParashYoY
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
May 12, 2018, 03:15:15 PM
 #20

#join
bitcointalk: ParashYoY
Telegram company: t.me/ParashYoY
Facebook company: @ParashYoY
twitter : @ParashYoY
Pages: [1] 2 »  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!