import Mpc from '../../mpc' import Blockaid from './blockaid' import Hypernative from './hypernative' /** * This class is a container for the Hypernative and Blockaid classes. * In the future, Security domain logic should be here. */ export default class Security { public blockaid: Blockaid public hypernative: Hypernative constructor({ mpc }: { mpc: Mpc }) { this.blockaid = new Blockaid({ mpc }) this.hypernative = new Hypernative({ mpc }) } }