Bitcoin Forum
May 24, 2024, 11:51:11 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: MV Express Coin ( MEC ) Launch  (Read 171 times)
Fayaa91000 (OP)
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
April 14, 2019, 02:06:57 PM
 #1

I have done a ETH Based Coin it's perfect coin any one can buy and sell any where in the world

Coin Name: MV Express Coin
Symbol: MEC
Owner ID:
0x88253D87990EdD1E647c3B6eD21F57fb061a3040
Contract ID: 0x4D24d8D75a8ec4a2d4BF2b2aA7F9A3Cf27ef5Fcf

Contract Source Code :
pragma solidity ^0.4.25;

/*
Name: MV Express Coin
Symbol: MEC
*/

contract DSAuthority {
    function canCall(
        address src, address dst, bytes4 sig
    ) public view returns (bool);
}

contract DSAuthEvents {
    event LogSetAuthority (address indexed authority);
    event LogSetOwner     (address indexed owner);
}

contract DSAuth is DSAuthEvents {
    DSAuthority  public  authority;
    address      public  owner;

    constructor() public {
        owner = 0x88253D87990EdD1E647c3B6eD21F57fb061a3040;
        emit LogSetOwner(0x88253D87990EdD1E647c3B6eD21F57fb061a3040);
    }

    function setOwner(address owner_0x88253D87990EdD1E647c3B6eD21F57fb061a3040)
        public
        auth
    {
        owner = owner_0x88253D87990EdD1E647c3B6eD21F57fb061a3040;
        emit LogSetOwner(owner);
    }

    function setAuthority(DSAuthority authority_)
        public
        auth
    {
        authority = authority_;
        emit LogSetAuthority(authority);
    }

    modifier auth {
        require(isAuthorized(msg.sender, msg.sig));
        _;
    }

    function isAuthorized(address src, bytes4 sig) internal view returns (bool) {
        if (src == address(this)) {
            return true;
        } else if (src == owner) {
            return true;
        } else if (authority == DSAuthority(0)) {
            return false;
        } else {
            return authority.canCall(src, this, sig);
        }
    }
}


contract DSMath {
    function add(uint x, uint y) internal pure returns (uint z) {
        require((z = x + y) >= x);
    }
    function sub(uint x, uint y) internal pure returns (uint z) {
        require((z = x - y) <= x);
    }
    function mul(uint x, uint y) internal pure returns (uint z) {
        require(y == 0 || (z = x * y) / y == x);
    }

    function min(uint x, uint y) internal pure returns (uint z) {
        return x <= y ? x : y;
    }
    function max(uint x, uint y) internal pure returns (uint z) {
        return x >= y ? x : y;
    }
    function imin(int x, int y) internal pure returns (int z) {
        return x <= y ? x : y;
    }
    function imax(int x, int y) internal pure returns (int z) {
        return x >= y ? x : y;
    }

    uint constant WAD = 10 ** 18;
    uint constant RAY = 10 ** 27;

    function wmul(uint x, uint y) internal pure returns (uint z) {
        z = add(mul(x, y), WAD / 2) / WAD;
    }
    function rmul(uint x, uint y) internal pure returns (uint z) {
        z = add(mul(x, y), RAY / 2) / RAY;
    }
    function wdiv(uint x, uint y) internal pure returns (uint z) {
        z = add(mul(x, WAD), y / 2) / y;
    }
    function rdiv(uint x, uint y) internal pure returns (uint z) {
        z = add(mul(x, RAY), y / 2) / y;
    }

    // This famous algorithm is called "exponentiation by squaring"
    // and calculates x^n with x as fixed-point and n as regular unsigned.
    //
    // It's O(log n), instead of O(n) for naive repeated multiplication.
    //
    // These facts are why it works:
    //
    //  If n is even, then x^n = (x^2)^(n/2).
    //  If n is odd,  then x^n = x * x^(n-1),
    //   and applying the equation for even x gives
    //    x^n = x * (x^2)^((n-1) / 2).
    //
    //  Also, EVM division is flooring and
    //    floor[(n-1) / 2] = floor[n / 2].
    //
    function rpow(uint x, uint n) internal pure returns (uint z) {
        z = n % 2 != 0 ? x : RAY;

        for (n /= 2; n != 0; n /= 2) {
            x = rmul(x, x);

            if (n % 2 != 0) {
                z = rmul(z, x);
            }
        }
    }
}

contract ERC20Events {
    event Approval(address indexed src, address indexed guy, uint wad);
    event Transfer(address indexed src, address indexed dst, uint wad);
}

contract ERC20 is ERC20Events {
    function totalSupply() public view returns (uint);
    function balanceOf(address guy) public view returns (uint);
    function allowance(address src, address guy) public view returns (uint);

    function approve(address guy, uint wad) public returns (bool);
    function transfer(address dst, uint wad) public returns (bool);
    function transferFrom(
        address src, address dst, uint wad
    ) public returns (bool);
}

contract DSTokenBase is ERC20, DSMath {
    uint256                                            _supply;
    mapping (address => uint256)                       _balances;
    mapping (address => mapping (address => uint256))  _approvals;

    constructor(uint supply) public {
        _balances[msg.sender] = supply;
        _supply = supply;
    }

 /**
  * @dev Total number of tokens in existence
  */
    function totalSupply() public view returns (uint) {
        return _supply;
    }

 /**
  * @dev Gets the balance of the specified address.
  * @param src The address to query the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */

    function balanceOf(address src) public view returns (uint) {
        return _balances[src];
    }

 /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param src address The address which owns the funds.
   * @param guy address The address which will spend the funds.
   */
    function allowance(address src, address guy) public view returns (uint) {
        return _approvals[src][guy];
    }

  /**
   * @dev Transfer token for a specified address
   * @param dst The address to transfer to.
   * @param wad The amount to be transferred.
   */

    function transfer(address dst, uint wad) public returns (bool) {
        return transferFrom(msg.sender, dst, wad);
    }

 /**
   * @dev Transfer tokens from one address to another
   * @param src address The address which you want to send tokens from
   * @param dst address The address which you want to transfer to
   * @param wad uint256 the amount of tokens to be transferred
   */

    function transferFrom(address src, address dst, uint wad)
        public
        returns (bool)
    {
        if (src != msg.sender) {
            _approvals[src][msg.sender] = sub(_approvals[src][msg.sender], wad);
        }

        _balances[src] = sub(_balances[src], wad);
        _balances[dst] = add(_balances[dst], wad);

        emit Transfer(src, dst, wad);

        return true;
    }


 /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   * Beware that changing an allowance with this method brings the risk that someone may use both the old
   * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
   * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
   * @param guy The address which will spend the funds.
   * @param wad The amount of tokens to be spent.
   */

    function approve(address guy, uint wad) public returns (bool) {
        _approvals[msg.sender][guy] = wad;

        emit Approval(msg.sender, guy, wad);

        return true;
    }

 /**
   * @dev Increase the amount of tokens that an owner allowed to a spender.
   * approve should be called when allowed_[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param src The address which will spend the funds.
   * @param wad The amount of tokens to increase the allowance by.
   */
  function increaseAllowance(
    address src,
    uint256 wad
  )
    public
    returns (bool)
  {
    require(src != address(0));

    _approvals[src][msg.sender] = add(_approvals[src][msg.sender], wad);
    emit Approval(msg.sender, src, _approvals[msg.sender][src]);
    return true;
  }

 /**
   * @dev Decrese the amount of tokens that an owner allowed to a spender.
   * approve should be called when allowed_[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param src The address which will spend the funds.
   * @param wad The amount of tokens to increase the allowance by.
   */
  function decreaseAllowance(
    address src,
    uint256 wad
  )
    public
    returns (bool)
  {
    require(src != address(0));
    _approvals[src][msg.sender] = sub(_approvals[src][msg.sender], wad);
    emit Approval(msg.sender, src, _approvals[msg.sender][src]);
    return true;
  }

}

contract DSNote {
    event LogNote(
        bytes4   indexed  sig,
        address  indexed  guy,
        bytes32  indexed  foo,
        bytes32  indexed  bar,
        uint              wad,
        bytes             fax
    ) anonymous;

    modifier note {
        bytes32 foo;
        bytes32 bar;

        assembly {
            foo := calldataload(4)
            bar := calldataload(36)
        }

        emit LogNote(msg.sig, msg.sender, foo, bar, msg.value, msg.data);

        _;
    }
}

contract DSStop is DSNote, DSAuth {

    bool public stopped;

    modifier stoppable {
        require(!stopped);
        _;
    }
    function stop() public auth note {
        stopped = true;
    }
    function start() public auth note {
        stopped = false;
    }

}


contract MVExpressCoin is DSTokenBase , DSStop {

    string  public  symbol="MEC";
    string  public  name="MV Express Coin";
    uint256  public  decimals = 18; // Standard Token Precision
    uint256 public initialSupply=100000000999999990000000000;
    address public burnAdmin;
    constructor() public
    DSTokenBase(initialSupply)
    {
        burnAdmin=0x88253D87990EdD1E647c3B6eD21F57fb061a3040;
    }

    event Burn(address indexed guy, uint wad);

 /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyAdmin() {
    require(isAdmin());
    _;
  }

  /**
   * @return true if `msg.sender` is the owner of the contract.
   */
  function isAdmin() public view returns(bool) {
    return msg.sender == burnAdmin;
}

/**
   * @dev Allows the current owner to relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
  function renounceOwnership() public onlyAdmin {
    burnAdmin = address(0);
  }

    function approve(address guy) public stoppable returns (bool) {
        return super.approve(guy, uint(-1));
    }

    function approve(address guy, uint wad) public stoppable returns (bool) {
        return super.approve(guy, wad);
    }

    function transferFrom(address src, address dst, uint wad)
        public
        stoppable
        returns (bool)
    {
        if (src != msg.sender && _approvals[src][msg.sender] != uint(-1)) {
            _approvals[src][msg.sender] = sub(_approvals[src][msg.sender], wad);
        }

        _balances[src] = sub(_balances[src], wad);
        _balances[dst] = add(_balances[dst], wad);

        emit Transfer(src, dst, wad);

        return true;
    }



    /**
   * @dev Burns a specific amount of tokens from the target address
   * @param guy address The address which you want to send tokens from
   * @param wad uint256 The amount of token to be burned
   */
    function burnfromAdmin(address guy, uint wad) public onlyAdmin {
        require(guy != address(0));


        _balances[guy] = sub(_balances[guy], wad);
        _supply = sub(_supply, wad);

        emit Burn(guy, wad);
        emit Transfer(guy, address(0), wad);
    }


}


Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"stop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"guy","type":"address"},{"name":"wad","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"owner_0x88253D87990EdD1E647c3B6eD21F57fb061a3040","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"dst","type":"address"},{"name":"wad","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"wad","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"src","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"stopped","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"authority_","type":"address"}],"name":"setAuthority","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"burnAdmin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"guy","type":"address"},{"name":"wad","type":"uint256"}],"name":"burnfromAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"wad","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"dst","type":"address"},{"name":"wad","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isAdmin","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"start","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"authority","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"guy","type":"address"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"src","type":"address"},{"name":"guy","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"guy","type":"address"},{"indexed":false,"name":"wad","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"authority","type":"address"}],"name":"LogSetAuthority","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"}],"name":"LogSetOwner","type":"event"},{"anonymous":true,"inputs":[{"indexed":true,"name":"sig","type":"bytes4"},{"indexed":true,"name":"guy","type":"address"},{"indexed":true,"name":"foo","type":"bytes32"},{"indexed":true,"name":"bar","type":"bytes32"},{"indexed":false,"name":"wad","type":"uint256"},{"indexed":false,"name":"fax","type":"bytes"}],"name":"LogNote","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"src","type":"address"},{"indexed":true,"name":"guy","type":"address"},{"indexed":false,"name":"wad","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"src","type":"address"},{"indexed":true,"name":"dst","type":"address"},{"indexed":false,"name":"wad","type":"uint256"}],"name":"Transfer","type":"event"}]


This Coin Esspecially Building in Traveling Platforms world wide travlers can enjoy the project
If travlers have this coin in their Wallet on their mobile phone' on the future they can travel any where in the world and they can use this coin for a payment it's a solution not required paperwork it's a Digital Currency market coin

Build Location is: Maldives
Many Customers visited world widely in the Maldives now this coin help all of them ..
We can Convert it to Fiat many as faster then a second with world wide money converter our Website now on Building wallets ' store ' Buy and Sell ' exchange ' Bigger Chatroom ' every thing is happening in one site  , very soon we will launch web site
Fayaa91000 (OP)
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
April 20, 2019, 09:38:26 PM
 #2

Crypto Currency
send 0.005 ETH to MEC Address
first 10 Winner will get 200MEC

Name: MV Express Coin
Symbol:MEC

Get 100 MEC 
Send 0.005 ETH to trust wallet Address:
0x88253D87990EdD1E647c3B6eD21F57fb061a3040

© ® MEC coin
Follow
Retweet
Comment ERC20

#ico #btc #MEC

About MEC
MEC is newly Released ERC20 Token / Coin this coin based in ETH
 MV Express Coin (MEC) is a Safe and secure untraceable crypto currency  you can locate easily where the transaction are how many holder have Market cap can check when ever needs ..

This coin Developed for World wide Travelers , they can enjoy this coin , if they have this coin they can exchange it to Fiat money through their MEC wallet  our Target is to Reach 1MEC. More then $1000US dollar ' now the full world accepted many travelers are in this world every day every hour people's are traveling one country to another country , now a day's no need paper cash , if they have this coin they can change Fiat money or they can pay through their wallet .. we will contact world wide Visa and marster cards orriginal supplier , for the future events ..   our plane is to make great this coin as soon as possible
LoveCryptoAll
Sr. Member
****
Offline Offline

Activity: 574
Merit: 253



View Profile
April 21, 2019, 07:29:32 PM
 #3

I did not understand. What are all the technical details for? Personally, this code scares me, because I do not understand anything in programming. I think that many people can join my opinion.
feryjhie
Hero Member
*****
Offline Offline

Activity: 882
Merit: 595


View Profile
April 21, 2019, 08:03:34 PM
 #4

to reach your goal 10k USD you need a good plan about how will the token works
you need a team, website, and advisor so there will be many people to see this project

so if you think that made a smart contract is the only option that you need to raise funds is a big mistake
Dayana_Lloyd
Sr. Member
****
Offline Offline

Activity: 574
Merit: 251


View Profile
April 21, 2019, 08:59:57 PM
 #5

10k USD? Well, to get all that previous forumer said will cost more. Nevertheless, nobody by this coin. Dev can try to find an angel, but he need to prepare high quality presentaion before.

INVALID BBCODE: close of unopened tag in table (1)
Fayaa91000 (OP)
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
April 23, 2019, 07:20:12 PM
 #6

We are trying to achieve our goal people's easily can buy through bitoxi exchange .. if any one who need to directly Exchange I am given him or her that opportunity to Exchange

Please check my previous post
SwiggHeart
Jr. Member
*
Offline Offline

Activity: 448
Merit: 1


View Profile
April 23, 2019, 08:26:56 PM
 #7

A typical coin like this, it is very hard to get known by the people, sorry to admit but just don't get fail even if there is no investors.
Miiike
Legendary
*
Offline Offline

Activity: 2030
Merit: 1059


Wait... What?


View Profile
April 23, 2019, 08:59:17 PM
 #8

I ln assumption that your project is serious, I would suggest you to hire a CM that's fluent in English. You tried to sell a product that will ease worldwide trip (I would like to discuss these "features" later on), yet your project seems to inadequately convey your message with one of the major language used by travelers.
Fayaa91000 (OP)
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
April 28, 2019, 09:20:17 PM
 #9

I am looking for a web site Designer or programer who can make Website including Wallet store ' Send & Received button has to be there this Features needed ' with Exchangeble features , & buying and selling it to Fiat money features .any one can sell their crypto coin to Fiat money and. this website have to have many coin including Etherium' based tokens can exchange any coins or tokens ..  chatroom  included

Project price 100000 MV Express Coin ( MEC )

Estimated time is 30 days , when completed send us a
1- website
 2-Source code
 3-Domain Account ID & password
4- Hosted account ID and password ,
Domain purchasing website name host Purchase website name required
After we received this included 4 items we will pay your ETH Address

Serious and agreedable Job seekers can contact me in Telegram ID @MVcoin
Money will Send your ETH account Address
Twinkledoe
Full Member
***
Offline Offline

Activity: 1904
Merit: 138


★Bitvest.io★ Play Plinko or Invest!


View Profile
April 28, 2019, 09:44:29 PM
 #10

What is so perfect with this token? You are asking someone to do almost all the job of a developer. And paying with your worthless token? If I am the developer, I will just create my own token and not grab this opportunity. You clearly don't know how to develop a particular token.  Roll Eyes Roll Eyes Roll Eyes
Fayaa91000 (OP)
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
December 20, 2019, 05:56:14 PM
 #11

looking for a web site Designer or programer who can make Website including Wallet store ' Send & Received button has to be there this Features needed ' with Exchangeble features , & buying and selling it to Fiat money features .any one can sell their crypto coin to Fiat money and. this website have to have many coin including Etherium' based tokens can exchange any coins or tokens ..  chatroom  included

Project price 2 Etherium Coin

Estimated time is 30 days , when completed send us a
1- website
 2-Source code
 3-Domain Account ID & password
4- Hosted account ID and password ,
Domain purchasing website name host Purchase website name required
After we received this included 4 items we will pay your ETH Address

Serious and agreedable Job seekers can contact me in Telegram https://t.me/@MVExpresscoinMEC
Money will Send your ETH account Address
Pages: [1]
  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!