[u8; 19]
Array 193 v393About This Type
Fixed-length array of 19 u8 values.
Always exactly 19 elements. No length prefix needed since the size is known at compile time.
Encoding: 19 elements encoded consecutively, no length prefix.
Fixed-Length Array
- Element Type
- u8
- Length
- 19
- SCALE Encoding
- Fixed-length (19 x element size bytes)
SCALE Encoding
- Rule
- 19 elements encoded consecutively, no length prefix (size known at compile time).
- Size
- 19 bytes
Examples
19-byte array = [u8; 19]
0xxxxxxxxx...19 raw bytes 19 bytes concatenated, no prefixCode Examples
import { TypeRegistry } from "@polkadot/types";
const registry = new TypeRegistry();
// Encode a [u8; 19]
const arr = registry.createType("[u8; 19]", new Uint8Array(19));
console.log("Hex:", arr.toHex());Referenced By (2)
Type Information
- Type ID
- 193
- Kind
- Array
- Runtime
- v393