Type Alias ckb_jsonrpc_types::Uint32

source ·
pub type Uint32 = JsonUint<u32>;
Expand description

The 32-bit unsigned integer type encoded as the 0x-prefixed hex string in JSON.

§Examples

JSONDecimal Value
“0x0”0
“0x10”16
“10”Invalid, 0x is required
“0x01”Invalid, redundant leading 0

Aliased Type§

struct Uint32(/* private fields */);