UNPKG

wowok

Version:

Wowok Blockchain TypeScript API

20 lines (19 loc) 439 B
import { MessageType } from "@protobuf-ts/runtime"; export interface Owner { kind?: Owner_OwnerKind; address?: string; version?: bigint; } export declare enum Owner_OwnerKind { OWNER_KIND_UNKNOWN = 0, ADDRESS = 1, OBJECT = 2, SHARED = 3, IMMUTABLE = 4, CONSENSUS_ADDRESS = 5 } declare class Owner$Type extends MessageType<Owner> { constructor(); } export declare const Owner: Owner$Type; export {};