Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 449 Bytes

File metadata and controls

31 lines (19 loc) · 449 Bytes

evm_hex_encode_int

Encode the input integer as hexadecimal with 0x prefix.

Syntax

evm_hex_encode_int(str)

Parameters

Returned value

  • Returns the 0x-prefixed hexadecimal encoding of the input integer.

Example

Query:

select evm_hex_encode_int(123)

Result:

evm_hex_encode_int(123)
0x7b