第155篇 英格兰拍卖

Posted wonderBlock

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第155篇 英格兰拍卖相关的知识,希望对你有一定的参考价值。

本文介绍英格兰拍卖,讲解如何通过 solidity 实现英格兰拍卖合约交易 ERC721 标准的 NFT

英格兰拍卖,是指在拍卖过程中,拍卖人宣布拍卖标的的起叫价及最低加幅价,竞买人以起叫价为起点,由低至高竞相加价,最后产生最高应价者;

1.NFT-Ether 方式

拍卖:

  1. NFT 卖方部署本合同;
  2. 拍卖持续 7 天;
  3. 参与者可以通过存入高于当前最高出价者的 ETH 进行出价;
  4. 如果不是当前最高出价,所有投标人都可以撤回其出价;

拍卖后:

  1. 出价最高者成为 NFT 的新所有者;
  2. 卖家收到 ETH 的最高出价;

单品拍卖合约:

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IERC721 
    function safeTransferFrom(address from, address to, uint tokenId) external;
    function transferFrom(address from, address to, uint tokenId) external;


contract EnglishAuction 
    event Start();
    event Bid(address indexed sender, uint amount);
    ev

以上是关于第155篇 英格兰拍卖的主要内容,如果未能解决你的问题,请参考以下文章

第137篇 荷兰拍卖

第137篇 荷兰拍卖

第124篇 NFT市场智能合约

第124篇 NFT市场智能合约

Kraken推出平行链拍卖平台

京东-2017-拍卖产品