@hypernetlabs/objects
Version:
Objects and types shared by the Hypernet Protocol
14 lines • 427 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RegistryEntry = void 0;
class RegistryEntry {
constructor(label, tokenId, owner, tokenURI, index) {
this.label = label;
this.tokenId = tokenId;
this.owner = owner;
this.tokenURI = tokenURI;
this.index = index;
}
}
exports.RegistryEntry = RegistryEntry;
//# sourceMappingURL=RegistryEntry.js.map