RepoTokenLinkedList.sol#RepoTokenLinkedListStorageV1

Git Source

Storage contract for the RepoTokenLinkedList

State Variables

repoTokenBlacklist

mapping(address => bool) public repoTokenBlacklist;

totalListed

mapping(address => uint256) public totalListed;

listings

mapping(uint256 => Listing) public listings;

minimumListingAmount

mapping(address => uint256) public minimumListingAmount;

queues

mapping(address => Queue) public queues;

nextId

discountRateMarkup

discountRateAdapter

Structs

Listing

Structure to represent a token listing

Uses a linked list structure for efficient management

Queue

Structure to represent a queue for each Repo token

Last updated