itns-sidechain/lib/covenants/index.js
Matthew Zipkin 6422a6eb27
hsd: expose covenants and dns in global object
Adds new (non-bitcoin) modules to the "main" hsd.js object.
2019-07-31 14:05:53 -07:00

15 lines
323 B
JavaScript

/*!
* covenants/index.js - covenants for hsd
* Copyright (c) 2019, handshake-org developers (MIT License).
* https://github.com/handshake-org/hsd
*/
'use strict';
/**
* @module covenants
*/
exports.Namestate = require('./namestate');
exports.Ownership = require('./ownership');
exports.Rules = require('./rules');