UNPKG

@polkadot/types

Version:
10 lines (9 loc) 279 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sign = sign; function sign(registry, signerPair, u8a, options) { const encoded = u8a.length > 256 ? registry.hash(u8a) : u8a; return signerPair.sign(encoded, options); }