# GNSS by MGXS

*Docs*

By [BLAINU DAO](https://paragraph.com/@blainu_dao) · 2024-06-20

erc20

---

GNSS CA: 0xA6118372DC0Db552CD33f61Ca24B80eA69B12061

GNSSToken.sol

    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.0;
    
    import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
    
    contract GNSSToken is ERC20 {
        constructor() ERC20("GNSS", "GNSS") {
            _mint(msg.sender, 10000 * 10**18); // Initial supply (adjust as needed)
        }
    }
    

MGXS CA: 0x5c0553F139b1B8dF980b2679FEFF5eD832579dc5

MGXSToken.sol

    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.0;
    
    import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
    
    contract MGXSToken is ERC20 {
        constructor() ERC20("MGXS", "MGXS") {
            _mint(msg.sender, 1000000 * 10**18); // Initial supply (adjust as needed)
        }
    }

---

*Originally published on [BLAINU DAO](https://paragraph.com/@blainu_dao/gnss-by-mgxs)*
