TermAuctionList.sol#TermAuctionListData

Git Sourcearrow-up-right

struct TermAuctionListData {
    bytes32 head;
    mapping(bytes32 => TermAuctionListNode) nodes;
    mapping(bytes32 => PendingOffer) offers;
}

Last updated