A Dart-based client for ElectrumX and/or Fulcrum servers based on https://github.com/moontreeapp/electrum_adapter
Most ElectrumX servers are quite similar to the Bitcoin Electrum server, but some have additional methods that add extra functionality or similar methods that have slightly different response formats.
import 'package:electrum_adapter/electrum_adapter.dart';
void main() async {
final client = await ElectrumClient.connect(
host:'bitcoin.stackwallet.com',
port: 50002,
);
final features = await client.features();
print(features);
await client.close();
}
Please file feature requests and bugs at the issue tracker.