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