Class: NounsAuctionHouse
- Inherits:
-
Ethlite::Contract
- Object
- Ethlite::Contract
- NounsAuctionHouse
- Defined in:
- lib/ethlite/contracts/nouns_auction_house.rb
Instance Method Summary collapse
-
#auction ⇒ Object
function auction() ⇒ (uint256 nounId, uint256 amount, uint256 startTime, uint256 endTime, address payable bidder, bool settled) readonly.
-
#duration ⇒ Object
function duration() ⇒ (uint256 _) readonly.
-
#minBidIncrementPercentage ⇒ Object
function minBidIncrementPercentage() ⇒ (uint8 _) readonly.
-
#nouns ⇒ Object
function nouns() ⇒ (contract INounsToken _) readonly.
-
#owner ⇒ Object
function owner() ⇒ (address _) readonly.
-
#paused ⇒ Object
function paused() ⇒ (bool _) readonly.
-
#reservePrice ⇒ Object
function reservePrice() ⇒ (uint256 _) readonly.
-
#timeBuffer ⇒ Object
function timeBuffer() ⇒ (uint256 _) readonly.
-
#weth ⇒ Object
function weth() ⇒ (address _) readonly.
Methods inherited from Ethlite::Contract
address, at, default_address, #do_call, #initialize, methods, sig
Constructor Details
This class inherits a constructor from Ethlite::Contract
Instance Method Details
#auction ⇒ Object
function auction() ⇒ (uint256 nounId, uint256 amount, uint256 startTime, uint256 endTime, address payable bidder, bool settled) readonly
13 14 15 |
# File 'lib/ethlite/contracts/nouns_auction_house.rb', line 13 def auction() do_call("auction") end |
#duration ⇒ Object
function duration() ⇒ (uint256 _) readonly
19 20 21 |
# File 'lib/ethlite/contracts/nouns_auction_house.rb', line 19 def duration() do_call("duration") end |
#minBidIncrementPercentage ⇒ Object
function minBidIncrementPercentage() ⇒ (uint8 _) readonly
25 26 27 |
# File 'lib/ethlite/contracts/nouns_auction_house.rb', line 25 def minBidIncrementPercentage() do_call("minBidIncrementPercentage") end |
#nouns ⇒ Object
function nouns() ⇒ (contract INounsToken _) readonly
31 32 33 |
# File 'lib/ethlite/contracts/nouns_auction_house.rb', line 31 def nouns() do_call("nouns") end |
#owner ⇒ Object
function owner() ⇒ (address _) readonly
37 38 39 |
# File 'lib/ethlite/contracts/nouns_auction_house.rb', line 37 def owner() do_call("owner") end |
#paused ⇒ Object
function paused() ⇒ (bool _) readonly
43 44 45 |
# File 'lib/ethlite/contracts/nouns_auction_house.rb', line 43 def paused() do_call("paused") end |
#reservePrice ⇒ Object
function reservePrice() ⇒ (uint256 _) readonly
49 50 51 |
# File 'lib/ethlite/contracts/nouns_auction_house.rb', line 49 def reservePrice() do_call("reservePrice") end |
#timeBuffer ⇒ Object
function timeBuffer() ⇒ (uint256 _) readonly
55 56 57 |
# File 'lib/ethlite/contracts/nouns_auction_house.rb', line 55 def timeBuffer() do_call("timeBuffer") end |
#weth ⇒ Object
function weth() ⇒ (address _) readonly
61 62 63 |
# File 'lib/ethlite/contracts/nouns_auction_house.rb', line 61 def weth() do_call("weth") end |