Skip to content

Commit

Permalink
update service
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtnetwork committed Jan 2, 2025
1 parent f82665a commit c9c8743
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/ada/src/provider/service/service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ mixin BlockFrostServiceProvider
implements BaseServiceProvider<BlockFrostRequestDetails> {
/// Example:
/// @override
/// Future<BlockFrostServiceResponse<T>> doRequest<T>(BlockFrostRequestDetails params,
/// Future<`BlockFrostServiceResponse<T>`> doRequest<`T`>(BlockFrostRequestDetails params,
/// {Duration? timeout}) async {
/// final response = await client
/// .post(params.toUri(url), headers: params.headers, body: params.body())
Expand Down
2 changes: 1 addition & 1 deletion lib/ethereum/src/rpc/service/service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ mixin EthereumServiceProvider
implements BaseServiceProvider<EthereumRequestDetails> {
/// Example:
/// @override
/// Future<EthereumServiceResponse<T>> doRequest<T>(EthereumRequestDetails params,
/// Future<`EthereumServiceResponse<`T`>`> doRequest<`T`>(EthereumRequestDetails params,
/// {Duration? timeout}) async {
/// final response = await client
/// .post(params.toUri(url), headers: params.headers, body: params.body())
Expand Down
2 changes: 1 addition & 1 deletion lib/solana/src/rpc/service/service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ mixin SolanaServiceProvider
implements BaseServiceProvider<SolanaRequestDetails> {
/// Example:
/// @override
/// Future<SolanaServiceResponse<T>> doRequest<T>(SolanaRequestDetails params,
/// Future<`SolanaServiceResponse<T>`> doRequest<`T`>(SolanaRequestDetails params,
/// {Duration? timeout}) async {
/// final response = await client
/// .post(params.toUri(url), headers: params.headers, body: params.body())
Expand Down
2 changes: 1 addition & 1 deletion lib/tron/src/provider/service/service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ typedef TronServiceResponse<T> = BaseServiceResponse<T>;
mixin TronServiceProvider implements BaseServiceProvider<TronRequestDetails> {
/// Example:
/// @override
/// Future<TronServiceResponse<T>> doRequest<T>(TronRequestDetails params,
/// Future<`TronServiceResponse<T>`> doRequest<`T`>(TronRequestDetails params,
/// {Duration? timeout}) async {
/// final response = await client
/// .post(params.toUri(url), headers: params.headers, body: params.body())
Expand Down

0 comments on commit c9c8743

Please sign in to comment.