stampGetWallets method
Produce a SignedRequest from TGetWalletsBody by using the client's stamp function.
See also: GetWallets.
Implementation
Future<TSignedRequest> stampGetWallets({
required TGetWalletsBody input,
}) async {
final fullUrl = '${config.baseUrl}/public/v1/query/list_wallets';
final body = jsonEncode(input);
final stamp = await stamper.stamp(body);
return TSignedRequest(
body: body,
stamp: stamp,
url: fullUrl,
);
}