sendTransaction method
Sends a transaction to the network. Standardized to Uint8List for raw transaction submission.
Implementation
@override
Future<String> sendTransaction(Uint8List tx) async {
return sendRawTransaction(HexUtils.encode(tx));
}
Sends a transaction to the network. Standardized to Uint8List for raw transaction submission.
@override
Future<String> sendTransaction(Uint8List tx) async {
return sendRawTransaction(HexUtils.encode(tx));
}