export interface KeyPair { address: string; privKey: string; } export interface MasterNodeKey { owner: KeyPair; operator: KeyPair; } /** * As per: * https://github.com/DeFiCh/ain/blob/6dc990c45788d6806ea/src/chainparams.cpp#L664-L677 * https://github.com/DeFiCh/ain/blob/6dc990c45788d6806ea/test/functional/test_framework/test_node.py#L121-L132 * * 2 first and 2 last of genesis MNs acts as foundation members * @deprecated use RegTestFoundationKeys instead */ export declare const RegTestGenesisKeys: MasterNodeKey[]; export declare const RegTestFoundationKeys: MasterNodeKey[]; //# sourceMappingURL=RegTestFoundationKeys.d.ts.map