Skip to content

Latest commit

 

History

History
58 lines (44 loc) · 1.32 KB

EtherPrice.md

File metadata and controls

58 lines (44 loc) · 1.32 KB

This contract keeps track of Ether price. (EtherPrice.sol)

contract EtherPrice is CustomPausable

EtherPrice

Contract Members

Constants & Variables

uint256 public etherPriceInCents;

Events

event EtherPriceChanged(uint256 _newPrice, uint256 _oldPrice);

Functions

setEtherPrice

function setEtherPrice(uint256 _cents) public whenNotPaused onlyAdmin

Arguments

Name Type Description
_cents uint256

Contracts