IAssistingAuction

Methods

bid

function bid(uint256 _tokenId, uint256 _bidAmount) external nonpayable

Parameters

NameTypeDescription

_tokenId

uint256

undefined

_bidAmount

uint256

undefined

bidFor

function bidFor(address _bidder, uint256 _tokenId, uint256 _bidAmount) external nonpayable

Parameters

NameTypeDescription

_bidder

address

undefined

_tokenId

uint256

undefined

_bidAmount

uint256

undefined

cancelAuction

function cancelAuction(uint256 _tokenId) external nonpayable

Parameters

NameTypeDescription

_tokenId

uint256

undefined

cancelAuctionWhenPaused

function cancelAuctionWhenPaused(uint256 _tokenId) external nonpayable

Parameters

NameTypeDescription

_tokenId

uint256

undefined

createAuction

function createAuction(uint256 _tokenId, uint256 _startingPrice, uint256 _endingPrice, uint256 _duration) external nonpayable

Parameters

NameTypeDescription

_tokenId

uint256

undefined

_startingPrice

uint256

undefined

_endingPrice

uint256

undefined

_duration

uint256

undefined

getAuction

function getAuction(uint256 _tokenId) external view returns (address seller, uint256 startingPrice, uint256 endingPrice, uint256 duration, uint256 startedAt)

Parameters

NameTypeDescription

_tokenId

uint256

undefined

Returns

NameTypeDescription

seller

address

undefined

startingPrice

uint256

undefined

endingPrice

uint256

undefined

duration

uint256

undefined

startedAt

uint256

undefined

getCurrentPrice

function getCurrentPrice(uint256 _tokenId) external view returns (uint256)

Parameters

NameTypeDescription

_tokenId

uint256

undefined

Returns

NameTypeDescription

_0

uint256

undefined

heroCore

function heroCore() external view returns (address)

Returns

NameTypeDescription

_0

address

undefined

isOnAuction

function isOnAuction(uint256 _tokenId) external nonpayable returns (bool)

Parameters

NameTypeDescription

_tokenId

uint256

undefined

Returns

NameTypeDescription

_0

bool

undefined

jewelToken

function jewelToken() external view returns (address)

Returns

NameTypeDescription

_0

address

undefined

owner

function owner() external view returns (address)

Returns

NameTypeDescription

_0

address

undefined

ownerCut

function ownerCut() external view returns (uint256)

Returns

NameTypeDescription

_0

uint256

undefined

paused

function paused() external view returns (bool)

Returns

NameTypeDescription

_0

bool

undefined

renounceOwnership

function renounceOwnership() external nonpayable

setFees

function setFees(address[] _feeAddresses, uint256[] _feePercents) external nonpayable

Parameters

NameTypeDescription

_feeAddresses

address[]

undefined

_feePercents

uint256[]

undefined

transferOwnership

function transferOwnership(address newOwner) external nonpayable

Parameters

NameTypeDescription

newOwner

address

undefined

Last updated