@hypernetlabs/objects
Version:
Objects and types shared by the Hypernet Protocol
11 lines • 477 B
TypeScript
import { EthereumAccountAddress } from "./EthereumAccountAddress";
import { RegistryTokenId } from "./RegistryTokenId";
export declare class RegistryEntry {
label: string;
tokenId: RegistryTokenId;
owner: EthereumAccountAddress;
tokenURI: string | null;
index: number | null;
constructor(label: string, tokenId: RegistryTokenId, owner: EthereumAccountAddress, tokenURI: string | null, index: number | null);
}
//# sourceMappingURL=RegistryEntry.d.ts.map