Bitcoin Forum

Alternate cryptocurrencies => Announcements (Altcoins) => Topic started by: SHALARIBA on November 05, 2018, 04:54:43 PM



Title: [ANN][JJX] JuJx.io - new generation trading platform
Post by: SHALARIBA on November 05, 2018, 04:54:43 PM
BITCOINTALK(RUS) (https://bitcointalk.org/index.php?topic=5063932)

WebSite (https://jujx.io)|Smart Contract (https://etherscan.io/address/0x2a6c1D918e79090856c66eee5c62672fa4f01C2B) |Ethplorer.io (https://ethplorer.io/address/0x2a6c1D918e79090856c66eee5c62672fa4f01C2B) |Telegram Chanel (https://t.me/JuJxio) |Telegram Chat (https://t.me/joinchat/KACFWVIxbsl3g1A_DNJoaQ) |SCmonit (https://scmonit.com/address/0x2a6c1D918e79090856c66eee5c62672fa4f01C2B) |Twitter (https://jujx.io) |Golos.io (https://golos.io)

http://ipic.su/img/img7/fs/jx1.1541436678.png
http://ipic.su/img/img7/fs/jx2.1541436571.png (https://youtu.be/wNdomFVPpJo)
http://ipic.su/img/img7/fs/jx3.1541436583.png
http://ipic.su/img/img7/fs/jx4.1541436594.png

Code:
pragma solidity ^0.4.25;

/*
* https://jujx.io
*
* JuJx China token concept
*
* [✓] 5% Withdraw fee
* [✓] 12% Deposit fee
* [✓] 1% Token transfer
* [✓] 50% Referal link - 68, 16, 16
*
*/

contract JujxToken {

    modifier onlyBagholders {
        require(myTokens() > 0);
        _;
    }

    modifier onlyStronghands {
        require(myDividends(true) > 0);
        _;
    }

    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    event onTokenPurchase(
        address indexed customerAddress,
        uint256 incomingEthereum,
        uint256 tokensMinted,
        address indexed referredBy,
        uint timestamp,
        uint256 price
);

    event onTokenSell(
        address indexed customerAddress,
        uint256 tokensBurned,
        uint256 ethereumEarned,
        uint timestamp,
        uint256 price
);

    event onReinvestment(
        address indexed customerAddress,
        uint256 ethereumReinvested,
        uint256 tokensMinted
);

    event onWithdraw(
        address indexed customerAddress,
        uint256 ethereumWithdrawn
);

    event Transfer(
        address indexed from,
        address indexed to,
        uint256 tokens
);

    string public name = "Jujx China Token";
    string public symbol = "JJX";
    uint8 constant public decimals = 18;
    uint8 constant internal entryFee_ = 12;
    uint8 constant internal transferFee_ = 1;
    uint8 constant internal exitFee_ = 5;
    uint8 constant internal refferalFee_ = 25;
    uint8 constant internal refPercFee1 = 68;
    uint8 constant internal refPercFee2 = 16;
    uint8 constant internal refPercFee3 = 16;
    uint256 constant internal tokenPriceInitial_ = 0.0000001 ether;
    uint256 constant internal tokenPriceIncremental_ = 0.00000001 ether;
    uint256 constant internal magnitude = 2 ** 64;
    uint256 public stakingRequirement = 50e18;
    mapping(address => uint256) internal tokenBalanceLedger_;
    mapping(address => uint256) internal referralBalance_;
    mapping(address => int256) internal payoutsTo_;
    mapping(address => address) internal refer;
    uint256 internal tokenSupply_;
    uint256 internal profitPerShare_;
    address public owner;

    constructor() public {
        owner = msg.sender;
    }

    function buy(address _referredBy) public payable returns (uint256) {
        purchaseTokens(msg.value, _referredBy);
    }

    function() payable public {
        purchaseTokens(msg.value, 0x0);
    }

    function reinvest() onlyStronghands public {
        uint256 _dividends = myDividends(false);
        address _customerAddress = msg.sender;
        payoutsTo_[_customerAddress] +=  (int256) (_dividends * magnitude);
        _dividends += referralBalance_[_customerAddress];
        referralBalance_[_customerAddress] = 0;
        uint256 _tokens = purchaseTokens(_dividends, 0x0);
        emit onReinvestment(_customerAddress, _dividends, _tokens);
    }

    function exit() public {
        address _customerAddress = msg.sender;
        uint256 _tokens = tokenBalanceLedger_[_customerAddress];
        if (_tokens > 0) sell(_tokens);
        withdraw();
    }

    function withdraw() onlyStronghands public {
        address _customerAddress = msg.sender;
        uint256 _dividends = myDividends(false);
        payoutsTo_[_customerAddress] += (int256) (_dividends * magnitude);
        _dividends += referralBalance_[_customerAddress];
        referralBalance_[_customerAddress] = 0;
        _customerAddress.transfer(_dividends);
        emit onWithdraw(_customerAddress, _dividends);
    }

    function sell(uint256 _amountOfTokens) onlyBagholders public {
        address _customerAddress = msg.sender;
        require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]);
        uint256 _tokens = _amountOfTokens;

        if(_customerAddress != owner) {
            uint ownTokens = SafeMath.div(_tokens, 100);
            tokenBalanceLedger_[owner] = SafeMath.add(tokenBalanceLedger_[owner], ownTokens);
            _tokens = SafeMath.sub(_tokens, ownTokens);
        }

        uint256 _ethereum = tokensToEthereum_(_tokens);
        uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, exitFee_), 100);
        uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends);

        tokenSupply_ = SafeMath.sub(tokenSupply_, _tokens);
        tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _amountOfTokens);

        int256 _updatedPayouts = (int256) (profitPerShare_ * _tokens + (_taxedEthereum * magnitude));
        payoutsTo_[_customerAddress] -= _updatedPayouts;

        if (tokenSupply_ > 0) {
            profitPerShare_ = SafeMath.add(profitPerShare_, (_dividends * magnitude) / tokenSupply_);
        }
        emit onTokenSell(_customerAddress, _tokens, _taxedEthereum, now, buyPrice());
    }

    function transfer(address _toAddress, uint256 _amountOfTokens) onlyBagholders public returns (bool) {
        address _customerAddress = msg.sender;
        require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]);

        if (myDividends(true) > 0) {
            withdraw();
        }

        uint256 _tokenFee = SafeMath.div(SafeMath.mul(_amountOfTokens, transferFee_), 100);
        uint256 _taxedTokens = SafeMath.sub(_amountOfTokens, _tokenFee);

        tokenBalanceLedger_[owner] = SafeMath.add(tokenBalanceLedger_[owner], _tokenFee);
        tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _amountOfTokens);
        tokenBalanceLedger_[_toAddress] = SafeMath.add(tokenBalanceLedger_[_toAddress], _taxedTokens);
        payoutsTo_[_customerAddress] -= (int256) (profitPerShare_ * _amountOfTokens);
        payoutsTo_[_toAddress] += (int256) (profitPerShare_ * _taxedTokens);

        emit Transfer(_customerAddress, _toAddress, _taxedTokens);
        return true;
    }


    function totalEthereumBalance() public view returns (uint256) {
        return this.balance;
    }

    function totalSupply() public view returns (uint256) {
        return tokenSupply_;
    }

    function myTokens() public view returns (uint256) {
        address _customerAddress = msg.sender;
        return balanceOf(_customerAddress);
    }

    function myDividends(bool _includeReferralBonus) public view returns (uint256) {
        address _customerAddress = msg.sender;
        return _includeReferralBonus ? dividendsOf(_customerAddress) + referralBalance_[_customerAddress] : dividendsOf(_customerAddress) ;
    }

    function balanceOf(address _customerAddress) public view returns (uint256) {
        return tokenBalanceLedger_[_customerAddress];
    }

    function dividendsOf(address _customerAddress) public view returns (uint256) {
        return (uint256) ((int256) (profitPerShare_ * tokenBalanceLedger_[_customerAddress]) - payoutsTo_[_customerAddress]) / magnitude;
    }

    function sellPrice() public view returns (uint256) {
        // our calculation relies on the token supply, so we need supply. Doh.
        if (tokenSupply_ == 0) {
            return tokenPriceInitial_ - tokenPriceIncremental_;
        } else {
            uint256 _ethereum = tokensToEthereum_(1e18);
            uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, exitFee_), 100);
            uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends);

            return _taxedEthereum;
        }
    }

    function buyPrice() public view returns (uint256) {
        if (tokenSupply_ == 0) {
            return tokenPriceInitial_ + tokenPriceIncremental_;
        } else {
            uint256 _ethereum = tokensToEthereum_(1e18);
            uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, entryFee_), 100);
            uint256 _taxedEthereum = SafeMath.add(_ethereum, _dividends);

            return _taxedEthereum;
        }
    }

    function calculateTokensReceived(uint256 _ethereumToSpend) public view returns (uint256) {
        uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereumToSpend, entryFee_), 100);
        uint256 _taxedEthereum = SafeMath.sub(_ethereumToSpend, _dividends);
        uint256 _amountOfTokens = ethereumToTokens(_taxedEthereum);

        return _amountOfTokens;
    }

    function calculateEthereumReceived(uint256 _tokensToSell) public view returns (uint256) {
        require(_tokensToSell <= tokenSupply_);
        uint256 _ethereum = tokensToEthereum_(_tokensToSell);
        uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, exitFee_), 100);
        uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends);
        return _taxedEthereum;
    }


    function purchaseTokens(uint256 _incomingEthereum, address _referredBy) internal returns (uint256) {
        address _customerAddress = msg.sender;
        uint256 _undivDividends = SafeMath.div(SafeMath.mul(_incomingEthereum, entryFee_), 100);
        uint256 _referralBonus = SafeMath.div(SafeMath.mul(_undivDividends, refferalFee_), 100);
        _undivDividends = SafeMath.div(SafeMath.mul(_incomingEthereum, (entryFee_-1)), 100);
        uint256 _dividends = SafeMath.sub(_undivDividends, _referralBonus);
        uint256 _taxedEthereum = SafeMath.sub(_incomingEthereum, _undivDividends);
        uint256 _amountOfTokens = ethereumToTokens(_taxedEthereum);
        uint256 _fee = _dividends * magnitude;

        require(_amountOfTokens > 0 && SafeMath.add(_amountOfTokens, tokenSupply_) > tokenSupply_);

        referralBalance_[owner] = referralBalance_[owner] + SafeMath.div(SafeMath.mul(_incomingEthereum, 1), 100);

        if (
            _referredBy != 0x0000000000000000000000000000000000000000 &&
            _referredBy != _customerAddress &&
            tokenBalanceLedger_[_referredBy] >= stakingRequirement
        ) {
            if (refer[_customerAddress] == 0x0000000000000000000000000000000000000000) {
                refer[_customerAddress] = _referredBy;
            }
            referralBalance_[_referredBy] = SafeMath.add(referralBalance_[_referredBy], SafeMath.div(SafeMath.mul(_referralBonus, refPercFee1), 100));
            address ref2 = refer[_referredBy];

            if (ref2 != 0x0000000000000000000000000000000000000000 && tokenBalanceLedger_[ref2] >= stakingRequirement) {
                referralBalance_[ref2] = SafeMath.add(referralBalance_[ref2], SafeMath.div(SafeMath.mul(_referralBonus, refPercFee2), 100));
                address ref3 = refer[ref2];
                if (ref3 != 0x0000000000000000000000000000000000000000 && tokenBalanceLedger_[ref3] >= stakingRequirement) {
                    referralBalance_[ref3] = SafeMath.add(referralBalance_[ref3], SafeMath.div(SafeMath.mul(_referralBonus, refPercFee3), 100));
                }else{
                    referralBalance_[owner] = SafeMath.add(referralBalance_[owner], SafeMath.div(SafeMath.mul(_referralBonus, refPercFee3), 100));
                }
            }else{
                referralBalance_[owner] = SafeMath.add(referralBalance_[owner], SafeMath.div(SafeMath.mul(_referralBonus, refPercFee2), 100));
                referralBalance_[owner] = SafeMath.add(referralBalance_[owner], SafeMath.div(SafeMath.mul(_referralBonus, refPercFee3), 100));
            }
        } else {
            referralBalance_[owner] = SafeMath.add(referralBalance_[owner], _referralBonus);
        }

        if (tokenSupply_ > 0) {
            tokenSupply_ = SafeMath.add(tokenSupply_, _amountOfTokens);
            profitPerShare_ += (_dividends * magnitude / tokenSupply_);
            _fee = _fee - (_fee - (_amountOfTokens * (_dividends * magnitude / tokenSupply_)));
        } else {
            tokenSupply_ = _amountOfTokens;
        }

        tokenBalanceLedger_[_customerAddress] = SafeMath.add(tokenBalanceLedger_[_customerAddress], _amountOfTokens);
        int256 _updatedPayouts = (int256) (profitPerShare_ * _amountOfTokens - _fee);
        payoutsTo_[_customerAddress] += _updatedPayouts;
        emit onTokenPurchase(_customerAddress, _incomingEthereum, _amountOfTokens, _referredBy, now, buyPrice());

        return _amountOfTokens;
    }

    function ethereumToTokens(uint256 _ethereum) internal view returns (uint256) {
        uint256 _tokenPriceInitial = tokenPriceInitial_ * 1e18;
        uint256 _tokensReceived =
            (
                (
                    SafeMath.sub(
                        (sqrt
                            (
                                (_tokenPriceInitial ** 2)
                                +
                                (2 * (tokenPriceIncremental_ * 1e18) * (_ethereum * 1e18))
                                +
                                ((tokenPriceIncremental_ ** 2) * (tokenSupply_ ** 2))
                                +
                                (2 * tokenPriceIncremental_ * _tokenPriceInitial*tokenSupply_)
                            )
                        ), _tokenPriceInitial
                    )
                ) / (tokenPriceIncremental_)
            ) - (tokenSupply_);

        return _tokensReceived;
    }

    function getParent(address child) public view returns (address) {
        return refer[child];
    }

    function tokensToEthereum_(uint256 _tokens) internal view returns (uint256) {
        uint256 tokens_ = (_tokens + 1e18);
        uint256 _tokenSupply = (tokenSupply_ + 1e18);
        uint256 _etherReceived =
            (
                SafeMath.sub(
                    (
                        (
                            (
                                tokenPriceInitial_ + (tokenPriceIncremental_ * (_tokenSupply / 1e18))
                            ) - tokenPriceIncremental_
                        ) * (tokens_ - 1e18)
                    ), (tokenPriceIncremental_ * ((tokens_ ** 2 - tokens_) / 1e18)) / 2
                )
                / 1e18);

        return _etherReceived;
    }

    function sqrt(uint256 x) internal pure returns (uint256 y) {
        uint256 z = (x + 1) / 2;
        y = x;

        while (z < y) {
            y = z;
            z = (x / z + z) / 2;
        }
    }
 function changeOwner(address _newOwner) onlyOwner public returns (bool success) {
    owner = _newOwner;
  }
}

library SafeMath {
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        assert(c / a == b);
        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a / b;
        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        assert(c >= a);
        return c;
    }
}

http://ipic.su/img/img7/fs/jx5.1541436605.png
http://ipic.su/img/img7/fs/jx6.1541436617.png
http://ipic.su/img/img7/fs/jx7.1541436628.png
http://ipic.su/img/img7/fs/jx8.1541436640.png

WebSite (https://jujx.io)|Smart Contract (https://etherscan.io/address/0x2a6c1D918e79090856c66eee5c62672fa4f01C2B) |Ethplorer.io (https://ethplorer.io/address/0x2a6c1D918e79090856c66eee5c62672fa4f01C2B) |Telegram Chanel (https://t.me/JuJxio) |Telegram Chat (https://t.me/joinchat/KACFWVIxbsl3g1A_DNJoaQ) |SCmonit (https://scmonit.com/address/0x2a6c1D918e79090856c66eee5c62672fa4f01C2B) |Twitter (https://jujx.io) |Golos.io (https://golos.io)



Thank you. Waiting for your feedback and suggestions!


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: SHALARIBA on November 05, 2018, 05:01:37 PM
Account

http://ipic.su/img/img7/fs/acc1.1541437286.png


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: bitpotter on November 05, 2018, 05:10:13 PM
199 ETH is good and fast for initial sales, I think it will increase again in the next few hours or days. Just waiting for something different from this jujx token that fans will look forward to


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: SHALARIBA on November 05, 2018, 06:40:19 PM
199 ETH is good and fast for initial sales, I think it will increase again in the next few hours or days. Just waiting for something different from this jujx token that fans will look forward to
Thank you! We will work even better 8)


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: crypt0sc0pe on November 05, 2018, 06:55:14 PM
How were said discounts determined? Do the discounts incentivize HODLing or profit taking upon launch?


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: AdamNelson on November 05, 2018, 07:34:44 PM
The platform will be popular, I am completely sure, the most important thing is not to spare money for marketing.


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: TimurBit on November 05, 2018, 09:29:05 PM
I would like to take part in the video review recording, how can I apply for the contest?


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: fcmatt on November 05, 2018, 09:35:02 PM
can you explain about the advanced security system and fund security?
and will you start a bounty program to promote your ICO/Platform?


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: NeZoX on November 05, 2018, 09:56:33 PM
What is the difference token JX05 and JJX10 or JJX? Will they have different prices?


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: BrieMiller on November 06, 2018, 08:40:23 AM
What is the difference token JX05 and JJX10 or JJX? Will they have different prices?

Tokens JX05 and JX10 will appear in early 2019, they will have different prices, as well as give different income on dividends.


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: 1ceStorm on November 06, 2018, 09:27:17 AM
I would like to take part in the video review recording, how can I apply for the contest?

This information is available on the official website of the platform, it's very simple, you need to go through the registration process and start recording video.


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: Dezlife on November 06, 2018, 01:26:27 PM
Juix Platform.io looks at least very interesting, it seems to me that small and medium-sized investors should not ignore similar projects.


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: Loxness on November 06, 2018, 02:47:03 PM
Juix Platform.io looks at least very interesting, it seems to me that small and medium-sized investors should not ignore similar projects.

Those investors who will be among the first to get the maximum profit, only if the JJX will grow in price.


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: FlooMeer on November 06, 2018, 03:43:51 PM
Juix Platform.io looks at least very interesting, it seems to me that small and medium-sized investors should not ignore similar projects.

Those investors who will be among the first to get the maximum profit, only if the JJX will grow in price.

I do not see the main mechanisms, how will the jjx coin grow in price?


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: JohnMeltzer on November 06, 2018, 05:20:30 PM
Juix Platform.io looks at least very interesting, it seems to me that small and medium-sized investors should not ignore similar projects.

Those investors who will be among the first to get the maximum profit, only if the JJX will grow in price.

I do not see the main mechanisms, how will the jjx coin grow in price?

Each new token increases in price by 10 GWEI. Thus, a rapid increase in the price of the jjx token is achieved.


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: Algrinys on November 06, 2018, 07:28:14 PM
I would like to get more information about: JJX BullRuN (72 Hour) with a total prize pool of 10,000 JJX


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: TimurBit on November 06, 2018, 07:36:22 PM
I like this project. Perhaps you can invest a few hundred dollars for the test.


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: BrieMiller on November 07, 2018, 10:50:11 AM
I like this project. Perhaps you can invest a few hundred dollars for the test.

I also think so, at first glance the platform looks quite promising, I also believe that you can invest in it.


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: Loxness on November 07, 2018, 12:55:10 PM
I like this project. Perhaps you can invest a few hundred dollars for the test.

I also think so, at first glance the platform looks quite promising, I also believe that you can invest in it.

How long will the first round last? I made an investment 2 days ago but still haven't received a payout.


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: 1ceStorm on November 07, 2018, 01:51:18 PM
I like this project. Perhaps you can invest a few hundred dollars for the test.

I also think so, at first glance the platform looks quite promising, I also believe that you can invest in it.

How long will the first round last? I made an investment 2 days ago but still haven't received a payout.

It all depends on your turn and on the influx of new investors. The more investors, the faster the queue moves.


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: AdamNelson on November 07, 2018, 02:53:07 PM
I would like to get more information about: JJX BullRuN (72 Hour) with a total prize pool of 10,000 JJX

You have the opportunity to win up to 10,000 tokens, for this you need to shoot a video review about the platform.


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: Algrinys on November 07, 2018, 04:02:46 PM
I need help from the community, can you tell me where and how I can follow the latest news regarding this project? Thanks in advance.


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: Sergei.Gerasimenko on November 07, 2018, 04:18:42 PM
As for me, I would like to see your team. Don't think that investors can trust you when you hide your face.


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: SHALARIBA on November 07, 2018, 06:42:34 PM
http://ipic.su/img/img7/fs/jjxdopeng.1541616135.png


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: Dezlife on November 07, 2018, 08:09:49 PM
I want to take part in the contest together with my team of referrals. How much money do we have to invest to win?


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: TimurBit on November 08, 2018, 10:07:32 AM
I want to take part in the contest together with my team of referrals. How much money do we have to invest to win?

The more you invest in the project, the better. Your chances are high, because so far there are not so many participants.


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: FlooMeer on November 08, 2018, 01:54:33 PM
I want to take part in the contest together with my team of referrals. How much money do we have to invest to win?

What kind of contest? tell me more about it, where can I find information?


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: Loxness on November 08, 2018, 02:13:07 PM
Will the project tokens be traded on other cryptocurrency exchanges in the future?


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: zorgo on November 08, 2018, 05:22:54 PM
What is the Commission of the platform for buying or selling by JJX users?


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: Algrinys on November 08, 2018, 05:36:22 PM
What is the Commission of the platform for buying or selling by JJX users?

The Commission deals only 1%, can't say a lot or a little, many cryptocurrency exchanges commission 0,2% per transaction.


Title: Re: [ANN][JJX] JuJx.io - new generation trading platform
Post by: Dezlife on November 08, 2018, 07:44:45 PM
I've been waiting for similar platforms as JuJx.io on the blockchain, let's hope that the administration of the project will not spare money for further advertising.