UNPKG

340 BJavaScriptView Raw
1// Copyright 2017-2022 @polkadot/types authors & contributors
2// SPDX-License-Identifier: Apache-2.0
3// a helper function for both types of payloads, Raw and metadata-known
4export function sign(registry, signerPair, u8a, options) {
5 const encoded = u8a.length > 256 ? registry.hash(u8a) : u8a;
6 return signerPair.sign(encoded, options);
7}
\No newline at end of file