A Dart-based client for Ravencoin ElectrumX servers
The Ravencoin ElectrumX server is quite similar to the Bitcion Electrum server, but has additional methods that allow clients to handle asset issuance and transferral.
import 'package:electrum_adapter/electrum_adapter.dart';
void main() async {
var client =
await RavenElectrumClient.connect('testnet.rvn.rocks', port: 50002);
var features = await client.features();
print(features);
await client.close();
}
Please file feature requests and bugs at the issue tracker.