- OFFSET_LONG_LIST - Static variable in class org.web3j.rlp.RlpDecoder
-
[0xf7]
If the total payload of a list is more than 55 bytes long, the RLP
encoding consists of a single byte with value 0xf7 plus the length of the
length of the list in binary form, followed by the length of the list,
followed by the concatenation of the RLP encodings of the items.
- OFFSET_LONG_STRING - Static variable in class org.web3j.rlp.RlpDecoder
-
[0xb7]
If a string is more than 55 bytes long, the RLP encoding consists of a
single byte with value 0xb7 plus the length of the length of the string
in binary form, followed by the length of the string, followed by the
string.
- OFFSET_SHORT_LIST - Static variable in class org.web3j.rlp.RlpDecoder
-
[0xc0]
If the total payload of a list (i.e.
- OFFSET_SHORT_STRING - Static variable in class org.web3j.rlp.RlpDecoder
-
[0x80]
If a string is 0-55 bytes long, the RLP encoding consists of a single
byte with value 0x80 plus the length of the string followed by the
string.
- org.web3j.rlp - package org.web3j.rlp
-