Skip to content

Latest commit

 

History

History
272 lines (224 loc) · 7.56 KB

EventEmitter.md

File metadata and controls

272 lines (224 loc) · 7.56 KB

EventEmitter.sol

View Source: contracts/mocks/EventEmitter.sol

EventEmitter

Events

event Argumentless();
event ShortUint(uint8  value);
event ShortInt(int8  value);
event LongUint(uint256  value);
event LongInt(int256  value);
event Address(address  value);
event Boolean(bool  value);
event String(string  value);
event LongUintBooleanString(uint256  uintValue, bool  booleanValue, string  stringValue);

Functions

emitArgumentless

function emitArgumentless() public undefined

Arguments

Name Type Description

emitShortUint

function emitShortUint(uint8 value) public undefined

Arguments

Name Type Description
value uint8

emitShortInt

function emitShortInt(int8 value) public undefined

Arguments

Name Type Description
value int8

emitLongUint

function emitLongUint(uint256 value) public undefined

Arguments

Name Type Description
value uint256

emitLongInt

function emitLongInt(int256 value) public undefined

Arguments

Name Type Description
value int256

emitAddress

function emitAddress(address value) public undefined

Arguments

Name Type Description
value address

emitBoolean

function emitBoolean(bool value) public undefined

Arguments

Name Type Description
value bool

emitString

function emitString(string value) public undefined

Arguments

Name Type Description
value string

emitLongUintBooleanString

function emitLongUintBooleanString(uint256 uintValue, bool booleanValue, string stringValue) public undefined

Arguments

Name Type Description
uintValue uint256
booleanValue bool
stringValue string

emitLongUintAndBoolean

function emitLongUintAndBoolean(uint256 uintValue, bool boolValue) public undefined

Arguments

Name Type Description
uintValue uint256
boolValue bool

Contracts