Author

Topic: [old thread] - RISE | DPOS | APPS & DAPPS - page 449. (Read 653328 times)

hero member
Activity: 661
Merit: 500
I can no longer access my Rise ICO account... apparently 2fa is now active and I do not have the key generator?... Who wants to assist me with this because Emailing the Rise team themselves has proven fruitless.

Someone should respond so I dont have to continuously bombard the thread with requests... please

Edit: its to damn bad the slack requires an invite.... or i would get in there and ask
hero member
Activity: 1274
Merit: 646
@Darkoth89, How can we vote for you? You seem to be a reliable person  Wink


Thanks means alot!

Give me 2 minutes and i'll post a detailed guide!

hero member
Activity: 661
Merit: 500
I can no longer access my Rise ICO account... apparently 2fa is now active and I do not have the key generator?... Who wants to assist me with this because Emailing the Rise team themselves has proven fruitless.
legendary
Activity: 1120
Merit: 1000
@Darkoth89, How can we vote for you? You seem to be a reliable person  Wink

I will vote for him too... person that knows what he is doing for sure Wink
legendary
Activity: 1120
Merit: 1000
I've just noticed a mistake in the code above, Placebo, do you mind requoting my post as I have fixed it.

It showed

Code:
server {
    listen 80;

    server_name [b]example.com[/b];

    location / {
        proxy_pass http://localhost:7000;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection 'upgrade';
        proxy_set_header Host $host;
        proxy_cache_bypass $http_upgrade;
    }
}

Which won't work as it has HTML code for bold around example.com.

It should be:

Code:
server {
    listen 80;

    server_name example.com;

    location / {
        proxy_pass http://localhost:7000;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection 'upgrade';
        proxy_set_header Host $host;
        proxy_cache_bypass $http_upgrade;
    }
}

I remove it and post it back Cheesy
legendary
Activity: 1120
Merit: 1000

Announcement - Delegate Darkoth89.

What is DPOS?
The difference between a regular PoS system and a DPoS system can be compared to the difference between direct democracy and representative democracy. In regular proof of stake every wallet which contains coins is able to ‘stake’ – which means to participate in process of validating transactions and forming the distributed consensus and to earn coins in return.  In a Delegated Proof of Stake system every wallet which contains coins is able to vote for delegates, and it is these delegates (101 in the Bitshares implementation) who perform the function of validating transactions and maintaining the blockchain and take the transaction fees as profit.

In depth source.

Why vote for me?

I believe in the RISE project and securing the blockchain though different geographically located nodes, not making a quick buck. I have been actively involved in node testing (first person to host a rise node) and am also the first person to host a testnet delegate. Hop into slack and I am active most of the time if you need advise or want to talk about the project.


What I am offering.
Voting for me will ensure the security, stability and safety of the RISE blockchain.  I will be hosting nodes in the following major locations:

London  - www.risenode.tk
New York - www.rise-ny.tk
Amsterdam - www.rise-amster.tk
San Fransico - www.rise-sanfran.tk
Singapore - www.rise-sing.tk
Frankfurt - www.rise-frank.tk
Toronto - www.rise-toronto.tk
Bangalore - www.rise-banga.tk

Feel free to test my current node at www.risenode.tk

All nodes will be secured with DDOS protection and SSL.

What do you get for voting for me?
As well as the above nodes in major locations, I will also be offering the following campaigns to give back to the community.

POV - Proof of Vote.
All community members who vote for me with earn a share each month in the RISE forged by my node.  This will be posted monthly to the thread along with earnings so it is transparent and everyone can see.  To take part, vote for me on the main net at launch, send a screenshot as proof along with your balance to the email provided at launch to be added to the POV stake holders.  

Stakes will be decided using the following algorithm:  Forged allowance / total RISE in votes * your share.  Example:

The forged stake share amount is 5000 RISE.  The total RISE in votes is 250,000.  Each share will be worth 0.02 RISE.  You voted with 27,000 RISE, you receive a total amount of 540 RISE.

Signature Campaign
Much like with the RISE signature campaign, I will be hosting a Delegate signature campaign.  Stakes will depend on member rank, with high ranking members earning more shares.  Further details including the signatures will come when maint launches.

Example of distribution:

The forged stake share amount is 5000 RISE.  28 people take part in the campaign with a total of 128 shares.    Each share will be worth 39 RISE (rounded down) which will be evenly split depending on member rank.

This will be traceable in a google spreadsheet nearer the time, and much like with voting monthly payouts will be posted in the thread.



TL;DR?
Nodes hosted in all major geographical locations secured with anti DDOS and SSL.
Proof of Vote stakes
Signature campaign
Strong believer in the project

Not a Scrooge McDuck.





Want to setup your own node?

Justin has updated the code to include fixes for the Blockchain issue I found in testing.

Run the following updated code on a fresh droplet / VM:

  
Code:
curl https://rise.vision/cdn/RiseInstaller.sh > RiseInstaller.sh && bash RiseInstaller.sh

Have a domain and want to get ride of the need to use www.yourdomain.tk:7000? Install Ngix and edit the config file using the following code:

If you have just installed the node, skip this update step as it does it automatically in the script.

Code:
sudo apt-get update

Install nginx

Code:
sudo apt-get install nginx

The config file will be in the following location /etc/nginx/sites-available/default I suggest using WinSCP for easier editing.

Replace all the contents with the following, and change 'example.com' for your domain.

Code:
server {
    listen 80;

    server_name example.com;

    location / {
        proxy_pass http://localhost:7000;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection 'upgrade';
        proxy_set_header Host $host;
        proxy_cache_bypass $http_upgrade;
    }
}


Restart nginx
Code:
sudo service nginx restart

(This will be packaged into the main script on launch and will not be required)

Browse to your domain and you should be presented with the RISE login page!







Really nice work
sr. member
Activity: 420
Merit: 250
Proof-of-Asset Protocol
@Darkoth89, How can we vote for you? You seem to be a reliable person  Wink
hero member
Activity: 1274
Merit: 646
I've just noticed a mistake in the code above, Placebo, do you mind requoting my post as I have fixed it.

It showed

Code:
server {
    listen 80;

    server_name [b]example.com[/b];

    location / {
        proxy_pass http://localhost:7000;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection 'upgrade';
        proxy_set_header Host $host;
        proxy_cache_bypass $http_upgrade;
    }
}

Which won't work as it has HTML code for bold around example.com.

It should be:

Code:
server {
    listen 80;

    server_name example.com;

    location / {
        proxy_pass http://localhost:7000;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection 'upgrade';
        proxy_set_header Host $host;
        proxy_cache_bypass $http_upgrade;
    }
}
hero member
Activity: 1274
Merit: 646
Rise wallet already exists?

Not yet but should be available soon  Wink

how much will it cost the Rise? at the start. there are the forecasts?

I don't think anyone can know.  The current price is ฿ 0.00000899, I can see this hitting ฿ 0.00001000 easy by the 24th.  From then, it's anyone's guess, it depends on the marketing and the demand.  From what I've seen of the changes and plans for the future I see good things for RISE.


Also, yes it does.

Visit the official test wallet at testnet.rise.vision

Or feel free to use mine: www.risenode.tk
full member
Activity: 238
Merit: 100
Rise wallet already exists?

Not yet but should be available soon  Wink

how much will it cost the Rise? at the start. there are the forecasts?
hero member
Activity: 661
Merit: 500
Excited to see the release happen. Hopefully on time too!
sr. member
Activity: 420
Merit: 250
Proof-of-Asset Protocol
Rise wallet already exists?

Not yet but should be available soon  Wink
full member
Activity: 238
Merit: 100
Rise wallet already exists?
sr. member
Activity: 448
Merit: 250
Yeah, i think communication is key, whats happened with waves is a shit storm, people are raging because the exchanges haven't listed it yet lol  
And they wanted to dump hard them all to get into RISE
how we know that the same thing won't happen to rise too?

Can't change the direction of the wind, people will do what people do. As for the devs, a few NDAs before launch, similiar to what Lisk did with Polo, would be great.

If devs aren't in direct communcation with Polo, it'd ask the Lisk team for a mutual introduction.

I agree with this one. RISE marketing needs to step up as well

This would address some of the issues Waves is currently experiencing. Hopefully the RiseDevs respond to this request.
sr. member
Activity: 1078
Merit: 310
I just sent a mail to Microsoft and asked them if they want to implement rise as their default company crypto coin. Will do the same with Facebook later today...

This is a very good idea. Contacting big companies like MS and Facebook will be a game changer for RISE

A good initiative. Hopefully one of those company's will adopt RISE as their default company crypto coin.
sr. member
Activity: 420
Merit: 250
Proof-of-Asset Protocol
Yeah, i think communication is key, whats happened with waves is a shit storm, people are raging because the exchanges haven't listed it yet lol  
And they wanted to dump hard them all to get into RISE
how we know that the same thing won't happen to rise too?

Can't change the direction of the wind, people will do what people do. As for the devs, a few NDAs before launch, similiar to what Lisk did with Polo, would be great.

If devs aren't in direct communcation with Polo, it'd ask the Lisk team for a mutual introduction.

I agree with this one. RISE marketing needs to step up as well
sr. member
Activity: 448
Merit: 250
Yeah, i think communication is key, whats happened with waves is a shit storm, people are raging because the exchanges haven't listed it yet lol  
And they wanted to dump hard them all to get into RISE
how we know that the same thing won't happen to rise too?

Can't change the direction of the wind, people will do what people do. As for the devs, a few NDAs before launch, similiar to what Lisk did with Polo, would be great.

If devs aren't in direct communcation with Polo, it'd ask the Lisk team for a mutual introduction.
sr. member
Activity: 420
Merit: 250
Proof-of-Asset Protocol
I just sent a mail to Microsoft and asked them if they want to implement rise as their default company crypto coin. Will do the same with Facebook later today...

This is a very good idea. Contacting big companies like MS and Facebook will be a game changer for RISE
member
Activity: 812
Merit: 10
https://hovr.site/
Yeah, i think communication is key, whats happened with waves is a shit storm, people are raging because the exchanges haven't listed it yet lol 
And they wanted to dump hard them all to get into RISE
how we know that the same thing won't happen to rise too?
hero member
Activity: 815
Merit: 500
which language will be used for smart contracts?

You will be able to build smart contracts in any language supported by our SDKs, you will also have the option to use a Drag and Drop WYSIWYG builder to create smart contracts. This will be launched a couple of months after the ICO.

We need to finish the hosting platform first, then we will start on the SDKs. I'm aiming to have the hosting platform completed shortly after launch.


This is great news, the Drag and Drop WYSIWYG builder could be a game changer Grin
Jump to: