mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
42 lines
1.4 KiB
Dart
42 lines
1.4 KiB
Dart
|
import 'dart:convert';
|
||
|
|
||
|
import 'package:http/http.dart' as http;
|
||
|
import 'package:on_chain/tron/tron.dart';
|
||
|
import '.secrets.g.dart' as secrets;
|
||
|
|
||
|
class TronHTTPProvider implements TronServiceProvider {
|
||
|
TronHTTPProvider(
|
||
|
{required this.url,
|
||
|
http.Client? client,
|
||
|
this.defaultRequestTimeout = const Duration(seconds: 30)})
|
||
|
: client = client ?? http.Client();
|
||
|
@override
|
||
|
final String url;
|
||
|
final http.Client client;
|
||
|
final Duration defaultRequestTimeout;
|
||
|
|
||
|
@override
|
||
|
Future<Map<String, dynamic>> get(TronRequestDetails params, [Duration? timeout]) async {
|
||
|
final response = await client.get(Uri.parse(params.url(url)), headers: {
|
||
|
'Content-Type': 'application/json',
|
||
|
'TRON-PRO-API-KEY': secrets.tronGridApiKey,
|
||
|
}).timeout(timeout ?? defaultRequestTimeout);
|
||
|
final data = json.decode(response.body) as Map<String, dynamic>;
|
||
|
return data;
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
Future<Map<String, dynamic>> post(TronRequestDetails params, [Duration? timeout]) async {
|
||
|
final response = await client
|
||
|
.post(Uri.parse(params.url(url)),
|
||
|
headers: {
|
||
|
'Content-Type': 'application/json',
|
||
|
'TRON-PRO-API-KEY': secrets.tronGridApiKey,
|
||
|
},
|
||
|
body: params.toRequestBody())
|
||
|
.timeout(timeout ?? defaultRequestTimeout);
|
||
|
final data = json.decode(response.body) as Map<String, dynamic>;
|
||
|
return data;
|
||
|
}
|
||
|
}
|