Post
Topic
Board Announcements (Altcoins)
Re: [ANN][ROI] ROI Coin | CPU Only Solo Mining Hybrid | 15% POS | 593% Term Deposit
by
DisasterFaster
on 27/04/2018, 15:30:26 UTC
I also TD mostly all my coin, I have over 1 millions now. If one day valuation can reach close to 1$ it will be amazing.

I think realistic figure is about 0.1$ and it still amazingly very good if it can touch this!

It's a very competitive world, but ROI can win, every coins can. It's all about peoples here in the community to Team up for this!

Helping each others to 'grow!'

Wish that this coin will bring us freedom and....  somes happiness! Smiley

  

The odd of roi coin winning in the long run is tough since there are over 3000+ other coins in the market who are also competing to become successful. Not to mention new coins and tokens are added daily to make things worse for a good project like roi coin to shine
 
Roi coin need to offer something of value to become valuable or else its just another shitcoin.

I don't want to be rude but that's the way it is. I know the coin is still in its early stage but we have to speed up or else we will get left behind and never recover. Just look at hodl coin 2year passed and still no value.

I don't want roi coin to become another worthless CPU mining coin.
 

Yes there is a lot of competition and almost every day new coins enter. To make it more difficult CoinMarketCap doesn't easily list new coins any more and exchange listing fees are insanely expensive.

Right now ROI has some road map items coming up that should benefit us.

I know hodl coin is struggling right now but don't rule it out just yet I think it is an awesome coin and it just may surprise you very soon!

Yeah I know. I believe in this project that's why I don't want to see this coin fail. Its just that when I see other new coins are going ahead of us it makes me disappointed that's all. I know about ROI roadmap and yeah it looks promising especially the e commerce in Q3 I hope you guys can complete all objectives on time

As for hodl coin well I have a small amount myself don't know what will happen in future hoping you are right about the 'surprise' part


The dev team is working hard and the ecommerce plugin will be ready ahead of schedule. This is a big deal because it means anybody with a Wordpress Woocommerce E-commerce site can begin accepting ROI coin as a payment. We are also working with some others who are already excited to get this installed and working on their sites.

Check out this code snippet below to get an idea of the work that is in progress...

Code:
class Roi_Gateway extends WC_Payment_Gateway
{
    private $reloadTime = 30000;
    private $discount;
    private $confirmed = false;
    public $roi_daemon;

    function __construct()
    {
        $this->id = "roi_gateway";
        $this->method_title = __("Roicoin Gateway", 'roi_gateway');
        $this->method_description = __("Roicoin Payment Gateway plugin for WooCommerce. You can find more information about this payment gateway on our website. You'll need a daemon online for your address.", 'roi_gateway');
        $this->title = __("Roicoin Gateway", 'roi_gateway');
        $this->version = "1.0";
        //
        $this->icon = apply_filters('woocommerce_offline_icon', '');
        $this->has_fields = false;

        $this->log = new WC_Logger();

        $this->init_form_fields();
        $this->host = $this->get_option('daemon_host');
        $this->port = $this->get_option('daemon_port');
        $this->address = $this->get_option('roi_address');
        $this->username = $this->get_option('username');
        $this->password = $this->get_option('password');
        $this->discount = $this->get_option('discount');

        // After init_settings() is called, you can get the settings and load them into variables, e.g:
        // $this->title = $this->get_option('title' );
        $this->init_settings();

        // Turn these settings into variables we can use
        foreach ($this->settings as $setting_key => $value) {
            $this->$setting_key = $value;
        }