/** * BaseChain * * Abstract chain class * * @module src/chains/base-chain.js */ export class BaseChain { constructor(options = {}) { // TODO: Implement constructor throw new Error('BaseChain not yet implemented'); } // TODO: Add methods } export default BaseChain;