Giter Site home page Giter Site logo

art-deco-nft's Introduction

Mint

Give mintable right to customers.

Bid

Bidding with ERC20 token.

    function bid(uint256 _id, uint256 _price) external _validateBid(_id, _price) {
        BidEntity memory newBidEntity = BidEntity(_id, _msgSender(), _price);
        bidStatusOfToken[_id][_msgSender()] = true;
        bidArrayOfToken[_id].push(newBidEntity);

        emit BidCreate(_msgSender(), _id, _price);
    }

Purchase

    function buy(uint _id) external payable _validateBuy(_id) {
        address _previousOwner = ownerOf(_id);
        address _newOwner = _msgSender();

        address payable _buyer = payable(_newOwner);
        address payable _owner = payable(_previousOwner);

        _transfer(_owner, _buyer, _id);

        uint256 _commissionValue = price[_id] / (10**2) * feePercent;
        uint256 _sellerValue = price[_id] - _commissionValue;

        _owner.transfer(_sellerValue);
        payable(feeAddress).transfer(_commissionValue);

        if (msg.value > price[_id]) {
            _buyer.transfer(msg.value - price[_id]);
        }

        for (uint i = 0; i < bidArrayOfToken[_id].length; i ++ ) {
            bidStatusOfToken[_id][bidArrayOfToken[_id][i].buyer] = false;
        }
        delete bidArrayOfToken[_id];

        emit Purchase(_previousOwner, _newOwner, price[_id], _id, tokenURI(_id));
    }

Market Fee

3%

Live Site

https://https://app.artdeco.community/

art-deco-nft's People

Contributors

xmas7 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

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.