Giter VIP home page Giter VIP logo

lextoken's Introduction

LexToken ⚡⚖️⚔️

Standard Ethereum (ERC-20) Tokens with LexDAO Governance: Burnable, Capped, Mintable, Pausable

LexToken ERC20 Factory 0x005 . . .

Smart Contract

Etherscan is a popular explorer for the Ethereum blockchain.

Etherscan further provides an interface to read and write from the LexToken Factory code deployed on Ethereum:

READ to keep track of LexToken deployments 🧮

WRITE to deploy LexToken from Factory 🏭

If you have a MetaMask wallet account (🦊) on your Chrome, Firefox or Brave browser and ETH to pay for transactions, you can deploy a LexToken with custom parameters, such as initial supply and hard cap, as well as make direct petitions to lexDAO members to resolve balances.

Uniswap Listing

All LexToken deployments automatically create an exchange on Uniswap (🦄) which can be read in each verified LexToken smart contract and deployment transaction.

Dapps powered by LexToken ✨

Governance

LexDAO members vote to resolve lost or disputed balances of LexTokens. LexDAO and other accounts granted the LexDAORole control the following functions on all LexTokens:

function lexDAOburn(address account, uint256 amount) public onlyLexDAO returns (bool) {
    _burn(account, amount); // lexDAO governance reduces token balance
    return true;
}

function lexDAOmint(address account, uint256 amount) public onlyLexDAO returns (bool) {
    _mint(account, amount); // lexDAO governance increases token balance
    return true;
}

function lexDAOtransfer(address from, address to, uint256 amount) public onlyLexDAO returns (bool) {
    _transfer(from, to, amount); // lexDAO governance transfers token balance
    return true;
}

LexToken users retain the PauserRole and can effectively shut down their LexToken in the event that they cannot reach consensus with LexDAO transactions. We nonetheless welcome users to call the addPauser function with the lexDAO Agent address (0x97103fda00a2b47EaC669568063C00e65866a633) and negotiate pausing services on lexdao.chat.

Factory Fee for LexToken Deployment: 0.001 ETH 🏭

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.