View Functions
Last updated
Check whether the token accepts a certain bidType.
function isBidTokenWhitelisted(address token) external view returns (bool)
token
address
The contract address of the token
function isRelayerWhitelisted(address wallet) external view returns (bool)
wallet
address
The address of relayer
Verify if the address has governance privileges
function isGovernance(address wallet) external view returns (bool)
wallet
address
The address of governance
Get bid content by bid index.
function getContentByIndex(uint256 index) external view returns (Content memory)
index
uint256
The index of content
Get the quantity of the bid
function getBidCounter() external view returns (uint256)
Last updated