Bitcoin Forum
May 05, 2024, 05:26:24 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Tokens (Altcoins) / ARNO Token - a real nano technology solution | Details & ICO Info on: February 28, 2021, 12:37:04 PM
ARNO Token
A Real Nano Technology Project!



ABOUT PROJECT
Creation of production of secondary energy sources for industrial and home use based on lead-acid
battery cells using carbon nano materials.


The technologies for producing carbon nanomaterials, in particular carbon nanotubes, intercalated graphite and graphene structures, developed and implemented for industrial use by our team over the past few years, allow us to produce additives of various types for various fields of application.

This allows our team of scientists, engineers and technologists to use our proprietary additives to store energy, improve efficiency, increase the capacity and life of our batteries, and more.

Manufacturers of electronic products, hybrid vehicles and power systems are also benefiting from our technical practice, which allows them to create more flexible and high-performance offerings for their end users. For the battery and energy market, carbon nanotubes, intercalated graphite and graphene's serve:

  • Conductive components of battery electrodes;
  • Rheology modifiers for pastes and slurries used in preparation of battery electrodes;
  • Structural and porosity modifiers for battery electrodes;
  • Capacitors for charge storage.



LIQUIDITY OF PROJECT
Any capital investment into cryptocurrency entails the financial risks.
We have no way to guarantee the continuous increase of token, but we will make every effort to make it fluid
at the maximum rate.


  • Once ARNO token is added to the exchanges, the project team will put up a certain quantity of tokens for auction,
    and when the tokens are bought by the participants, the team will stop the cryptocurrency input on the present platform for a year.
    The auction is held by the traders not bearing a relation to the developers.
  • The project token is the main settlement tool of the economic part of the project. The entire economic system of the
    project involves the active use of the ARNO token. We will not use even the most popular cryptocurrencies such as BTC or ETH.
    Only ARNO will be used inside our project and everything connected with it.
  • It is also a very important role in the fact that the project is physical and it is already working. The direction is new and in demand.
    New energy efficient systems are our future.



ARNO Token Full Description:
Details:
Pre-sales: Oct 06, 2020 - Mar 31, 2021
Public sales: Dec 01, 2021 - Apr 02, 2022
Token supply: 50,000,000 ARNO
Total tokens for sale: 4,000,000 ARNO
Soft cap: 60,000 USD
Hard cap: 7,760,000 USD

Token Info:
Ticker: ARNO
Type: Utility-token
Token standard: ERC20
Token price in USD: 1 ARNO = 2 USD
Accepted currencies: ETH, BTC, LTC, USDT, XMR, DOGE, BCH, Dash
Smart Contract Address: https://etherscan.io/token/0x7Aa885b81cd8bdE980dF6ECaD860336068459895

Bonus program:
When buying 30 and 299 coins + 10% bonus
When buying 300 and 1499 coins + 15% bonus
When buying 1500 and more coins + 20% bonus

Legal:
Blockchain Platform: Ethereum
Country limitations: No
Registration country: Belarus
Office address: Minsk, Tolbuchina str., 2A
BONUSESARNO Token - CryptoCurrency ICO/STO/IEO

For more information, please find important links below.

Official Website | Whitepaper | Private Policy | Disclaimer | Bounty Program
2  Alternate cryptocurrencies / Announcements (Altcoins) / [ANN]TAXO COIN (TXC) - The New Ecosystem | ICO Live Now! on: October 30, 2018, 04:23:23 AM
TAXO COIN Project
The New Ecosystem.
Maximum Supply: Total 54,000,000 TXC

The Taxo Project is a Project to Create a Solution for Both the Crypto and the Business.

A New Revolutionary Platform for Crypto Investors.
We are Breaking the Difference between current Business and Blockchain with Three Platform, so that Business and Crypto Transactions will be Quick and Easy.


BE READY! for our 5,400,000 TXC for BOUNTY PROGRAM ALLOCATION

Website:
https://www.taxocoin.com/
Whitepaper
One Pager

Smart Contract Address
Code:
0xada53362130210fae8d1c6447c50648f0cd60ad0
Smart Contract Source
Code:
pragma solidity ^0.4.24;

contract SafeMath {
    function safeAdd(uint a, uint b) public pure returns (uint c) {
        c = a + b;
        require(c >= a);
    }
    function safeSub(uint a, uint b) public pure returns (uint c) {
        require(b <= a);
        c = a - b;
    }
    function safeMul(uint a, uint b) public pure returns (uint c) {
        c = a * b;
        require(a == 0 || c / a == b);
    }
    function safeDiv(uint a, uint b) public pure returns (uint c) {
        require(b > 0);
        c = a / b;
    }
}
 
contract ERC20Interface {
    function totalSupply() public constant returns (uint);
    function balanceOf(address tokenOwner) public constant returns (uint balance);
    function allowance(address tokenOwner, address spender) public constant returns (uint remaining);
    function transfer(address to, uint tokens) public returns (bool success);
    function approve(address spender, uint tokens) public returns (bool success);
    function transferFrom(address from, address to, uint tokens) public returns (bool success);

    event Transfer(address indexed from, address indexed to, uint tokens);
    event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
}

 
contract ApproveAndCallFallBack {
    function receiveApproval(address from, uint256 tokens, address token, bytes data) public;
}
  
contract Owned {
    address public owner;
    address public newOwner;

    event OwnershipTransferred(address indexed _from, address indexed _to);

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

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

    function transferOwnership(address _newOwner) public onlyOwner {
        newOwner = _newOwner;
    }
    function acceptOwnership() public {
        require(msg.sender == newOwner);
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
        newOwner = address(0);
    }
}
 
contract TAXOCOIN is ERC20Interface, Owned, SafeMath {
    string public symbol;
    string public  name;
    uint8 public decimals;
    uint public _totalSupply;

    mapping(address => uint) balances;
    mapping(address => mapping(address => uint)) allowed;

 
    function TAXOCOIN() public {
        symbol = "TXC";
        name = "TAXO COIN";
        decimals = 18;
        _totalSupply = 54000000000000000000000000;
        balances[0xaF99CCa5110e70d3001Df3b2B3c66539c2e27f5f] = _totalSupply;
        emit Transfer(address(0), 0xaF99CCa5110e70d3001Df3b2B3c66539c2e27f5f, _totalSupply);
    }

 
    function totalSupply() public constant returns (uint) {
        return _totalSupply  - balances[address(0)];
    }

 
    function balanceOf(address tokenOwner) public constant returns (uint balance) {
        return balances[tokenOwner];
    }


  
    function transfer(address to, uint tokens) public returns (bool success) {
        balances[msg.sender] = safeSub(balances[msg.sender], tokens);
        balances[to] = safeAdd(balances[to], tokens);
        emit Transfer(msg.sender, to, tokens);
        return true;
    }

 
    function approve(address spender, uint tokens) public returns (bool success) {
        allowed[msg.sender][spender] = tokens;
        emit Approval(msg.sender, spender, tokens);
        return true;
    }

 
    function transferFrom(address from, address to, uint tokens) public returns (bool success) {
        balances[from] = safeSub(balances[from], tokens);
        allowed[from][msg.sender] = safeSub(allowed[from][msg.sender], tokens);
        balances[to] = safeAdd(balances[to], tokens);
        emit Transfer(from, to, tokens);
        return true;
    }

 
    function allowance(address tokenOwner, address spender) public constant returns (uint remaining) {
        return allowed[tokenOwner][spender];
    }

 
    function approveAndCall(address spender, uint tokens, bytes data) public returns (bool success) {
        allowed[msg.sender][spender] = tokens;
        emit Approval(msg.sender, spender, tokens);
        ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, this, data);
        return true;
    }

 
    function () public payable {
        revert();
    }

 
    function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success) {
        return ERC20Interface(tokenAddress).transfer(owner, tokens);
    }
}

Our Community:
Like us TaxoCoin on Facebook
Follow us on Instagram
Follow us on Twitter
Follow us on Google+
Pinterest
Follow us on Linkedin
Chat us on Telegram
STEEMIT BLOG
Medium Digest



OUR GOAL:

Crypto + Business
The Taxo Project is a Project to Create a Solution for Both the Crypto and the Business.

Main Goal of Taxo Projects
Getting an Investment from Crypto Market and then Doing Business in this Investment and then Use Businesses Total Profit as a New Investment in the Taxo Coin, so can get new High of Taxo Coin and Taxo Business.

According to the above, the Profits of Taxo Business will be used as a new Investment in Taxo Coin every Three Months, so that the Value of the Taxo Coin Increases and the Investors Get a Good Profit.

Let's Start



HOW IT WORKS?

Easily Understand
The Goal Of Taxo Project.


Following Steps:

-> Investor doing Invest in Taxo Coin ICO.
-> Doing Taxo Business of this Investment.
-> Taxo Business will Get a Profits.
-> Doing Investment in TXC of this Profits.
-> This investment will increase price of TXC.
-> Investor will Get a GOOD PROFITS.



HOW DO I BUY A TAXO COIN?

Signup in our Dashboard
Go to registration on TAXO COIN and sign up for participation in the crowd sale.

BTC Payment method
Transfer the amount of cryptocurrency as per instructions that you wish to spend on Taxo Coin.

Press Buy in Dashboard
You must have Dashboard after login and press BUY NOW! button.

Receive Taxo Coin
After the successful transaction then Refresh, you will see the TXC in your wallet.



SUPPORTING CLIENTS:

ICO Quality:
8.5/10
Source: FoundICO

ICO Rating:
7.5/10
Source: Foxico

ICOGeeker | ICO Alert | Best Coins | CoinSchedule | CryptoNext | ICOHolder | ICOBench | ICOMarks | ICONeat

MEET OUR TAXO COIN PROJECT TEAM


Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!