@xlink-network/xlink-sdk
Version:
12 lines (10 loc) • 482 B
text/typescript
/**
* https://github.com/wevm/viem/blob/d2f93e726df1ab1ff86098d68a4406f6fae315b8/src/utils/encoding/toBytes.ts#L150-L175
*/
declare function decodeHex(hex: string): Uint8Array;
/**
* https://github.com/wevm/viem/blob/d2f93e726df1ab1ff86098d68a4406f6fae315b8/src/utils/encoding/toHex.ts#L131-L143
*/
declare function encodeHex(value: Uint8Array): string;
declare function encodeZeroPrefixedHex(value: Uint8Array): string;
export { decodeHex, encodeHex, encodeZeroPrefixedHex };