UNPKG

hsd

Version:
22 lines (18 loc) 389 B
/*! * seeds.js - seeds for hsd * Copyright (c) 2017, Christopher Jeffrey (MIT License). * https://github.com/handshake-org/hsd */ 'use strict'; const main = require('./main'); const testnet = require('./testnet'); exports.get = function get(type) { switch (type) { case 'main': return main; case 'testnet': return testnet; default: return []; } };