95 'transactionIndex' =>
'EthQ',
96 'transactionHash' =>
'EthD32',
97 'blockHash' =>
'EthD32',
98 'blockNumber' =>
'EthQ',
99 'address' =>
'EthD20',
100 'data' =>
'EthBytes',
101 'topics' =>
'[EthD32]',
110 (!is_null($this->removed)) ? $return[
'removed'] = $this->removed->hexVal() : NULL;
111 (!is_null($this->logIndex)) ? $return[
'logIndex'] = $this->logIndex->hexVal() : NULL;
112 (!is_null($this->transactionIndex)) ? $return[
'transactionIndex'] = $this->transactionIndex->hexVal() : NULL;
113 (!is_null($this->transactionHash)) ? $return[
'transactionHash'] = $this->transactionHash->hexVal() : NULL;
114 (!is_null($this->blockHash)) ? $return[
'blockHash'] = $this->blockHash->hexVal() : NULL;
115 (!is_null($this->blockNumber)) ? $return[
'blockNumber'] = $this->blockNumber->hexVal() : NULL;
116 (!is_null($this->address)) ? $return[
'address'] = $this->address->hexVal() : NULL;
117 (!is_null($this->data)) ? $return[
'data'] = $this->data->hexVal() : NULL;
118 (!is_null($this->topics)) ? $return[
'topics'] =
Ethereum::valueArray($this->topics,
'EthD32') : array();
static valueArray(array $values, string $typeClass)
__construct(EthB $removed=null, EthQ $logIndex=null, EthQ $transactionIndex=null, EthD32 $transactionHash=null, EthD32 $blockHash=null, EthQ $blockNumber=null, EthD20 $address=null, EthBytes $data=null, array $topics=null)