sails-js
Version:
Typescript library for working with Sails programs
12 lines (11 loc) • 597 B
TypeScript
import { HexString } from '@gear-js/api';
export declare const H160: (value: HexString | Uint8Array) => `0x${string}`;
export declare const H256: (value: HexString | Uint8Array) => `0x${string}`;
export declare const ActorId: (value: HexString | Uint8Array) => `0x${string}`;
export declare const CodeId: (value: HexString | Uint8Array) => `0x${string}`;
export declare const MessageId: (value: HexString | Uint8Array) => `0x${string}`;
export type H160 = HexString;
export type H256 = HexString;
export type ActorId = HexString;
export type CodeId = HexString;
export type MessageId = HexString;