@hypernetlabs/objects
Version:
Objects and types shared by the Hypernet Protocol
18 lines • 749 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RegistryParams = void 0;
class RegistryParams {
constructor(name, allowStorageUpdate, allowLabelChange, allowTransfers, registrationToken, registrationFee, burnAddress, burnFee, baseURI) {
this.name = name;
this.allowStorageUpdate = allowStorageUpdate;
this.allowLabelChange = allowLabelChange;
this.allowTransfers = allowTransfers;
this.registrationToken = registrationToken;
this.registrationFee = registrationFee;
this.burnAddress = burnAddress;
this.burnFee = burnFee;
this.baseURI = baseURI;
}
}
exports.RegistryParams = RegistryParams;
//# sourceMappingURL=RegistryParams.js.map