UNPKG

@etherspot/remote-signer

Version:

Etherspot Permissioned Signer SDK - signs the UserOp with SessionKey and sends it to the Bundler

10 lines (7 loc) 364 B
import { BytesLike } from '../../types/common-types.js'; import 'viem'; declare function keccak256(data: BytesLike): string; declare function isHex(hex: string, size?: number): boolean; declare function toHexFromBytesLike(data: BytesLike): string; declare function concatHex(...hex: string[]): string; export { concatHex, isHex, keccak256, toHexFromBytesLike };