UNPKG

@etherspot/contracts

Version:

Etherspot Solidity contracts

11 lines (10 loc) 235 B
import { SignerWithAddress } from '../shared'; export interface Node { name: string; labelHash: string; node: string; } export interface NodeFactory extends Node { owner: SignerWithAddress; createSubNode(): Node; }