encodeWithoutPrefix method

Uint8List encodeWithoutPrefix(
  1. SignedData signedData
)

Encode extrinsic without the length prefix

Useful for calculating the extrinsic hash or for custom use cases

Implementation

Uint8List encodeWithoutPrefix(SignedData signedData) {
  return _encodeExtrinsicWithoutPrefix(signedData);
}