using Nethereum.RPC.Shh.KeyPair; using System; using System.Collections.Generic; using System.Text; namespace Nethereum.RPC.Shh { public interface IShhKeyPair { IShhNewKeyPair NewKeyPair { get; } IShhAddPrivateKey AddPrivateKey { get; } IShhDeleteKeyPair DeleteKeyPair { get; } IShhHasKeyPair HasKeyPair { get; } IShhGetPublicKey GetPublicKey { get; } IShhGetPrivateKey GetPrivateKey { get; } } }