buildTransaction method
Builds tx to BCS bytes, resolving coins/objects/gas over gRPC.
Implementation
Future<Uint8List> buildTransaction(Transaction tx, {String? sender}) {
if (sender != null) tx.setSenderIfNotSet(sender);
return tx.build(BuildOptions(resolutionClient: GrpcResolutionClient(this)));
}