@hypernetlabs/objects
Version:
Objects and types shared by the Hypernet Protocol
26 lines • 1.2 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Registry = void 0;
class Registry {
constructor(registrarAddresses, registrarAdminAddresses, address, name, symbol, numberOfEntries, allowStorageUpdate, allowLabelChange, allowTransfers, registrationToken, registrationFee, burnAddress, burnFee, primaryRegistry, baseURI, modulesCapability, index) {
this.registrarAddresses = registrarAddresses;
this.registrarAdminAddresses = registrarAdminAddresses;
this.address = address;
this.name = name;
this.symbol = symbol;
this.numberOfEntries = numberOfEntries;
this.allowStorageUpdate = allowStorageUpdate;
this.allowLabelChange = allowLabelChange;
this.allowTransfers = allowTransfers;
this.registrationToken = registrationToken;
this.registrationFee = registrationFee;
this.burnAddress = burnAddress;
this.burnFee = burnFee;
this.primaryRegistry = primaryRegistry;
this.baseURI = baseURI;
this.modulesCapability = modulesCapability;
this.index = index;
}
}
exports.Registry = Registry;
//# sourceMappingURL=Registry.js.map