Marketplace

Type

enum OfferState {
    Nil,
    Selling,
    Done,
    Cancelled
}

struct Offer {
    uint256 tokenId;
    uint256 sellingAmount;
    uint256 soldAmount;
    uint256 unitPrice;
    address currency;
    bool isDividable;
    OfferState state;
    address seller;
}

Event

Error

Function

Last updated