public AccountsApiService(IClient client) : base(client)
 {
     AccountsInfo         = new ParityAccountsInfo(client);
     DefaultAccount       = new ParityDefaultAccount(client);
     GenerateSecretPhrase = new ParityGenerateSecretPhrase(client);
     HardwareAccountsInfo = new ParityHardwareAccountsInfo(client);
 }
        public override async Task <JObject> ExecuteAsync(IClient client)
        {
            var parityHardwareAccountsInfo = new ParityHardwareAccountsInfo(client);

            return(await parityHardwareAccountsInfo.SendRequestAsync());
        }